-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtortoisegit.json
64 lines (64 loc) · 2.17 KB
/
tortoisegit.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"version": "2.10.0.0",
"description": "Windows Shell Interface to Git based on TortoiseSVN.",
"homepage": "https://tortoisegit.org/",
"license": {
"identifier": "GPL-2.0-only"
},
"architecture": {
"64bit": {
"url": "https://download.tortoisegit.org/tgit/2.10.0.0/TortoiseGit-2.10.0.0-64bit.msi",
"hash": "bf7ae25b89502cef6e5f5f75b81cab88e534c3e8c5d7f502970ae8326a5db8f4"
},
"32bit": {
"url": "https://download.tortoisegit.org/tgit/2.10.0.0/TortoiseGit-2.10.0.0-32bit.msi",
"hash": "7ab86b901451e75ab6a275c6e93463195d6c977c8c3b58b84e970b113d224b4a"
}
},
"extract_dir": "Program Files\\TortoiseGit",
"post_install": [
"$path = 'HKCU:\\Software\\TortoiseGit'",
"if (!(Test-path \"$path\")) {",
" New-Item $path | Out-Null",
" New-ItemProperty -Path $path -Name 'VersionCheck' -PropertyType DWord -Value 0 -Force | Out-Null",
" New-ItemProperty -Path $path -Name 'MsysGit' -PropertyType String -Value \"$env:GIT_INSTALL_ROOT\\bin\" -Force | Out-Null",
"}"
],
"bin": [
"bin\\TortoiseGitUDiff.exe",
"bin\\TortoisePlink.exe"
],
"shortcuts": [
[
"bin\\TortoiseGitMerge.exe",
"TortoiseGit Merge"
],
[
"bin\\TortoiseGitBlame.exe",
"TortoiseGit Blame"
],
[
"bin\\TortoiseGitIDiff.exe",
"TortoiseGit Diff"
],
[
"bin\\TortoiseGitProc.exe",
"TortoiseGit Settings",
"/command:settings"
]
],
"checkver": {
"url": "https://download.tortoisegit.org/tgit/",
"regex": "TortoiseGit is: <a href=/tgit/([\\d\\.]+)/"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://download.tortoisegit.org/tgit/$version/TortoiseGit-$version-64bit.msi"
},
"32bit": {
"url": "https://download.tortoisegit.org/tgit/$version/TortoiseGit-$version-32bit.msi"
}
}
}
}