Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Mar 9, 2024
2 parents 52794b3 + 3d190cf commit f50c92a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
RELEASE: 4.5.0.16
TAILSCALE_VERSION: 1.56.1
TAILSCALE_VERSION: 1.58.2

jobs:
build:
Expand Down
13 changes: 13 additions & 0 deletions qml/pages/MainPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,17 @@ Page {
}
);
}

Component.onDestruction: {
systemd.typedCall('StopUnit',
[
{ 'type': 's', 'value': 'tailscaled.service' },
{ 'type': 's', 'value': 'fail' }
],
function(result) {},
function(error, message) {
console.log("failed (" + error + ") with:", message)
}
);
}
}
4 changes: 4 additions & 0 deletions rpm/harbour-tailscale.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Fri Feb 9 2024 Andrea Scarpino <andrea@scarpino.dev> 0.0.8-1
- Stop tailscale on application close
- Update tailscale to 1.58.2

* Fri Jan 12 2024 Andrea Scarpino <andrea@scarpino.dev> 0.0.7-1
- Update tailscale to 1.56.1

Expand Down
4 changes: 2 additions & 2 deletions rpm/harbour-tailscale.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ Name: harbour-tailscale

# >> macros
%global _missing_build_ids_terminate_build 0
%define tailscale_version 1.56.1
%define tailscale_version 1.58.2
# << macros

%{!?qtc_qmake:%define qtc_qmake %qmake}
%{!?qtc_qmake5:%define qtc_qmake5 %qmake5}
%{!?qtc_make:%define qtc_make make}
%{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: tailscale
Version: 0.0.7
Version: 0.0.8
Release: 1
Group: Qt/Qt
License: GPLv3
Expand Down

0 comments on commit f50c92a

Please sign in to comment.