mirror of
				https://github.com/ImranR98/Obtainium.git
				synced 2025-10-31 13:33:28 +01:00 
			
		
		
		
	Compare commits
	
		
			6 Commits
		
	
	
		
			v0.11.28-b
			...
			v0.11.29-b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 8f0aac057e | ||
|  | e929920a48 | ||
|  | 8ed254c7dd | ||
|  | 46a00836df | ||
|  | f144ffdded | ||
|  | d597d569e2 | 
| @@ -207,7 +207,7 @@ | |||||||
|     "addCategory": "Aggiungi categoria", |     "addCategory": "Aggiungi categoria", | ||||||
|     "label": "Etichetta", |     "label": "Etichetta", | ||||||
|     "language": "Lingua", |     "language": "Lingua", | ||||||
|     "copiedToClipboard": "Copied to Clipboard", |     "copiedToClipboard": "Copiato negli appunti", | ||||||
|     "storagePermissionDenied": "Accesso ai file non autorizzato", |     "storagePermissionDenied": "Accesso ai file non autorizzato", | ||||||
|     "selectedCategorizeWarning": "Ciò sostituirà le impostazioni di categoria esistenti per le App selezionate.", |     "selectedCategorizeWarning": "Ciò sostituirà le impostazioni di categoria esistenti per le App selezionate.", | ||||||
|     "filterAPKsByRegEx": "Filtra file APK con espressioni regolari", |     "filterAPKsByRegEx": "Filtra file APK con espressioni regolari", | ||||||
| @@ -221,8 +221,8 @@ | |||||||
|     "importFromURLsInFile": "Importa da URL in file (come OPML)", |     "importFromURLsInFile": "Importa da URL in file (come OPML)", | ||||||
|     "versionDetection": "Rilevamento di versione", |     "versionDetection": "Rilevamento di versione", | ||||||
|     "standardVersionDetection": "Rilevamento di versione standard", |     "standardVersionDetection": "Rilevamento di versione standard", | ||||||
|     "groupByCategory": "Group by Category", |     "groupByCategory": "Raggruppa per categoria", | ||||||
|     "autoApkFilterByArch": "Attempt to filter APKs by CPU architecture if possible", |     "autoApkFilterByArch": "Tenta di filtrare gli APK in base all'architettura della CPU, se possibile", | ||||||
|     "removeAppQuestion": { |     "removeAppQuestion": { | ||||||
|         "one": "Rimuovere l'App?", |         "one": "Rimuovere l'App?", | ||||||
|         "other": "Rimuovere le App?" |         "other": "Rimuovere le App?" | ||||||
|   | |||||||
| @@ -221,8 +221,8 @@ | |||||||
|     "importFromURLsInFile": "ファイル(OPMLなど)内のURLからインポート", |     "importFromURLsInFile": "ファイル(OPMLなど)内のURLからインポート", | ||||||
|     "versionDetection": "バージョン検出", |     "versionDetection": "バージョン検出", | ||||||
|     "standardVersionDetection": "標準のバージョン検出", |     "standardVersionDetection": "標準のバージョン検出", | ||||||
|     "groupByCategory": "Group by Category", |     "groupByCategory": "カテゴリ別にグループ化する", | ||||||
|     "autoApkFilterByArch": "Attempt to filter APKs by CPU architecture if possible", |     "autoApkFilterByArch": "可能であれば,CPUアーキテクチャによるAPKのフィルタリングを試みる", | ||||||
|     "removeAppQuestion": { |     "removeAppQuestion": { | ||||||
|         "one": "アプリを削除しますか?", |         "one": "アプリを削除しますか?", | ||||||
|         "other": "アプリを削除しますか?" |         "other": "アプリを削除しますか?" | ||||||
|   | |||||||
| @@ -81,10 +81,11 @@ class Codeberg extends AppSource { | |||||||
|           []; |           []; | ||||||
|  |  | ||||||
|       dynamic targetRelease; |       dynamic targetRelease; | ||||||
|  |       var prerrelsSkipped = 0; | ||||||
|       for (int i = 0; i < releases.length; i++) { |       for (int i = 0; i < releases.length; i++) { | ||||||
|         if (!fallbackToOlderReleases && i > 0) break; |         if (!fallbackToOlderReleases && i > prerrelsSkipped) break; | ||||||
|         if (!includePrereleases && releases[i]['prerelease'] == true) { |         if (!includePrereleases && releases[i]['prerelease'] == true) { | ||||||
|  |           prerrelsSkipped++; | ||||||
|           continue; |           continue; | ||||||
|         } |         } | ||||||
|         if (releases[i]['draft'] == true) { |         if (releases[i]['draft'] == true) { | ||||||
|   | |||||||
| @@ -127,10 +127,11 @@ class GitHub extends AppSource { | |||||||
|           []; |           []; | ||||||
|  |  | ||||||
|       dynamic targetRelease; |       dynamic targetRelease; | ||||||
|  |       var prerrelsSkipped = 0; | ||||||
|       for (int i = 0; i < releases.length; i++) { |       for (int i = 0; i < releases.length; i++) { | ||||||
|         if (!fallbackToOlderReleases && i > 0) break; |         if (!fallbackToOlderReleases && i > prerrelsSkipped) break; | ||||||
|         if (!includePrereleases && releases[i]['prerelease'] == true) { |         if (!includePrereleases && releases[i]['prerelease'] == true) { | ||||||
|  |           prerrelsSkipped++; | ||||||
|           continue; |           continue; | ||||||
|         } |         } | ||||||
|         var nameToFilter = releases[i]['name'] as String?; |         var nameToFilter = releases[i]['name'] as String?; | ||||||
|   | |||||||
| @@ -21,7 +21,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart'; | |||||||
| // ignore: implementation_imports | // ignore: implementation_imports | ||||||
| import 'package:easy_localization/src/localization.dart'; | import 'package:easy_localization/src/localization.dart'; | ||||||
|  |  | ||||||
| const String currentVersion = '0.11.28'; | const String currentVersion = '0.11.29'; | ||||||
| const String currentReleaseTag = | const String currentReleaseTag = | ||||||
|     'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES |     'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES | ||||||
|  |  | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev | |||||||
| # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | ||||||
| # In Windows, build-name is used as the major, minor, and patch parts | # In Windows, build-name is used as the major, minor, and patch parts | ||||||
| # of the product and file versions while build-number is used as the build suffix. | # of the product and file versions while build-number is used as the build suffix. | ||||||
| version: 0.11.28+150 # When changing this, update the tag in main() accordingly | version: 0.11.29+151 # When changing this, update the tag in main() accordingly | ||||||
|  |  | ||||||
| environment: | environment: | ||||||
|   sdk: '>=2.18.2 <3.0.0' |   sdk: '>=2.18.2 <3.0.0' | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user