SPB Git

spb/zyquo-local Public MIT

Native macOS AI chat that runs LLMs 100% locally on Apple Silicon with MLX — no cloud, no API keys.

Swift 97.2% Shell 1.8% Makefile 1%

release: version 1.0.0 (build 6)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
simon-pierre boucher committed 11 days ago (Jul 30, 2026) parent 849a6e4

Showing 4 changed files with +5 and −5

modified Makefile +1 −1
@@ -17,7 +17,7 @@ export PATH := $(HOME)/Developer/Metal.xctoolchain/usr/bin:$(PATH)
17 17 APP_NAME := Zyquo Local
18 18 EXEC_NAME := ZyquoLocal
19 19 BUNDLE_ID := com.zyquo.local
20 VERSION := 0.1.0
20 +VERSION := 1.0.0
21 21 BUILD_DIR := .build
22 22 DIST_DIR := dist
23 23 APP_BUNDLE := $(DIST_DIR)/$(APP_NAME).app
modified Sources/ZyquoLocal/Hub/DownloadManager.swift +1 −1
@@ -220,7 +220,7 @@ final class DownloadManager {
220 220 }
221 221
222 222 var request = URLRequest(url: HubService.resolveURL(repoID: repoID, path: file.path))
223 request.setValue("ZyquoLocal/0.1.0", forHTTPHeaderField: "User-Agent")
223 + request.setValue("ZyquoLocal/1.0.0", forHTTPHeaderField: "User-Agent")
224 224 if let token = hub.token, !token.isEmpty {
225 225 request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
226 226 }
modified Sources/ZyquoLocal/Hub/HubService.swift +1 −1
@@ -139,7 +139,7 @@ struct HubService: Sendable {
139 139
140 140 private func request(_ url: URL) -> URLRequest {
141 141 var request = URLRequest(url: url)
142 request.setValue("ZyquoLocal/0.1.0", forHTTPHeaderField: "User-Agent")
142 + request.setValue("ZyquoLocal/1.0.0", forHTTPHeaderField: "User-Agent")
143 143 if let token, !token.isEmpty {
144 144 request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
145 145 }
modified Support/Info.plist +2 −2
@@ -26,9 +26,9 @@
26 26 <key>CFBundlePackageType</key>
27 27 <string>APPL</string>
28 28 <key>CFBundleShortVersionString</key>
29 <string>0.1.0</string>
29 + <string>1.0.0</string>
30 30 <key>CFBundleVersion</key>
31 <string>5</string>
31 + <string>6</string>
32 32 <key>LSApplicationCategoryType</key>
33 33 <string>public.app-category.productivity</string>
34 34 <key>LSArchitecturePriority</key>
35 35