-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathbulk-rename-utility.json
39 lines (39 loc) · 1.32 KB
/
bulk-rename-utility.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"version": "4.0.0.5",
"description": "File renaming software for Windows.",
"homepage": "https://www.bulkrenameutility.co.uk",
"license": {
"identifier": "Proprietary",
"url": "https://www.bulkrenameutility.co.uk/License.php"
},
"url": "https://www.s3.tgrmn.com/bru4/BRU_setup_4.0.0.5.exe",
"hash": "md5:b3449e6f3ca971be40b668fd62855dba",
"innosetup": true,
"architecture": {
"64bit": {
"pre_install": "Get-ChildItem \"$dir\\*,2.*\" -Recurse | Rename-Item -NewName { $_.FullName -replace ',2\\.', '.' }"
},
"32bit": {
"pre_install": "Get-ChildItem \"$dir\\*,1.*\" -Recurse | Rename-Item -NewName { $_.FullName -replace ',1\\.', '.' }"
}
},
"post_install": "Get-ChildItem \"$dir\\*,[0-9].*\" -Recurse | Remove-Item",
"shortcuts": [
[
"Bulk Rename Utility.exe",
"Bulk Rename Utility"
]
],
"persist": "Bulk Rename Utility.ini",
"checkver": {
"url": "https://www.bulkrenameutility.co.uk/Download.php",
"regex": ">version\\s+([\\d.]+)"
},
"autoupdate": {
"url": "https://www.s3.tgrmn.com/bru4/BRU_setup_$version.exe",
"hash": {
"url": "https://www.bulkrenameutility.co.uk/Download.php",
"regex": "$md5"
}
}
}