mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Merge 85038ad20a
into af2479da8d
This commit is contained in:
commit
22ed8e18bb
3 changed files with 1154 additions and 1 deletions
|
@ -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
1134
release-tool.py
Executable file
File diff suppressed because it is too large
Load diff
19
share/linux/appimage-apprun.sh
Executable file
19
share/linux/appimage-apprun.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue