switch to fyne.io/systray

This commit is contained in:
nkanaev
2026-04-25 22:57:32 +01:00
parent f1bdbbc0af
commit 1bae41a350
74 changed files with 10196 additions and 846 deletions

18
vendor/fyne.io/systray/Makefile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
tag-changelog: require-version require-gh-token
echo "Tagging..." && \
git tag -a "$$VERSION" -f --annotate -m"Tagged $$VERSION" && \
git push --tags -f && \
git checkout master && \
git pull && \
github_changelog_generator --no-issues --max-issues 100 --token "${GH_TOKEN}" --user getlantern --project systray && \
git add CHANGELOG.md && \
git commit -m "Updated changelog for $$VERSION" && \
git push origin HEAD && \
git checkout -
guard-%:
@ if [ -z '${${*}}' ]; then echo 'Environment variable $* not set' && exit 1; fi
require-version: guard-VERSION
require-gh-token: guard-GH_TOKEN