@bniladridas/cursor 0.1.9 → 0.1.11

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.
package/Formula/cursor.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  class Cursor < Formula
2
2
  desc "Professional AI agent with command execution and file operations"
3
3
  homepage "https://github.com/bniladridas/cursor"
4
- url "https://github.com/bniladridas/cursor/archive/refs/tags/v0.1.9.tar.gz"
5
- sha256 "f5e1f0380c218a528ad3de6a3239f0cd5a8ba6356849a68348c8b61d2e8e2e0e"
4
+ url "https://github.com/bniladridas/cursor/archive/refs/tags/v0.1.11.tar.gz"
5
+ sha256 "afbce0ee31e9ff281e8b62ce2748298e7f02abd3178b0934f98d44d47568084c"
6
6
  license "Apache-2.0"
7
7
 
8
8
  depends_on "cmake" => :build
package/install.js CHANGED
@@ -43,8 +43,14 @@ function download(url) {
43
43
  console.log('extracting...');
44
44
  if (process.platform === 'win32') {
45
45
  execSync(`tar -xf "${path.join(binaryDir, archive)}" -C "${binaryDir}"`, { stdio: 'inherit' });
46
+ const extracted = path.join(binaryDir, 'cursor-windows.exe');
47
+ const target = path.join(binaryDir, 'cursor-agent.exe');
48
+ fs.renameSync(extracted, target);
46
49
  } else {
47
50
  execSync(`tar -xzf "${path.join(binaryDir, archive)}" -C "${binaryDir}"`, { stdio: 'inherit' });
51
+ const extracted = path.join(binaryDir, process.platform === 'darwin' ? 'cursor-macos' : 'cursor-linux');
52
+ const target = path.join(binaryDir, 'cursor-agent');
53
+ fs.renameSync(extracted, target);
48
54
  }
49
55
  fs.unlinkSync(path.join(binaryDir, archive));
50
56
  console.log('done');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bniladridas/cursor",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Cross-platform AI coding agent",
5
5
  "bin": {
6
6
  "cursor": "cli.js"
@@ -1,3 +1,3 @@
1
- dae4ec4d23edaaddb6470b13977fb7776d2169c78925a62931d781bdae45738a release/cursor-macos/cursor_v0.1.9_darwin_arm64.tar.gz
2
- 108f843a6dbe1aa8b8a9bf68e35359f258df39921d93a9919192ff734837bc50 release/cursor-linux/cursor_v0.1.9_linux_amd64.tar.gz
3
- e3ee1d44f26cb7e1ee103de0fd69139a68d7e6875dc22854ce6893b838b3ffc6 release/cursor-windows/cursor__windows_amd64.zip
1
+ 60507cc872352bb2a3401e789d85d01db232b7887cccd132e44e67b35819b9b2 release/cursor-macos/cursor_v0.1.11_darwin_arm64.tar.gz
2
+ 3c05b720cc877c3bcb3a4cb860d730997bae7c684d006f4474f0a5b4b63d8715 release/cursor-linux/cursor_v0.1.11_linux_amd64.tar.gz
3
+ fc1e5a13b5810777dfc2aca5356a1ba338c91ca264d3984ed1d85da107d37015 release/cursor-windows/cursor__windows_amd64.zip