Skip to content

Commit ed360ad

Browse files
authored
catime: Add version 1.0.3.1
Project address: https://github.com/vladelaina/Catime A simple Windows countdown tool with Pomodoro clock functionality, featuring a transparent interface and a variety of customization options.
1 parent f9d88dc commit ed360ad

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

bucket/catime.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "1.0.3.1",
3+
"url": "https://github.com/vladelaina/Catime/releases/download/v1.0.3.1/catime_1.0.3.1.exe",
4+
"bin": "catime_1.0.3.1.exe",
5+
"hash": "7be4e30cf5924520ac28bd06399d524877f718c2f7367f5e765c54d5f93d6397",
6+
"description": "A simple timer application.",
7+
"homepage": "https://github.com/vladelaina/Catime",
8+
"license": "Apache-2.0",
9+
"post_install": [
10+
"$desktop = [System.Environment]::GetFolderPath('Desktop')",
11+
"Copy-Item \"$dir\\catime_1.0.3.1.exe\" -Destination $desktop -Force",
12+
"Remove-Item \"$dir\\*\" -Force -Recurse"
13+
],
14+
"post_uninstall": [
15+
"$desktop = [System.Environment]::GetFolderPath('Desktop')",
16+
"$exePath = Join-Path $desktop 'catime_1.0.3.1.exe'",
17+
"if (Test-Path $exePath) { Remove-Item $exePath -Force }"
18+
]
19+
}

0 commit comments

Comments
 (0)