6.4.0 - 新增 barcode/qrcode/shizuku 等模块; 适配高版本系统语言设置; 优化打包功能; 支持应用快捷方式; 修复屏幕旋转相关问题

This commit is contained in:
SuperMonster003
2023-10-30 17:16:58 +08:00
parent 8fc9564c63
commit ef7b1b719c
163 changed files with 4619 additions and 1442 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<org.autojs.autojs.ui.edit.EditorView_ xmlns:android="http://schemas.android.com/apk/res/android"
<org.autojs.autojs.ui.edit.EditorView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/editor_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />

View File

@@ -24,7 +24,8 @@
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="4dp">
android:paddingStart="4dp"
android:paddingEnd="2dp">
<org.autojs.autojs.core.console.ConsoleView
android:id="@+id/console"

View File

@@ -1,30 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
android:fitsSystemWindows="true">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:titleTextColor="@color/md_black_1000"
app:subtitleTextColor="@color/md_black_1000"
android:theme="@style/ToolBarStyleInrt"
android:background="@color/md_blue_grey_50"
app:contentInsetStartWithNavigation="0dp"
app:contentInsetEndWithActions="2dp"
app:titleTextAppearance="@style/TextAppearanceEditorTitle"
app:popupTheme="@style/OverflowMenuInrt" />
</com.google.android.material.appbar.AppBarLayout>
<org.autojs.autojs.core.console.ConsoleView
android:id="@+id/console"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:color_debug="#cc000000"
app:color_verbose="#dfc0c0c0"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="4dp"
android:paddingEnd="2dp">
<org.autojs.autojs.core.console.ConsoleView
android:id="@+id/console"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:color_verbose="#DFC0C0C0"
app:color_debug="#CC000000"
app:color_info="#FF43A047"
app:color_warn="#FF1976D2"
app:color_error="#FFC62828"
app:color_assert="#FFE254FF" />
</FrameLayout>
</LinearLayout>

View File

@@ -5,11 +5,11 @@
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout
`<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:fitsSystemWindows="true">
android:fitsSystemWindows="true">`
<org.autojs.autojs.theme.widget.ThemeColorToolbar
android:id="@+id/toolbar"

View File

@@ -1,29 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
android:fitsSystemWindows="true">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:titleTextColor="@color/md_black_1000"
app:subtitleTextColor="@color/md_black_1000"
android:theme="@style/ToolBarStyleInrt"
android:background="@color/md_blue_grey_50"
app:contentInsetStartWithNavigation="0dp"
app:contentInsetEndWithActions="2dp"
app:titleTextAppearance="@style/TextAppearanceEditorTitle"
app:popupTheme="@style/OverflowMenuInrt" />
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/fragment_setting"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"/>
android:id="@+id/fragment_setting"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<org.autojs.autojs.ui.edit.EditorView_
<org.autojs.autojs.ui.edit.EditorView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/editor_view"
android:layout_width="match_parent"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -699,6 +699,16 @@
<string name="summary_text_launcher_shortcuts">أضف اختصارات إلى المشغل</string>
<string name="text_pin_shortcut_not_unsupported">تثبيت الاختصارات على المشغل غير مدعوم</string>
<string name="text_template_apk_path">قالب مسار APK</string>
<string name="text_shizuku_access_description">يتيح Shizuku استخدام واجهة برمجة تطبيقات النظام مع امتيازات ADB</string>
<string name="text_shizuku_access">وصول Shizuku</string>
<string name="text_grant_autojs6_access_in_shizuku_app">منح الوصول إلى AutoJs6 في تطبيق Shizuku</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">قم بإلغاء الوصول إلى AutoJs6 في تطبيق Shizuku</string>
<string name="text_shizuku_service_may_need_to_be_run_first">قد يلزم تشغيل خدمة Shizuku أولاً</string>
<string name="error_shizuku_is_not_installed">لم يتم تثبيت Shizuku</string>
<string name="error_shizuku_version_is_not_supported">نسخة Shizuku غير مدعومة</string>
<string name="error_failed_to_revoke_shizuku_access">فشل في إلغاء وصول Shizuku</string>
<string name="error_failed_to_grant_shizuku_access">فشل منح Shizuku حق الوصول</string>
<string name="error_unable_to_use_shizuku_service">غير قادر على استخدام خدمة Shizuku</string>
<plurals name="text_items_total_sum">
<item quantity="one">المجموع: عنصر واحد</item>

View File

@@ -696,7 +696,17 @@
<string name="description_launcher_shortcuts">Shortcuts can perform specific actions in AutoJs6. Users can display these shortcuts in a supported launcher and quickly start some tasks or launch an activity, such as reading AutoJs6 application documentation, launching AutoJs6 settings page, and so on.</string>
<string name="summary_text_launcher_shortcuts">Add shortcuts to launcher</string>
<string name="text_pin_shortcut_not_unsupported">Pinning shortcuts to launcher is not supported</string>
<string name="text_template_apk_path">template apk path</string>
<string name="text_template_apk_path">Template APK path</string>
<string name="text_shizuku_access_description">Shizuku makes it possible to uses system API with ADB privileges</string>
<string name="text_shizuku_access">Shizuku access</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Grant AutoJs6 access in Shizuku app</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Revoke AutoJs6 access in Shizuku app</string>
<string name="text_shizuku_service_may_need_to_be_run_first">Shizuku service may need to be run first</string>
<string name="error_shizuku_is_not_installed">Shizuku is not installed</string>
<string name="error_shizuku_version_is_not_supported">Shizuku version is not supported</string>
<string name="error_failed_to_revoke_shizuku_access">Failed to revoke Shizuku access</string>
<string name="error_failed_to_grant_shizuku_access">Failed to grant Shizuku access</string>
<string name="error_unable_to_use_shizuku_service">Unable to use Shizuku service</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d item</item>

View File

@@ -697,8 +697,18 @@
<string name="text_launcher_shortcuts">Atajos del lanzador</string>
<string name="description_launcher_shortcuts">Los accesos directos pueden realizar acciones específicas en AutoJs6. Los usuarios pueden mostrar estos accesos directos en un lanzador compatible e iniciar rápidamente algunas tareas o iniciar una actividad, como leer la documentación de la aplicación AutoJs6, iniciar la página de configuración de AutoJs6, etc.</string>
<string name="summary_text_launcher_shortcuts">Añadir accesos directos al lanzador</string>
<string name="text_pin_shortcut_not_unsupported">No es posible anclar accesos directos al lanzador.</string>
<string name="text_pin_shortcut_not_unsupported">No es posible anclar accesos directos al lanzador</string>
<string name="text_template_apk_path">Ruta de acceso de APK de plantilla</string>
<string name="text_shizuku_access_description">Shizuku te permite obtener privilegios ADB y acceso a las APIs del sistema</string>
<string name="text_shizuku_access">Permisos de Shizuku</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Conceder privilegios AutoJs6 en una aplicación Shizuku</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Revocar privilegios de AutoJs6 en una aplicación Shizuku</string>
<string name="text_shizuku_service_may_need_to_be_run_first">Puede que necesite ejecutar primero el servicio Shizuku</string>
<string name="error_shizuku_is_not_installed">Shizuku no está instalado</string>
<string name="error_shizuku_version_is_not_supported">No se admite la versión de Shizuku</string>
<string name="error_failed_to_revoke_shizuku_access">Fallo en la revocación de permisos Shizuku</string>
<string name="error_failed_to_grant_shizuku_access">Fallo en la concesión de permisos Shizuku</string>
<string name="error_unable_to_use_shizuku_service">No se puede utilizar el servicio Shizuku</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d artículo</item>

View File

@@ -698,7 +698,17 @@
<string name="description_launcher_shortcuts">Les raccourcis permettent d\'effectuer des actions spécifiques dans AutoJs6. Les utilisateurs peuvent afficher ces raccourcis dans un lanceur pris en charge et démarrer rapidement certaines tâches ou lancer une activité, comme la lecture de la documentation de l\'application AutoJs6, le lancement de la page de configuration d\'AutoJs6, etc.</string>
<string name="summary_text_launcher_shortcuts">Ajouter des raccourcis au lanceur</string>
<string name="text_pin_shortcut_not_unsupported">L\'épinglage de raccourcis dans le lanceur n\'est pas pris en charge</string>
<string name="text_template_apk_path">Chemin daccès APK du modèle</string>
<string name="text_template_apk_path">Chemin d\'accès APK du modèle</string>
<string name="text_shizuku_access_description">Shizuku vous permet d\'obtenir des privilèges ADB et d\'accéder aux API du système</string>
<string name="text_shizuku_access">Permissions de Shizuku</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Accorder des privilèges AutoJs6 dans une application Shizuku</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Révoquer les privilèges AutoJs6 dans une application Shizuku</string>
<string name="text_shizuku_service_may_need_to_be_run_first">Il se peut que vous deviez d\'abord exécuter le service Shizuku</string>
<string name="error_shizuku_is_not_installed">Shizuku n\'est pas installé</string>
<string name="error_shizuku_version_is_not_supported">La version de Shizuku n\'est pas prise en charge</string>
<string name="error_failed_to_revoke_shizuku_access">La révocation des droits de Shizuku a échoué</string>
<string name="error_failed_to_grant_shizuku_access">Échec de l\'octroi de la permission de Shizuku</string>
<string name="error_unable_to_use_shizuku_service">Impossible d\'utiliser le service Shizuku</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d article</item>

View File

@@ -698,7 +698,17 @@
<string name="description_launcher_shortcuts">ショートカットは、AutoJs6 で特定のアクションを実行することができます。ユーザーは、サポートされているランチャーにこれらのショートカットを表示し、AutoJs6アプリケーションのドキュメントを読んだり、AutoJs6の設定ページを起動したりするなど、いくつかのタスクを素早く開始したり、アクティビティを起動したりすることができます</string>
<string name="summary_text_launcher_shortcuts">ランチャーへのショートカットの追加</string>
<string name="text_pin_shortcut_not_unsupported">ショートカットをランチャーにピン留めすることはサポートされていません</string>
<string name="text_template_apk_path">テンプレートAPKパス</string>
<string name="text_template_apk_path">テンプレート APK パス</string>
<string name="text_shizuku_access_description">Shizuku を使用すると、ADB 権限を取得し、システム API にアクセスできるようになります</string>
<string name="text_shizuku_access">Shizuku のパーミッション</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Shizuku アプリケーションで AutoJs6 権限を付与する</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Shizuku アプリケーションで AutoJs6 権限を取り消す</string>
<string name="text_shizuku_service_may_need_to_be_run_first">最初に Shizuku サービスを実行する必要があるかもしれない</string>
<string name="error_shizuku_is_not_installed">Shizuku がインストールされていない</string>
<string name="error_shizuku_version_is_not_supported">Shizuku のバージョンがサポートされていない</string>
<string name="error_failed_to_revoke_shizuku_access">Shizuku 権限の取り消しに失敗しました</string>
<string name="error_failed_to_grant_shizuku_access">Shizuku の権限付与に失敗しました</string>
<string name="error_unable_to_use_shizuku_service">Shizuku サービスが使用できない</string>
<plurals name="text_items_total_sum">
<item quantity="other">合計: %d 件</item>

View File

@@ -700,6 +700,16 @@
<string name="summary_text_launcher_shortcuts">런처에 바로 가기 추가</string>
<string name="text_pin_shortcut_not_unsupported">런처에 바로가기를 고정하는 것은 지원되지 않습니다</string>
<string name="text_template_apk_path">템플릿 APK 경로</string>
<string name="text_shizuku_access_description">Shizuku 를 사용하면 ADB 권한과 시스템 API 에 대한 액세스 권한을 얻을 수 있습니다</string>
<string name="text_shizuku_access">Shizuku 권한</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Shizuku 애플리케이션에서 AutoJs6 권한 부여하기</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Shizuku 애플리케이션에서 AutoJs6 권한 취소하기</string>
<string name="text_shizuku_service_may_need_to_be_run_first">먼저 Shizuku 서비스를 실행해야 할 수 있습니다</string>
<string name="error_shizuku_is_not_installed">Shizuku 가 설치되지 않았습니다</string>
<string name="error_shizuku_version_is_not_supported">지원되지 않는 Shizuku 버전</string>
<string name="error_failed_to_revoke_shizuku_access">Shizuku 권한 해지에 실패했습니다</string>
<string name="error_failed_to_grant_shizuku_access">Shizuku 권한을 부여하지 못했습니다</string>
<string name="error_unable_to_use_shizuku_service">Shizuku 서비스를 사용할 수 없음</string>
<plurals name="text_items_total_sum">
<item quantity="other">총: %d 개 항목</item>

View File

@@ -698,7 +698,17 @@
<string name="description_launcher_shortcuts">Ярлыки позволяют выполнять определенные действия в AutoJs6. Пользователи могут отображать эти ярлыки в поддерживаемой программе запуска и быстро запускать некоторые задачи или действия, например, читать документацию по приложению AutoJs6, запускать страницу настроек AutoJs6 и т.д.</string>
<string name="summary_text_launcher_shortcuts">Добавление ярлыков в пусковую установку</string>
<string name="text_pin_shortcut_not_unsupported">Закрепление ярлыков в пусковой установке не поддерживается</string>
<string name="text_template_apk_path">Шаблон APK-путь</string>
<string name="text_template_apk_path">Шаблон APK путь</string>
<string name="text_shizuku_access_description">Shizuku позволяет получить привилегии ADB и доступ к системным API.</string>
<string name="text_shizuku_access">Разрешения Shizuku</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Предоставление привилегий AutoJs6 в приложении Shizuku</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Отмена привилегий AutoJs6 в приложении Shizuku</string>
<string name="text_shizuku_service_may_need_to_be_run_first">Возможно, сначала потребуется запустить службу Shizuku</string>
<string name="error_shizuku_is_not_installed">Shizuku не установлен</string>
<string name="error_shizuku_version_is_not_supported">Версия Shizuku не поддерживается</string>
<string name="error_failed_to_revoke_shizuku_access">Не удалось отозвать права на Shizuku</string>
<string name="error_failed_to_grant_shizuku_access">Не удалось предоставить права на использование Shizuku</string>
<string name="error_unable_to_use_shizuku_service">Невозможно использовать службу Shizuku</string>
<plurals name="text_items_total_sum">
<item quantity="one">Всего: %d элемент</item>

View File

@@ -698,7 +698,17 @@
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中執行特定操作, 用户可以在啓動器中顯示這些快捷方式, 並快速開始某些任務或啓動某個活動, 如閲讀 AutoJs6 應用文檔, 啓動 AutoJs6 設置頁面等.</string>
<string name="summary_text_launcher_shortcuts">添加快捷方式到啓動器</string>
<string name="text_pin_shortcut_not_unsupported">將快捷方式固定到啓動器不被支持</string>
<string name="text_template_apk_path">模板APK路徑</string>
<string name="text_template_apk_path">模板 APK 路徑</string>
<string name="text_shizuku_access_description">通過 Shizuku 可以獲得 ADB 特權並使用系統 API</string>
<string name="text_shizuku_access">Shizuku 權限</string>
<string name="text_grant_autojs6_access_in_shizuku_app">在 Shizuku 應用中授予 AutoJs6 權限</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">在 Shizuku 應用中撤銷 AutoJs6 權限</string>
<string name="text_shizuku_service_may_need_to_be_run_first">可能需要先運行 Shizuku 服務</string>
<string name="error_shizuku_is_not_installed">Shizuku 未安裝</string>
<string name="error_shizuku_version_is_not_supported">Shizuku 版本不支持</string>
<string name="error_failed_to_revoke_shizuku_access">Shizuku 權限撤銷失敗</string>
<string name="error_failed_to_grant_shizuku_access">Shizuku 權限授予失敗</string>
<string name="error_unable_to_use_shizuku_service">無法使用 Shizuku 服務</string>
<plurals name="text_items_total_sum">
<item quantity="other">共計: %d 項</item>

View File

@@ -698,7 +698,17 @@
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中執行特定操作, 使用者可以在啟動器中顯示這些快捷方式, 並快速開始某些任務或啟動某個活動, 如閲讀 AutoJs6 應用文件, 啟動 AutoJs6 設定頁面等.</string>
<string name="summary_text_launcher_shortcuts">新增快捷方式到啟動器</string>
<string name="text_pin_shortcut_not_unsupported">將快捷方式固定到啟動器不被支援</string>
<string name="text_template_apk_path">模板APK路徑</string>
<string name="text_template_apk_path">模板 APK 路徑</string>
<string name="text_shizuku_access_description">透過 Shizuku 可以獲得 ADB 特權並使用系統 API</string>
<string name="text_shizuku_access">Shizuku 許可權</string>
<string name="text_grant_autojs6_access_in_shizuku_app">在 Shizuku 應用中授予 AutoJs6 許可權</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">在 Shizuku 應用中撤銷 AutoJs6 許可權</string>
<string name="text_shizuku_service_may_need_to_be_run_first">可能需要先執行 Shizuku 服務</string>
<string name="error_shizuku_is_not_installed">Shizuku 未安裝</string>
<string name="error_shizuku_version_is_not_supported">Shizuku 版本不支援</string>
<string name="error_failed_to_revoke_shizuku_access">Shizuku 許可權撤銷失敗</string>
<string name="error_failed_to_grant_shizuku_access">Shizuku 許可權授予失敗</string>
<string name="error_unable_to_use_shizuku_service">無法使用 Shizuku 服務</string>
<plurals name="text_items_total_sum">
<item quantity="other">共計: %d 項</item>

View File

@@ -694,7 +694,17 @@
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中执行特定操作, 用户可以在启动器中显示这些快捷方式, 并快速开始某些任务或启动某个活动, 如阅读 AutoJs6 应用文档, 启动 AutoJs6 设置页面等.</string>
<string name="summary_text_launcher_shortcuts">添加快捷方式到启动器</string>
<string name="text_pin_shortcut_not_unsupported">将快捷方式固定到启动器不被支持</string>
<string name="text_template_apk_path">模板APK路径</string>
<string name="text_template_apk_path">模板 APK 路径</string>
<string name="text_shizuku_access_description">通过 Shizuku 可以获得 ADB 特权并使用系统 API</string>
<string name="text_shizuku_access">Shizuku 权限</string>
<string name="text_grant_autojs6_access_in_shizuku_app">在 Shizuku 应用中授予 AutoJs6 权限</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">在 Shizuku 应用中撤销 AutoJs6 权限</string>
<string name="text_shizuku_service_may_need_to_be_run_first">可能需要先运行 Shizuku 服务</string>
<string name="error_shizuku_is_not_installed">Shizuku 未安装</string>
<string name="error_shizuku_version_is_not_supported">Shizuku 版本不支持</string>
<string name="error_failed_to_revoke_shizuku_access">Shizuku 权限撤销失败</string>
<string name="error_failed_to_grant_shizuku_access">Shizuku 权限授予失败</string>
<string name="error_unable_to_use_shizuku_service">无法使用 Shizuku 服务</string>
<plurals name="text_items_total_sum">
<item quantity="other">共计: %d 项</item>

View File

@@ -14,8 +14,8 @@
<color name="theme_color_black">#111214</color>
<color name="theme_color_default">@color/md_teal_800</color>
<color name="console_view_debug">#CC000000</color>
<color name="console_view_verbose">#DFC0C0C0</color>
<color name="console_view_debug">#CC000000</color>
<color name="console_view_info">#FF43A047</color>
<color name="console_view_warn">#FF1976D2</color>
<color name="console_view_error">#FFC62828</color>

View File

@@ -907,7 +907,18 @@
<string name="description_launcher_shortcuts">Shortcuts can perform specific actions in AutoJs6. Users can display these shortcuts in a supported launcher and quickly start some tasks or launch an activity, such as reading AutoJs6 application documentation, launching AutoJs6 settings page, and so on.</string>
<string name="summary_text_launcher_shortcuts">Add shortcuts to launcher</string>
<string name="text_pin_shortcut_not_unsupported">Pinning shortcuts to launcher is not supported</string>
<string name="text_template_apk_path">template apk path</string>
<string name="text_template_apk_path">Template APK path</string>
<string name="path_android_asset_template" translatable="false">file:///android_asset/template.apk</string>
<string name="text_shizuku_access_description">Shizuku makes it possible to uses system API with ADB privileges</string>
<string name="text_shizuku_access">Shizuku access</string>
<string name="text_grant_autojs6_access_in_shizuku_app">Grant AutoJs6 access in Shizuku app</string>
<string name="text_revoke_autojs6_access_in_shizuku_app">Revoke AutoJs6 access in Shizuku app</string>
<string name="text_shizuku_service_may_need_to_be_run_first">Shizuku service may need to be run first</string>
<string name="error_shizuku_is_not_installed">Shizuku is not installed</string>
<string name="error_shizuku_version_is_not_supported">Shizuku version is not supported</string>
<string name="error_failed_to_revoke_shizuku_access">Failed to revoke Shizuku access</string>
<string name="error_failed_to_grant_shizuku_access">Failed to grant Shizuku access</string>
<string name="error_unable_to_use_shizuku_service">Unable to use Shizuku service</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d item</item>

View File

@@ -28,6 +28,10 @@
<item name="popupTheme">@style/PopupMenuTheme</item>
</style>
<style name="ToolBarStyleInrt" parent="ThemeOverlay.AppCompat.DayNight.ActionBar">
<item name="colorControlNormal">@color/md_black_1000</item>
</style>
<style name="EditorTheme" parent="AppTheme">
<item name="android:windowActionModeOverlay">true</item>
<item name="android:actionModeBackground">@color/colorAccent</item>
@@ -137,4 +141,10 @@
<item name="android:dropDownVerticalOffset">5.0dp</item>
</style>
<style name="OverflowMenuInrt" parent="OverflowMenu">
<item name="android:textColor">@color/md_black_1000</item>
<item name="android:popupBackground">@color/md_blue_grey_100</item>
<item name="android:itemBackground">@color/md_blue_grey_100</item>
</style>
</resources>