seedfast 1.23.16 → 1.24.1

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.
Files changed (2) hide show
  1. package/README.md +14 -4
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -162,11 +162,21 @@ For local development and testing with custom backends, see [DEVELOPMENT.md](DEV
162
162
 
163
163
  ## Platform Support
164
164
 
165
- - macOS (x64, ARM64)
166
- - Linux (x64, ARM64)
167
- - Windows (x64, ARM64)
165
+ - macOS (x64, ARM64) - Uses native Keychain
166
+ - Linux (x64, ARM64) - Uses system keyring or encrypted file storage
167
+ - Windows (x64, ARM64) - Uses Windows Credential Manager
168
168
 
169
- Note: Linux systems don't support keychain storage. Use environment variables for credentials.
169
+ ### Linux Keyring Backends
170
+
171
+ Seedfast automatically detects and uses the best available backend on Linux:
172
+
173
+ 1. **Secret Service** (GNOME Keyring, KDE Wallet) - Requires D-Bus session
174
+ 2. **pass** (password-store) - Requires GPG setup
175
+ 3. **File Storage** (automatic fallback) - Encrypted, works everywhere including WSL and Docker
176
+
177
+ **For WSL users**: File storage is automatically used. No additional setup required.
178
+
179
+ For detailed Linux keyring setup and troubleshooting, see [docs/LINUX_KEYRING.md](docs/LINUX_KEYRING.md).
170
180
 
171
181
  ## Contributing
172
182
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "seedfast",
3
- "version": "1.23.16",
3
+ "version": "1.24.1",
4
4
  "bin": {
5
5
  "seedfast": "index.js"
6
6
  },
7
7
  "optionalDependencies": {
8
- "seedfast_darwin_amd64": "1.23.16",
9
- "seedfast_windows_amd64": "1.23.16",
10
- "seedfast_linux_amd64": "1.23.16",
11
- "seedfast_linux_arm64": "1.23.16",
12
- "seedfast_darwin_arm64": "1.23.16"
8
+ "seedfast_darwin_amd64": "1.24.1",
9
+ "seedfast_windows_amd64": "1.24.1",
10
+ "seedfast_linux_amd64": "1.24.1",
11
+ "seedfast_linux_arm64": "1.24.1",
12
+ "seedfast_darwin_arm64": "1.24.1"
13
13
  },
14
14
  "os": [
15
15
  "darwin",