Compare commits

...

7 Commits

Author SHA1 Message Date
Imran Remtulla
a37509c5a3 Merge remote-tracking branch 'origin/dev' 2025-08-04 15:24:00 -04:00
Imran Remtulla
cb9ac4cba0 Include launch.json in git 2025-08-04 15:23:44 -04:00
Imran
d6d3623c63 Merge pull request #2443 from summoner001/main
Translation: Update hu.json
2025-08-02 16:51:28 -04:00
Imran
58c1bdbd00 Merge pull request #2446 from ar-lex/bugfix/rustore-updatedat
Fix update date for RuStore (#2445)
2025-08-02 16:51:17 -04:00
Alexey Arutyunov
f2b7b196a8 Fix update date for RuStore (#2445) 2025-08-02 21:20:29 +02:00
summoner
73746bcb52 Translation: Update hu.json
Fixing autotranslated strings
2025-08-02 10:38:31 +00:00
Imran
7262750124 Merge pull request #2439 from ImranR98/dev
- Restore Oxford comma but only for English (#2245)
- Minor bug in F-Droid variant (#2373)
- Minor language-specific case tweaks (#2396)
- Add "de/select all" button to multi-select menus (#2401)
- Minor wording changes (#2402, #2406)
- Allow excluding secret values from export file (#2430)
- Added farsroid.com as a source (#2435)
- Don't init the foreground service unless it is needed (#2437)
- Fix occasional RangeError after importing apps (#2438)
2025-08-01 18:16:53 -04:00
4 changed files with 33 additions and 4 deletions

3
.gitignore vendored
View File

@@ -11,7 +11,8 @@
.svn/
.swiftpm/
migrate_working_dir/
.vscode/
.vscode/*
!.vscode/launch.json
# IntelliJ related
*.iml

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Obtainium",
"request": "launch",
"type": "dart",
"args":[ "--flavor", "normal" ]
},
{
"name": "Obtainium (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"args":[ "--flavor", "normal" ]
},
{
"name": "Obtainium (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"args":[ "--flavor", "normal" ]
}
]
}

View File

@@ -167,7 +167,7 @@
"versionCorrectionDisabled": "Verziókorrekció letiltva (úgy tűnik, hogy a bővítmény nem működik)",
"unknown": "Ismeretlen",
"none": "Semmi",
"all": "Minden",
"all": "Összes",
"never": "Soha",
"latestVersionX": "Legújabb verzió: {}",
"installedVersionX": "Telepített verzió: {}",
@@ -334,7 +334,7 @@
"foregroundService": "Obtainium előtér-szolgáltatás",
"foregroundServiceExplanation": "Előtér-szolgáltatás használata a frissítések ellenőrzéséhez (megbízhatóbb, de több energiát fogyaszt)",
"fgServiceNotice": "Ez az értesítés a háttérben történő frissítésellenőrzéshez szükséges (a rendszer beállításaiban elrejthető).",
"excludeSecrets": "Titkok kizárása",
"excludeSecrets": "Érzékeny adatok (például: személyes hozzáférési tokenek) kihagyása",
"removeAppQuestion": {
"one": "Eltávolítja az alkalmazást?",
"other": "Eltávolítja az alkalmazásokat?"

View File

@@ -66,7 +66,7 @@ class RuStore extends AppSource {
String appName = appDetails['appName'] ?? tr('app');
String author = appDetails['companyName'] ?? name;
String? dateStr = appDetails['updatedAt'];
String? dateStr = appDetails['appVerUpdatedAt'];
String? version = appDetails['versionName'];
String? changeLog = appDetails['whatsNew'];
if (version == null) {