rds_ssm_connect 1.7.3 → 1.7.5
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.
- package/.github/workflows/release.yml +5 -1
- package/package.json +1 -1
- package/scripts/generate-update-json.js +4 -0
- package/scripts/pkg-sidecar.js +1 -0
- package/src/App.svelte +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/src/lib.rs +1 -1
- package/src-tauri/tauri.conf.json +1 -1
|
@@ -28,6 +28,10 @@ jobs:
|
|
|
28
28
|
rust_target: x86_64-unknown-linux-gnu
|
|
29
29
|
sidecar_target: node22-linux-x64
|
|
30
30
|
sidecar_triple: x86_64-unknown-linux-gnu
|
|
31
|
+
- platform: ubuntu-24.04-arm64
|
|
32
|
+
rust_target: aarch64-unknown-linux-gnu
|
|
33
|
+
sidecar_target: node22-linux-arm64
|
|
34
|
+
sidecar_triple: aarch64-unknown-linux-gnu
|
|
31
35
|
- platform: windows-latest
|
|
32
36
|
rust_target: x86_64-pc-windows-msvc
|
|
33
37
|
sidecar_target: node22-win-x64
|
|
@@ -54,7 +58,7 @@ jobs:
|
|
|
54
58
|
workspaces: src-tauri
|
|
55
59
|
|
|
56
60
|
- name: Install dependencies (Ubuntu)
|
|
57
|
-
if: matrix.platform
|
|
61
|
+
if: startsWith(matrix.platform, 'ubuntu')
|
|
58
62
|
run: |
|
|
59
63
|
sudo apt-get update
|
|
60
64
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
package/package.json
CHANGED
|
@@ -49,6 +49,10 @@ const updateManifest = {
|
|
|
49
49
|
url: `${releaseUrl}/${productName}_${version}_amd64.AppImage.tar.gz`,
|
|
50
50
|
signature: '',
|
|
51
51
|
},
|
|
52
|
+
'linux-aarch64': {
|
|
53
|
+
url: `${releaseUrl}/${productName}_${version}_aarch64.AppImage.tar.gz`,
|
|
54
|
+
signature: '',
|
|
55
|
+
},
|
|
52
56
|
'windows-x86_64': {
|
|
53
57
|
url: `${releaseUrl}/${productName}_${version}_x64-setup.nsis.zip`,
|
|
54
58
|
signature: '',
|
package/scripts/pkg-sidecar.js
CHANGED
|
@@ -15,6 +15,7 @@ const TARGETS = [
|
|
|
15
15
|
{ triple: 'aarch64-apple-darwin', pkg: 'node22-macos-arm64' },
|
|
16
16
|
{ triple: 'x86_64-apple-darwin', pkg: 'node22-macos-x64' },
|
|
17
17
|
{ triple: 'x86_64-unknown-linux-gnu', pkg: 'node22-linux-x64' },
|
|
18
|
+
{ triple: 'aarch64-unknown-linux-gnu', pkg: 'node22-linux-arm64' },
|
|
18
19
|
{ triple: 'x86_64-pc-windows-msvc', pkg: 'node22-win-x64' },
|
|
19
20
|
]
|
|
20
21
|
|
package/src/App.svelte
CHANGED
|
@@ -206,7 +206,7 @@ async function openUrl(url) {
|
|
|
206
206
|
async function loadProfiles() {
|
|
207
207
|
if (!selectedProject) return
|
|
208
208
|
try {
|
|
209
|
-
profiles = await invoke('
|
|
209
|
+
profiles = await invoke('list_profiles', { projectKey: selectedProject })
|
|
210
210
|
selectedProfile = ''
|
|
211
211
|
} catch (err) {
|
|
212
212
|
errorMessage = `Failed to load profiles: ${err}`
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
package/src-tauri/src/lib.rs
CHANGED
|
@@ -133,7 +133,7 @@ async fn ensure_sidecar(
|
|
|
133
133
|
// Get current PATH and extend with common installation locations
|
|
134
134
|
let current_path = std::env::var("PATH").unwrap_or_default();
|
|
135
135
|
let extended_path = format!(
|
|
136
|
-
"{}:/usr/local/bin:/opt/homebrew/bin:{}/.local/bin",
|
|
136
|
+
"{}:/usr/local/bin:/opt/homebrew/bin:/home/linuxbrew/.linuxbrew/bin:{}/.local/bin",
|
|
137
137
|
current_path,
|
|
138
138
|
std::env::var("HOME").unwrap_or_default()
|
|
139
139
|
);
|