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

This commit is contained in:
SuperMonster003
2023-10-25 14:15:44 +08:00
parent 5ee2f62d89
commit 4b64922a0b
194 changed files with 2723 additions and 1497 deletions

View File

@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- @OtherXmlVersions [ v30 ] -->
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityEventTypes="typeAllMask"
android:accessibilityFeedbackType="feedbackAllMask"
@@ -7,6 +8,5 @@
android:canRequestEnhancedWebAccessibility="true"
android:canRequestFilterKeyEvents="true"
android:canRetrieveWindowContent="true"
android:canTakeScreenshot="true"
android:description="@string/text_a11y_service_description"
android:notificationTimeout="0" />

View File

@@ -59,14 +59,12 @@
app:longClickPrompt="@string/description_documentation_source_preference"
app:longClickPromptMore="@string/description_documentation_source_preference_more" />
<org.autojs.autojs.ui.settings.DocumentationLauncherIconPreference
<org.autojs.autojs.ui.settings.LauncherShortcutsPreference
app:layout="@layout/preference_custom"
app:key="@string/key_documentation_launcher_icon"
app:title="@string/text_documentation_launcher_icon"
app:itemKeys="@array/keys_documentation_launcher_icon"
app:itemValues="@array/values_documentation_launcher_icon"
app:itemDefaultKey="@string/key_documentation_launcher_icon_show"
app:longClickPrompt="@string/description_documentation_launcher_icon_preference" />
app:key="@string/key_launcher_shortcuts"
app:title="@string/text_launcher_shortcuts"
app:summary="@string/summary_text_launcher_shortcuts"
app:longClickPrompt="@string/description_launcher_shortcuts" />
<org.autojs.autojs.ui.settings.WorkingDirectoryPreference
app:layout="@layout/preference_custom"
@@ -133,11 +131,11 @@
app:summary="@string/summary_use_volume_key_to_stop_running_scripts" />
<org.autojs.autojs.theme.preference.ThemeColorSwitchPreference
app:layout="@layout/preference_custom"
app:key="@string/key_guard_mode"
app:defaultValue="@bool/pref_guard_mode"
app:title="@string/text_guard_mode"
app:summary="@string/summary_guard_mode"
app:layout="@layout/preference_custom" />
app:summary="@string/summary_guard_mode" />
</org.autojs.autojs.theme.preference.ThemeColorPreferenceCategory>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="zh" /> <!-- Chinese (prefer Simplified, China) -->
<locale android:name="zh-Hant-HK" /> <!-- Chinese (Traditional, Hong Kong) -->
<locale android:name="zh-Hant-TW" /> <!-- Chinese (Traditional, Taiwan) -->
<locale android:name="en" /> <!-- English (prefer United States) -->
<locale android:name="fr" /> <!-- French (prefer France) -->
<locale android:name="es" /> <!-- Spanish (prefer Spain) -->
<locale android:name="ja" /> <!-- Japanese (prefer Japan) -->
<locale android:name="ko" /> <!-- Korean (prefer South Korea) -->
<locale android:name="ru" /> <!-- Russian (prefer Russia) -->
<locale android:name="ar" /> <!-- Arabic (prefer Egypt) -->
</locale-config>

View File

@@ -2,7 +2,9 @@
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:configure="org.autojs.autojs.external.widget.ScriptWidgetSettingsActivity"
android:initialLayout="@layout/widget_script_shortcut"
android:minHeight="40dp"
android:minWidth="40dp"
android:minHeight="24dp"
android:minWidth="24dp"
android:minResizeWidth="24dp"
android:minResizeHeight="24dp"
android:previewImage="@drawable/ic_node_js_black"
android:resizeMode="none" />
android:resizeMode="horizontal|vertical" />