Release 3.8.2.12: export/import full server list as JSON.
ci / test (macos-latest) (push) Canceled after 0s
ci / test (ubuntu-latest) (push) Canceled after 0s
ci / test (windows-latest) (push) Canceled after 0s

Save and replace profiles via system file dialog; buttons after Best; prefs unchanged on import.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
M4
2026-08-01 17:51:38 +03:00
co-authored by Cursor
parent 57d719f02f
commit 8b564110d5
22 changed files with 604 additions and 22 deletions
+13
View File
@@ -0,0 +1,13 @@
//go:build !windows && !darwin
package filedialog
// SaveJSON is not available on this platform.
func SaveJSON(title, defaultName string) (string, error) {
return "", ErrUnsupported
}
// OpenJSON is not available on this platform.
func OpenJSON(title string) (string, error) {
return "", ErrUnsupported
}