mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-10-21 18:03:45 +02:00
Compare commits
7 Commits
851c228e76
...
a37509c5a3
Author | SHA1 | Date | |
---|---|---|---|
|
a37509c5a3 | ||
|
cb9ac4cba0 | ||
|
d6d3623c63 | ||
|
58c1bdbd00 | ||
|
f2b7b196a8 | ||
|
73746bcb52 | ||
|
7262750124 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -11,7 +11,8 @@
|
|||||||
.svn/
|
.svn/
|
||||||
.swiftpm/
|
.swiftpm/
|
||||||
migrate_working_dir/
|
migrate_working_dir/
|
||||||
.vscode/
|
.vscode/*
|
||||||
|
!.vscode/launch.json
|
||||||
|
|
||||||
# IntelliJ related
|
# IntelliJ related
|
||||||
*.iml
|
*.iml
|
||||||
|
28
.vscode/launch.json
vendored
Normal file
28
.vscode/launch.json
vendored
Normal 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" ]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@@ -167,7 +167,7 @@
|
|||||||
"versionCorrectionDisabled": "Verziókorrekció letiltva (úgy tűnik, hogy a bővítmény nem működik)",
|
"versionCorrectionDisabled": "Verziókorrekció letiltva (úgy tűnik, hogy a bővítmény nem működik)",
|
||||||
"unknown": "Ismeretlen",
|
"unknown": "Ismeretlen",
|
||||||
"none": "Semmi",
|
"none": "Semmi",
|
||||||
"all": "Minden",
|
"all": "Összes",
|
||||||
"never": "Soha",
|
"never": "Soha",
|
||||||
"latestVersionX": "Legújabb verzió: {}",
|
"latestVersionX": "Legújabb verzió: {}",
|
||||||
"installedVersionX": "Telepített verzió: {}",
|
"installedVersionX": "Telepített verzió: {}",
|
||||||
@@ -334,7 +334,7 @@
|
|||||||
"foregroundService": "Obtainium előtér-szolgáltatás",
|
"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)",
|
"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ő).",
|
"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": {
|
"removeAppQuestion": {
|
||||||
"one": "Eltávolítja az alkalmazást?",
|
"one": "Eltávolítja az alkalmazást?",
|
||||||
"other": "Eltávolítja az alkalmazásokat?"
|
"other": "Eltávolítja az alkalmazásokat?"
|
||||||
|
@@ -66,7 +66,7 @@ class RuStore extends AppSource {
|
|||||||
|
|
||||||
String appName = appDetails['appName'] ?? tr('app');
|
String appName = appDetails['appName'] ?? tr('app');
|
||||||
String author = appDetails['companyName'] ?? name;
|
String author = appDetails['companyName'] ?? name;
|
||||||
String? dateStr = appDetails['updatedAt'];
|
String? dateStr = appDetails['appVerUpdatedAt'];
|
||||||
String? version = appDetails['versionName'];
|
String? version = appDetails['versionName'];
|
||||||
String? changeLog = appDetails['whatsNew'];
|
String? changeLog = appDetails['whatsNew'];
|
||||||
if (version == null) {
|
if (version == null) {
|
||||||
|
Reference in New Issue
Block a user