mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-05-23 14:30:02 +03:00
Merge branch 'develop' into peertube_integration
This commit is contained in:
commit
dddef9706d
5 changed files with 12 additions and 3 deletions
|
@ -13,8 +13,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 485
|
versionCode 486
|
||||||
versionName "3.20.2"
|
versionName "3.20.3"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
flavorDimensions "default"
|
flavorDimensions "default"
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"version": "3.20.3",
|
||||||
|
"code": "486",
|
||||||
|
"note": "Added:\n- Display all following/followers lists from remote profiles\n- Display all accounts that boosted/fav from a remote message\n\nFixed:\n- Fix a crash with auto-fetch messages"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.20.2",
|
"version": "3.20.2",
|
||||||
"code": "485",
|
"code": "485",
|
||||||
|
|
|
@ -141,7 +141,7 @@ public class FragmentMastodonAccount extends Fragment {
|
||||||
fetchAccount(firstLoad, remoteAccountId);
|
fetchAccount(firstLoad, remoteAccountId);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
fetchAccount(firstLoad, accountTimeline.id);
|
fetchAccount(firstLoad, accountTimeline != null ? accountTimeline.id : null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1050,4 +1050,6 @@
|
||||||
<string name="fetch_remote_media">Automaticky načítat vzdálená média, pokud nejsou k dispozici</string>
|
<string name="fetch_remote_media">Automaticky načítat vzdálená média, pokud nejsou k dispozici</string>
|
||||||
<string name="reblog_missing_description">U této zprávy chybí popis médií. Opravdu ji chcete boostnout\?</string>
|
<string name="reblog_missing_description">U této zprávy chybí popis médií. Opravdu ji chcete boostnout\?</string>
|
||||||
<string name="warn_boost_no_media_description">Varovat před boostnutím, pokud zpráva nemá popis médií</string>
|
<string name="warn_boost_no_media_description">Varovat před boostnutím, pokud zpráva nemá popis médií</string>
|
||||||
|
<string name="add_description">Přidat popis</string>
|
||||||
|
<string name="fetching_messages">Načítání zpráv</string>
|
||||||
</resources>
|
</resources>
|
|
@ -1041,4 +1041,6 @@
|
||||||
<string name="load_media_remotely">Medyayı uzaktan yükle</string>
|
<string name="load_media_remotely">Medyayı uzaktan yükle</string>
|
||||||
<string name="warn_boost_no_media_description">Arttırmadan önce mesajın medya açıklaması yoksa uyar</string>
|
<string name="warn_boost_no_media_description">Arttırmadan önce mesajın medya açıklaması yoksa uyar</string>
|
||||||
<string name="reblog_missing_description">Bu mesajın medya açıklaması eksik. Arttırmak istediğinizden emin misiniz\?</string>
|
<string name="reblog_missing_description">Bu mesajın medya açıklaması eksik. Arttırmak istediğinizden emin misiniz\?</string>
|
||||||
|
<string name="fetching_messages">Mesajlar alınıyor</string>
|
||||||
|
<string name="add_description">Açıklama ekle</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue