Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.1.4 stable #189

Merged
merged 4 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/draft_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
gh release create -d \
$VERSION-$CHANNEL \
-t -$VERSION-$CHANNEL \
-t $VERSION-$CHANNEL \
-F ./CHANGELOG.md \
./src-tauri/target/release/bundle/deb/wireguard-gui_${VERSION}_amd64.deb#wireguard-gui_amd64.deb \
./src-tauri/target/release/bundle/appimage/wireguard-gui_${VERSION}_amd64.AppImage#wireguard-gui_amd64.AppImage
Expand All @@ -87,7 +87,7 @@ jobs:
run: |
gh release delete-asset -y \
$VERSION-$CHANNEL \
/wireguard-gui_${VERSION}_amd64.deb || true
wireguard-gui_${VERSION}_amd64.deb || true
gh release delete-asset -y \
$VERSION-$CHANNEL \
wireguard-gui_${VERSION}_amd64.AppImage|| true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/draft_stable_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ jobs:
apt-get install -y nodejs
npm install next@latest react@latest react-dom@latest eslint-config-next@latest
# Install build tools and tauri-cli requirements
apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
cargo install tauri-cli
sudo apt install -f libdbus-1-dev libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
# cargo install tauri-cli
# Install frontend dependencies
npm install
# Build the application
cargo tauri build
npm run tauri build -- --verbose

- name: Test if release already exists
id: release-exists
Expand All @@ -96,7 +96,7 @@ jobs:
run: |
gh release create -d \
$VERSION-$CHANNEL \
-t -$VERSION-$CHANNEL \
-t $VERSION-$CHANNEL \
-F ./CHANGELOG.md \
./src-tauri/target/release/bundle/deb/wireguard-gui_${VERSION}_arm64.deb#wireguard-gui_arm64.deb \
./src-tauri/target/release/bundle/appimage/wireguard-gui_${VERSION}_arm64.AppImage#wireguard-gui_arm64.AppImage
Expand All @@ -108,7 +108,7 @@ jobs:
run: |
gh release delete-asset -y \
$VERSION-$CHANNEL \
/wireguard-gui_${VERSION}_arm64.deb || true
wireguard-gui_${VERSION}_arm64.deb || true
gh release delete-asset -y \
$VERSION-$CHANNEL \
wireguard-gui_${VERSION}_arm64.AppImage|| true
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Switch from zenity to polkit for authentication
- Switch from zenity to polkit for authentication by [@CD11b](https:/CD11b)

## [0.1.3] - 2024-08-04

Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2023-2024 Wireguard GUI Contributors
Copyright (c) 2024-2025 Wireguard GUI Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
8 changes: 4 additions & 4 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"bundle": {
"active": true,
"category": "Utility",
"copyright": "Copyright (c) 2023-2024 Wireguard GUI Contributors",
"copyright": "Copyright (c) 2024-2025 Wireguard GUI Contributors",
"deb": {
"depends": []
"depends": ["libwebkit2gtk-4.0-37"]
},
"externalBin": [],
"icon": [
Expand Down
Loading