argus-ai 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/install.js +2 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -6,6 +6,7 @@ const os = require("os");
6
6
 
7
7
  const VERSION = require("./package.json").version;
8
8
  const REPO = "Meru143/argus";
9
+ const RELEASE_TAG_PREFIX = "argus-ai-v";
9
10
 
10
11
  const PLATFORM_MAP = {
11
12
  "darwin-x64": "argus-x86_64-apple-darwin.tar.gz",
@@ -20,7 +21,7 @@ function getPlatformKey() {
20
21
  }
21
22
 
22
23
  function getDownloadUrl(asset) {
23
- return `https://github.com/${REPO}/releases/download/v${VERSION}/${asset}`;
24
+ return `https://github.com/${REPO}/releases/download/${RELEASE_TAG_PREFIX}${VERSION}/${asset}`;
24
25
  }
25
26
 
26
27
  function download(url) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argus-ai",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "AI-powered code review tool — multi-provider, self-hosted, open-source",
5
5
  "license": "MIT",
6
6
  "repository": {