mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-06-23 02:23:03 +02:00
Compare commits
14 Commits
v1.9.8-sc.
...
v1.10.4-sc
Author | SHA1 | Date | |
---|---|---|---|
c655803783 | |||
cf10ad7893 | |||
edb8bd0a58 | |||
605966fc32 | |||
db1d3e4e8a | |||
74bb708796 | |||
3a8eecb023 | |||
a689c01b0e | |||
7a96f32c3f | |||
867ca2ceaa | |||
57be42182b | |||
47e56badc4 | |||
9d595d6087 | |||
c4e17a1bc4 |
@ -26,5 +26,6 @@
|
||||
"url": "https://schildi.chat/desktop/privacy",
|
||||
"text": "Privacy Policy"
|
||||
}
|
||||
]
|
||||
],
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ git fetch
|
||||
git reset --hard origin/master
|
||||
|
||||
sed -i "s|^_pkgver=.*$|_pkgver=$version|" PKGBUILD
|
||||
sed -i "s|^pkgrel=.*$|pkgrel=1|" PKGBUILD
|
||||
sed -i "s|^sha256sums=('.*'$|sha256sums=('$sha256sum'|" PKGBUILD
|
||||
|
||||
makepkg --printsrcinfo > .SRCINFO
|
||||
|
Submodule element-desktop updated: 15cd24dfc3...592337db77
Submodule element-web updated: 661bfae1a8...f64fa1ed9a
@ -39,5 +39,6 @@
|
||||
"Font size and typeface": "Font size and typeface",
|
||||
"Mark rooms as unread": "Allow marking chats as unread",
|
||||
"Mark as unread": "Mark as unread",
|
||||
"Mark as read": "Mark as read"
|
||||
"Mark as read": "Mark as read",
|
||||
"Enable YouTube embed player": "Enable YouTube embed player"
|
||||
}
|
||||
|
@ -37,5 +37,8 @@
|
||||
"Compact: tiny avatar together with name and preview in one line": "Compacto: avatar minúsculo junto com o nome e visualização em uma linha",
|
||||
"Intermediate: medium sized avatar with single-line preview": "Intermédio: avatar de tamanho médio com visualização de uma linha",
|
||||
"Roomy: big avatar with two-line preview": "Amplo: grande avatar com visualização em duas linhas",
|
||||
"Room list style": "Estilo da lista de salas"
|
||||
"Room list style": "Estilo da lista de salas",
|
||||
"Mark rooms as unread": "Permitir markar conversas como não lidos",
|
||||
"Mark as unread": "Markar como não lido",
|
||||
"Mark as read": "Markar como lido"
|
||||
}
|
||||
|
@ -22,4 +22,5 @@ package() {
|
||||
msg2 "Extracting the data.tar.xz..."
|
||||
bsdtar -xf data.tar.xz -C "$pkgdir/"
|
||||
install -Dm755 "${srcdir}"/---appName---.sh "${pkgdir}"/usr/bin/---appName---
|
||||
sed -i 's|^Exec=.*|Exec=/usr/bin/---appName--- %u|' "${pkgdir}"/usr/share/applications/---appName---.desktop
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
LD_PRELOAD=/usr/lib/libsqlcipher.so exec "/opt/---productName---/---appName---" "$@"
|
||||
exec "/opt/---productName---/---appName---" "$@"
|
||||
|
Submodule matrix-js-sdk updated: a71dd32356...07619ca607
Submodule matrix-react-sdk updated: 7edaf5bc52...b61680864e
@ -162,7 +162,8 @@ get_current_versions() {
|
||||
get_versions_string() {
|
||||
versions_string="${versions[0]}-sc.${versions[1]}"
|
||||
|
||||
if [[ ${versions[2]} -gt 0 ]]; then
|
||||
# both zero means the initial version after a merge
|
||||
if [[ ${versions[1]} -eq 0 || ${versions[2]} -gt 0 ]]; then
|
||||
versions_string+=".test.${versions[2]}"
|
||||
fi
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ automatic_packagejson_adjustment
|
||||
|
||||
# Automatic theme update
|
||||
pushd "matrix-react-sdk" > /dev/null
|
||||
./theme.sh
|
||||
./theme.sh y
|
||||
popd > /dev/null
|
||||
|
||||
popd > /dev/null
|
||||
|
Reference in New Issue
Block a user