This commit is contained in:
Janek Bevendorff 2025-03-30 23:52:53 +02:00 committed by GitHub
commit 22ed8e18bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1154 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[main] [main]
host = https://www.transifex.com host = https://app.transifex.com
[o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--develop] [o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--develop]
file_filter = share/translations/keepassxc_<lang>.ts file_filter = share/translations/keepassxc_<lang>.ts

1134
release-tool.py Executable file

File diff suppressed because it is too large Load diff

19
share/linux/appimage-apprun.sh Executable file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
_APPDIR="$(dirname "$(realpath "$0")")"
PATH="${_APPDIR}/usr/bin:${PATH}"
LD_LIBRARY_PATH="${_APPDIR}/usr/lib:${LD_LIBRARY_PATH}"
export PATH
export LD_LIBRARY_PATH
if [ "$1" == "cli" ]; then
shift
exec keepassxc-cli "$@"
elif [ "$1" == "proxy" ]; then
shift
exec keepassxc-proxy "$@"
elif [ -v CHROME_WRAPPER ] || [ -v MOZ_LAUNCHED_CHILD ]; then
exec keepassxc-proxy "$@"
else
exec keepassxc "$@"
fi