Release 1.4.0: macOS CLI builds and multi-platform update channel.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Navis
2026-07-28 07:43:14 +03:00
co-authored by Cursor
parent f7fded5b40
commit f266ea8288
23 changed files with 696 additions and 166 deletions
+15
View File
@@ -0,0 +1,15 @@
//go:build !windows && !darwin
package update
import (
"context"
"fmt"
)
// Apply is not implemented on this OS yet.
func Apply(ctx context.Context, manifestURL string) (string, error) {
_ = ctx
_ = manifestURL
return "", fmt.Errorf("автообновление пока только для Windows и macOS")
}