mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-24 18:09:42 +02:00
Compare commits
6 Commits
v0.9.11-be
...
v0.9.13-be
Author | SHA1 | Date | |
---|---|---|---|
|
b68cf5a1be | ||
|
4eb7499591 | ||
|
98fafe2aa4 | ||
|
9bac74aadd | ||
|
0a93117bf0 | ||
|
451cc41c45 |
@@ -1,4 +1,4 @@
|
|||||||
#  Obtainium
|
#  Obtainium
|
||||||
|
|
||||||
Get Android App Updates Directly From the Source.
|
Get Android App Updates Directly From the Source.
|
||||||
|
|
||||||
|
BIN
assets/graphics/icon_small.png
Normal file
BIN
assets/graphics/icon_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
@@ -12,7 +12,7 @@
|
|||||||
"ok": "好的",
|
"ok": "好的",
|
||||||
"and": "和",
|
"and": "和",
|
||||||
"startedBgUpdateTask": "开始后台检查更新任务",
|
"startedBgUpdateTask": "开始后台检查更新任务",
|
||||||
"bgUpdateIgnoreAfterIs": "Bg update ignoreAfter is {}",
|
"bgUpdateIgnoreAfterIs": "下次后台更新检查 {}",
|
||||||
"startedActualBGUpdateCheck": "后台检查更新已开始",
|
"startedActualBGUpdateCheck": "后台检查更新已开始",
|
||||||
"bgUpdateTaskFinished": "后台检查更新已完成",
|
"bgUpdateTaskFinished": "后台检查更新已完成",
|
||||||
"firstRun": "这是你第一次运行 Obtainium",
|
"firstRun": "这是你第一次运行 Obtainium",
|
||||||
@@ -199,18 +199,18 @@
|
|||||||
"downloadNotifDescription": "通知用户下载进度",
|
"downloadNotifDescription": "通知用户下载进度",
|
||||||
"noAPKFound": "未找到安装包",
|
"noAPKFound": "未找到安装包",
|
||||||
"noVersionDetection": "无版本检测",
|
"noVersionDetection": "无版本检测",
|
||||||
"categorize": "Categorize",
|
"categorize": "归档",
|
||||||
"categories": "Categories",
|
"categories": "归档",
|
||||||
"category": "Category",
|
"category": "类别",
|
||||||
"noCategory": "No Category",
|
"noCategory": "无类别",
|
||||||
"noCategories": "No Categories",
|
"noCategories": "无类别",
|
||||||
"deleteCategoriesQuestion": "Delete Categories?",
|
"deleteCategoriesQuestion": "删除所有类别?",
|
||||||
"categoryDeleteWarning": "All Apps in deleted categories will be set to uncategorized.",
|
"categoryDeleteWarning": "所有被删除类别的应用程序将被设置为无类别",
|
||||||
"addCategory": "Add Category",
|
"addCategory": "添加类别",
|
||||||
"label": "Label",
|
"label": "标签",
|
||||||
"language": "Language",
|
"language": "语言",
|
||||||
"storagePermissionDenied": "Storage permission denied",
|
"storagePermissionDenied": "存储权限已被拒绝",
|
||||||
"selectedCategorizeWarning": "This will replace any existing category settings for the selected Apps.",
|
"selectedCategorizeWarning": "这将取代所选应用程序的任何现有类别",
|
||||||
"tooManyRequestsTryAgainInMinutes": {
|
"tooManyRequestsTryAgainInMinutes": {
|
||||||
"one": "请求过多 (API 限制) - 在 {} 分钟后重试",
|
"one": "请求过多 (API 限制) - 在 {} 分钟后重试",
|
||||||
"other": "请求过多 (API 限制) - 在 {} 分钟后重试"
|
"other": "请求过多 (API 限制) - 在 {} 分钟后重试"
|
||||||
|
@@ -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.9.11';
|
const String currentVersion = '0.9.13';
|
||||||
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
|
||||||
|
|
||||||
|
@@ -551,7 +551,9 @@ class AppsPageState extends State<AppsPage> {
|
|||||||
singleNullReturnButton: tr('continue'),
|
singleNullReturnButton: tr('continue'),
|
||||||
additionalWidgets: [
|
additionalWidgets: [
|
||||||
CategoryEditorSelector(
|
CategoryEditorSelector(
|
||||||
preselected: preselected ?? {},
|
preselected: !showPrompt
|
||||||
|
? preselected ?? {}
|
||||||
|
: {},
|
||||||
showLabelWhenNotEmpty: false,
|
showLabelWhenNotEmpty: false,
|
||||||
onSelected: (categories) {
|
onSelected: (categories) {
|
||||||
appsProvider
|
appsProvider
|
||||||
|
@@ -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.9.11+101 # When changing this, update the tag in main() accordingly
|
version: 0.9.13+103 # 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