scios-cli 0.1.1__tar.gz → 0.1.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scios-cli
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend
5
5
  Author: Scios Team
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "scios-cli"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend"
9
9
  readme = "README.md"
10
10
  license = {text = "Apache-2.0"}
@@ -1,2 +1,2 @@
1
1
  """Scios CLI - Local Agent Workspace Sync"""
2
- __version__ = "0.1.1"
2
+ __version__ = "0.1.3"
@@ -47,6 +47,13 @@ end open location
47
47
  print(f"❌ Failed to patch Info.plist: {e}")
48
48
  sys.exit(1)
49
49
 
50
+ # Ad-hoc code sign to prevent Gatekeeper security warnings
51
+ print(f"🔏 Code-signing app to prevent security warnings...")
52
+ subprocess.run(["codesign", "-s", "-", "--force", "--deep", str(scios_app)], check=False)
53
+
54
+ # Remove quarantine attribute (set by macOS on downloaded/created apps)
55
+ subprocess.run(["xattr", "-d", "com.apple.quarantine", str(scios_app)], check=False)
56
+
50
57
  print(f"🔄 Registering app with macOS Launch Services...")
51
58
  lsregister = "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister"
52
59
  if os.path.exists(lsregister):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scios-cli
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend
5
5
  Author: Scios Team
6
6
  License: Apache-2.0
File without changes
File without changes
File without changes
File without changes
File without changes