Compare commits

...

6 Commits

Author SHA1 Message Date
Imran Remtulla
b68cf5a1be Increment version 2023-01-02 02:05:35 -05:00
Imran Remtulla
4eb7499591 Merge pull request #211 from RanTranslations/main
assets: Update Simplified Chinese
2023-01-02 02:04:34 -05:00
JohnsonRan
98fafe2aa4 assets: Update Simplified Chinese 2023-01-02 11:18:27 +08:00
Imran Remtulla
9bac74aadd Icon fixed in readme 2022-12-28 06:42:42 -05:00
Imran Remtulla
0a93117bf0 Merge pull request #208 from ImranR98/dev
Tiny bugfix + increment version
2022-12-28 06:31:42 -05:00
Imran Remtulla
451cc41c45 Tiny bugfix + increment version 2022-12-28 06:30:58 -05:00
6 changed files with 19 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
# ![Obtainium Icon](./android/app/src/main/res/drawable/ic_notification.png) Obtainium # ![Obtainium Icon](./assets/graphics/icon_small.png) Obtainium
Get Android App Updates Directly From the Source. Get Android App Updates Directly From the Source.

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@@ -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 限制) - 在 {} 分钟后重试"

View File

@@ -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

View File

@@ -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

View File

@@ -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'