6.7.0 - Alpha12 - 插件中心 M1 - 插件中心列表渲染支持本地发现与索引读取; 启动器快捷方式添加 "插件" 选项

This commit is contained in:
SuperMonster003
2025-11-28 14:38:36 +08:00
parent a26ecba492
commit 1fcfd7233f
55 changed files with 1379 additions and 173 deletions

View File

@@ -24,6 +24,7 @@
<color name="day_night_alpha_70">#B3212121</color>
<color name="day_night_alpha_60">#9A212121</color>
<color name="day_night_alpha_50">#80212121</color>
<color name="day_night_alpha_40">#66212121</color>
<color name="day_night_alpha_30">#4D212121</color>
<color name="day_night_alpha_20">#33212121</color>
<color name="night_day">@color/night</color>
@@ -35,7 +36,11 @@
<color name="text_color_primary">@color/day_night</color>
<color name="text_color_primary_full">@color/day_night_full</color>
<color name="text_color_primary_alpha_70">@color/day_night_alpha_70</color>
<color name="text_color_secondly">#9DA0A2</color>
<color name="text_color_primary_alpha_50">@color/day_night_alpha_50</color>
<color name="text_color_primary_alpha_40">@color/day_night_alpha_40</color>
<color name="text_color_primary_alpha_30">@color/day_night_alpha_30</color>
<color name="text_color_primary_alpha_20">@color/day_night_alpha_20</color>
<color name="text_color_secondary">#9DA0A2</color>
<color name="black_alpha_40">#66000000</color>
<color name="black_alpha_44">#70000000</color>
@@ -129,6 +134,7 @@
<color name="github_avatar_border">#261B1F24</color>
<color name="github_color_fg_default">#24292F</color>
<color name="github_color_fg_muted">#57606A</color>
<color name="plugin_center_item_icon_border">#261B1F24</color>
<color name="tint_1st_developer_identifier">#2B7A85</color>
<color name="tint_2nd_developer_identifier">#CC7A34</color>

View File

@@ -4,6 +4,8 @@
<dimen name="about_item_avatar_side_length_compat">42dp</dimen>
<dimen name="about_item_avatar_side_length_land">60dp</dimen>
<dimen name="about_item_avatar_side_length_land_compact">54dp</dimen>
<dimen name="plugin_center_item_side_length">64dp</dimen>
<dimen name="plugin_center_item_icon_border_width">1dp</dimen>
<dimen name="content_inset">16dp</dimen>
<dimen name="divider_drawer_menu_group">6dp</dimen>
<dimen name="fab_margin">16dp</dimen>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_app_shortcut_plugin_center_adaptive_background">#68AA1C</color>
</resources>

View File

@@ -54,6 +54,7 @@
<string name="format_dialog_progress_number_format_mega_bytes" translatable="false">%.2fMB/%.2fMB</string>
<string name="id_launcher_shortcut_docs" translatable="false">shortcut_$_docs</string>
<string name="id_launcher_shortcut_log" translatable="false">shortcut_$_log</string>
<string name="id_launcher_shortcut_plugin_center" translatable="false">shortcut_$_plugin_center</string>
<string name="id_launcher_shortcut_settings" translatable="false">shortcut_$_settings</string>
<string name="key_a11y_service" translatable="false">key_$_a11y_service</string>
<string name="key_about_app_and_developer" translatable="false">key_$_about_app_and_developer</string>
@@ -1328,5 +1329,14 @@
<string name="text_write_secure_settings">Write security settings</string>
<string name="text_write_secure_settings_description">Secure system settings, containing system preferences that applications can read but are not allowed to write.\nThese are for preferences that the user must explicitly modify through the UI of a system app.\nWith secure system settings permission, normal applications can directly modify the secure settings (such as accessibility service).</string>
<string name="text_write_system_settings">Write system settings</string>
<string name="text_update">Update</string>
<string name="text_plugin_center">Plugin center</string>
<string name="text_plugins">Plugins</string>
<string name="text_updatable">Updatable</string>
<string name="text_uninstall">Uninstall</string>
<string name="text_app_shortcut_plugin_center_long_label">AutoJs6 Plugin Center</string>
<string name="text_app_shortcut_plugin_center_short_label">Plugins</string>
<string name="text_click_icon_to_add_launcher_shortcut">Click icon to add launcher shortcut</string>
<string name="text_click_other_areas_to_exit_selection">Click other areas to exit selection</string>
</resources>

View File

@@ -24,7 +24,7 @@
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
<item name="android:itemBackground">@color/item_background</item>
<item name="android:textColorPrimary">@color/text_color_primary</item>
<item name="android:textColorSecondary">@color/text_color_secondly</item>
<item name="android:textColorSecondary">@color/text_color_secondary</item>
<item name="android:windowBackground">@color/window_background</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="colorAccent">@color/colorAccent</item>