-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathantigravity.json
More file actions
75 lines (75 loc) · 3.38 KB
/
Copy pathantigravity.json
File metadata and controls
75 lines (75 loc) · 3.38 KB
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
65
66
67
68
69
70
71
72
73
74
75
{
"version": "2.0.1",
"description": "Agent orchestration platform developed by Google.",
"homepage": "https://antigravity.google/product/antigravity-2",
"license": {
"identifier": "Proprietary",
"url": "https://antigravity.google/terms"
},
"notes": [
"Antigravity 2.0 has fully transitioned into an agent orchestration platform.",
"The editor component has been decoupled and is now maintained separately as Antigravity IDE.",
"For more details, see: https://antigravity.google/blog/introducing-google-antigravity-2-0",
"",
"Antigravity IDE is available as a separate package: 'extras/antigravity-ide'.",
"If you have previously installed Antigravity IDE (v1.x), your data (v1.x) is located in:",
"\"$persist_dir\"",
"You may need to move the persisted data manually after installing Antigravity IDE v2.x."
],
"suggest": {
"Antigravity IDE": "extras/antigravity-ide"
},
"architecture": {
"64bit": {
"url": "https://storage.googleapis.com/antigravity-public/antigravity-hub/2.0.1-6566078776737792/windows-x64/Antigravity-x64.exe#/dl.7z",
"hash": "e5689f91e90b31d3affd7b2ae74cfe36abb626f923e4f38f816e0ab6bb85ad6a"
},
"arm64": {
"url": "https://storage.googleapis.com/antigravity-public/antigravity-hub/2.0.1-6566078776737792/windows-arm/Antigravity-arm64.exe#/dl.7z",
"hash": "26c9665cff5f4c5fbc49a81e8e6145ea91510f4a8fa4961e371ea5fb7d00a7a2"
}
},
"installer": {
"script": [
"Get-Item \"$dir\\`$PLUGINSDIR\\app*.7z\" | Expand-7zipArchive -DestinationPath \"$dir\"",
"Remove-Item \"$dir\\`$*\" -Force -Recurse"
]
},
"post_install": [
"# Disable built-in update mechanism to prevent conflicts with Scoop's update management",
"$yaml = \"$dir\\resources\\app-update.yml\"",
"$content = Get-Content -Path $yaml | Foreach-Object {",
" if ($_.StartsWith('url')) { \"$($_.Replace('url', '# url')) # Disabled by Scoop\" } else { $_ }",
"}",
"Set-Content $yaml -Value $content -Encoding ascii"
],
"shortcuts": [
[
"Antigravity.exe",
"Antigravity"
]
],
"checkver": {
"url": "https://antigravity-auto-updater-974169037036.us-central1.run.app/api/update/win32-x64-user/stable/latest",
"jsonpath": "$.url",
"regex": "antigravity-hub/(?<version>[\\d.]+)-(?<build>\\d+)/"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://storage.googleapis.com/antigravity-public/antigravity-hub/$version-$matchBuild/windows-x64/Antigravity-x64.exe#/dl.7z",
"hash": {
"url": "https://antigravity-auto-updater-974169037036.us-central1.run.app/api/update/win32-x64-user/stable/$version",
"jsonpath": "$.sha256hash"
}
},
"arm64": {
"url": "https://storage.googleapis.com/antigravity-public/antigravity-hub/$version-$matchBuild/windows-arm/Antigravity-arm64.exe#/dl.7z",
"hash": {
"url": "https://antigravity-auto-updater-974169037036.us-central1.run.app/api/update/win32-arm64-user/stable/$version",
"jsonpath": "$.sha256hash"
}
}
}
}
}