Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66d4fc2498 |
55
README.md
55
README.md
@@ -29,7 +29,7 @@
|
||||
|
||||
[Auto.js](https://github.com/hyb1996/Auto.js) 是一款 Android 平台支持 [无障碍服务](https://developer.android.com/guide/topics/ui/accessibility/service?hl=zh-cn) 的 JavaScript 自动化工具软件.
|
||||
|
||||
Auto.js 由 [hyb1996](https://github.com/hyb1996) 于 `2017/01/27` 初次发布, 于 `2020/03/13` 停止维护, 最终版本名称为 `4.1.1 alpha2`.
|
||||
Auto.js 由 [hyb1996](https://github.com/hyb1996) 于 `2017/01/27` 初次发布, 于 `2020/03/13` 停止维护, 最终版本名称为 `4.1.1 Alpha2`, 构建版本号为 `461`.
|
||||
|
||||
AutoJs6 在 Auto.js 最终项目的基础上, 于 `2021/12/01` 进行二次开发, 继续保持开源免费.
|
||||
|
||||
@@ -131,6 +131,25 @@ AutoJs6 在 Auto.js 最终项目的基础上, 于 `2021/12/01` 进行二次开
|
||||
|
||||
[comment]: <> "Version history only shows last 3 versions"
|
||||
|
||||
# v6.4.2
|
||||
|
||||
###### 2023/11/15
|
||||
|
||||
* `新增` dialogs.build() 选项参数属性 inputSingleLine
|
||||
* `新增` console.setTouchable 方法 _[`issue #122`](http://issues.autojs6.com/122)_
|
||||
* `修复` ocr 模块部分方法无法识别区域参数的问题 _[`issue #162`](http://issues.autojs6.com/162)_ _[`issue #175`](http://issues.autojs6.com/175)_
|
||||
* `修复` Android 7.x 发现新版本时无法获取版本详情的问题
|
||||
* `修复` Android 14 申请截图权限时导致应用崩溃的问题
|
||||
* `修复` 主页抽屉快速切换 "浮动按钮" 开关时可能导致应用崩溃的问题
|
||||
* `修复` 使用菜单关闭浮动按钮时重启应用后浮动按钮可能依然显示的问题
|
||||
* `修复` 安卓 13 及以上系统设置页面选择并切换 AutoJs6 语言后无法生效的问题
|
||||
* `修复` 构建工具初次构建时无法自动完成 OpenCV 资源部署的问题
|
||||
* `优化` 原生化 bridges 模块以提升脚本执行效率 (Ref to [aiselp](https://github.com/aiselp/AutoX/commit/7c41af6d2b9b36d00440a9c8b7e971d025f98327))
|
||||
* `优化` 重构无障碍服务相关代码以增强无障碍服务的功能稳定性 (实验性) _[`issue #167`](http://issues.autojs6.com/167)_
|
||||
* `优化` UiObject 和 UiObjectCollection 的打印输出格式
|
||||
* `优化` 构建工具在构建环境 Gradle JDK 版本不满足要求时作出升级提示
|
||||
* `优化` 部分依赖或本地库版本调整 _[`CHANGELOG.md`](http://project.autojs6.com/blob/master/app/src/main/assets/doc/CHANGELOG.md#v642)_
|
||||
|
||||
# v6.4.1
|
||||
|
||||
###### 2023/11/02
|
||||
@@ -192,27 +211,6 @@ AutoJs6 在 Auto.js 最终项目的基础上, 于 `2021/12/01` 进行二次开
|
||||
* `优化` 适配 VSCode 插件 1.0.7
|
||||
* `优化` 部分依赖或本地库版本调整 _[`CHANGELOG.md`](http://project.autojs6.com/blob/master/app/src/main/assets/doc/CHANGELOG.md#v640)_
|
||||
|
||||
# v6.3.3
|
||||
|
||||
###### 2023/07/21
|
||||
|
||||
* `新增` 代码编辑器的代码注释功能 (by [抠脚本人](https://github.com/little-alei)) _[`pr #98`](http://pr.autojs6.com/98)_
|
||||
* `新增` auto.stateListener 用于无障碍服务连接状态监听 (by [抠脚本人](https://github.com/little-alei)) _[`pr #98`](http://pr.autojs6.com/98)_
|
||||
* `新增` UiObject 类型添加 nextSibling / lastChild / offset 等方法 (参阅 项目文档 > [控件节点](https://docs.autojs6.com/#/uiObjectType))
|
||||
* `修复` VSCode 插件在脚本字符总长度超过四位十进制数时无法解析数据的问题 _[`issue #91`](http://issues.autojs6.com/91)_ _[`issue #93`](http://issues.autojs6.com/93)_ _[`issue #100`](http://issues.autojs6.com/100)_ _[`issue #109`](http://issues.autojs6.com/109)_
|
||||
* `修复` VSCode 插件无法正常保存文件的问题 _[`issue #92`](http://issues.autojs6.com/91)_ _[`issue #94`](http://issues.autojs6.com/93)_
|
||||
* `修复` 浮动按钮菜单项 "管理无障碍服务" 点击后可能未发生页面跳转的问题
|
||||
* `修复` runtime.requestPermissions 方法丢失的问题 _[`issue #104`](http://issues.autojs6.com/104)_
|
||||
* `修复` events.emitter 不支持 MainThreadProxy 参数的问题 _[`issue #103`](http://issues.autojs6.com/103)_
|
||||
* `修复` 在 _[`pr #78`](http://pr.autojs6.com/78)_ 中存在的代码编辑器无法格式化代码的问题
|
||||
* `修复` 使用 JavaAdapter 时导致 ClassLoader 调用栈溢出的问题 _[`issue #99`](http://issues.autojs6.com/99)_ _[`issue #110`](http://issues.autojs6.com/110)_
|
||||
* `优化` 调整模块作用域 (by [aiselp](https://github.com/aiselp)) _[`pr #75`](http://pr.autojs6.com/75)_ _[`pr #78`](http://pr.autojs6.com/78)_
|
||||
* `优化` 移除发行版本应用启动时的签名校验 (by [LZX284](https://github.com/LZX284)) _[`pr #81`](http://pr.autojs6.com/81)_
|
||||
* `优化` 在 _[`pr #98`](http://pr.autojs6.com/98)_ 基础上的编辑器代码注释功能的行为, 样式及光标位置处理
|
||||
* `优化` 在 _[`pr #98`](http://pr.autojs6.com/98)_ 基础上添加代码注释菜单项
|
||||
* `优化` 适配 VSCode 插件 1.0.6
|
||||
* `优化` UiObject#parent 方法增加级数参数支持 (参阅 项目文档 > [控件节点](https://docs.autojs6.com/#/uiObjectType))
|
||||
|
||||
##### 更多版本历史可参阅
|
||||
|
||||
* [CHANGELOG.md](http://changelog.autojs6.com)
|
||||
@@ -229,12 +227,12 @@ AutoJs6 在 Auto.js 最终项目的基础上, 于 `2021/12/01` 进行二次开
|
||||
|
||||
#### Android Studio 准备
|
||||
|
||||
下载 `Android Studio Hedgehog | 2023.1.1 RC 2` 版本 (按需选择其一):
|
||||
下载 `Android Studio Hedgehog | 2023.1.1 RC 3` 版本 (按需选择其一):
|
||||
|
||||
- [android-studio-2023.1.1.24-windows.exe](https://redirector.gvt1.com/edgedl/android/studio/install/2023.1.1.24/android-studio-2023.1.1.24-windows.exe) (1.1 GB)
|
||||
- [android-studio-2023.1.1.24-windows.zip](https://redirector.gvt1.com/edgedl/android/studio/ide-zips/2023.1.1.24/android-studio-2023.1.1.24-windows.zip) (1.1 GB)
|
||||
- [android-studio-2023.1.1.25-windows.exe](https://redirector.gvt1.com/edgedl/android/studio/install/2023.1.1.25/android-studio-2023.1.1.25-windows.exe) (1.1 GB)
|
||||
- [android-studio-2023.1.1.25-windows.zip](https://redirector.gvt1.com/edgedl/android/studio/ide-zips/2023.1.1.25/android-studio-2023.1.1.25-windows.zip) (1.1 GB)
|
||||
|
||||
> 注: 上述版本发布时间为 2023 年 10 月 30 日. 如需下载其他版本, 或上述链接已失效, 可访问 [Android Studio 发行版本归档](https://developer.android.com/studio/archive?hl=en) 页面.
|
||||
> 注: 上述版本发布时间为 2023 年 11 月 9 日. 如需下载其他版本, 或上述链接已失效, 可访问 [Android Studio 发行版本归档](https://developer.android.com/studio/archive?hl=en) 页面.
|
||||
|
||||
安装或解压上述文件, 运行 Android Studio 软件 (如 `"D:\android-studio\bin\studio64.exe"`).
|
||||
|
||||
@@ -401,11 +399,12 @@ Gradle
|
||||
- Update badges like [ android studio / rhino / ... ]
|
||||
- Update android studio download links and version names
|
||||
- Remove the part like [ alpha / beta / ... ] of VERSION_NAME in version.properties
|
||||
- Update dependencies information for Android Gradle Plugin in the top-level build.gradle.kts
|
||||
- Update dependencies TypeScript declarations.
|
||||
- Update dependencies TypeScript declarations if needed.
|
||||
- Re-generate documentation by running the python script
|
||||
- Check the two-way versions for AutoJs6 and VSCode ext, then publish the ext to Microsoft
|
||||
- Run Gradle task "app:assembleInrtRelease"
|
||||
- Build APK to determine the final VERSION_BUILD field
|
||||
- Run Gradle task "app:appendDigestToReleasedFiles"
|
||||
- Commit and push to GitHub
|
||||
- Publish the latest release with signed APKs
|
||||
)
|
||||
|
||||
@@ -178,7 +178,7 @@ dependencies /* AppCompat */ {
|
||||
// implementation("androidx.appcompat:appcompat") {
|
||||
// version {
|
||||
// strictly("1.4.2")
|
||||
// because("version 1.5.0 duplicates some classes")
|
||||
// because("Version 1.5.0 duplicates some classes")
|
||||
// }
|
||||
// }
|
||||
//
|
||||
@@ -200,7 +200,7 @@ dependencies /* Material Dialogs */ {
|
||||
val configuration: (ExternalModuleDependency).() -> Unit = {
|
||||
version {
|
||||
prefer("0.9.6.0")
|
||||
because("not ready to update to version 3.3.0 yet")
|
||||
because("Not ready to update to version 3.3.0 yet")
|
||||
}
|
||||
}
|
||||
configuration.let {
|
||||
@@ -234,18 +234,24 @@ dependencies /* View */ {
|
||||
dependencies /* GitHub API */ {
|
||||
implementation(files("$rootDir/libs/github-api-1.306.jar"))
|
||||
|
||||
implementation("commons-io:commons-io:2.14.0")
|
||||
implementation("commons-io:commons-io") {
|
||||
because("Compatibility for Android API Level < 26 (Android 8.0) [O]")
|
||||
version {
|
||||
strictly("2.8.0")
|
||||
because("Exception on newer versions: 'NoClassDefFoundError: org.apache.commons.io.IOUtils'")
|
||||
}
|
||||
}
|
||||
|
||||
implementation("com.fasterxml.jackson.core:jackson-databind") {
|
||||
because("compatibility for Android API Level < 26 (Android 8.0) [O]")
|
||||
version /* as of Oct 12, 2023 */ {
|
||||
strictly("2.14.3")
|
||||
because("Exception on 2.15.x: 'IllegalArgumentException: Unsupported class file major version 63'")
|
||||
because("Compatibility for Android API Level < 26 (Android 8.0) [O]")
|
||||
version {
|
||||
strictly("2.13.3")
|
||||
because("Exception on 2.14.x: 'No virtual method getParameterCount()I in class Ljava/lang/reflect/Method'")
|
||||
}
|
||||
}
|
||||
|
||||
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3") {
|
||||
because("compatibility of java.time.* for Android API Level < 26 (Android 8.0) [O]")
|
||||
because("Compatibility of java.time.* for Android API Level < 26 (Android 8.0) [O]")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -488,22 +494,13 @@ android {
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
mapOf(
|
||||
"resourcePackageName" to (this@defaultConfig.applicationId
|
||||
?: this@Build_gradle.applicationId),
|
||||
"resourcePackageName" to (this@defaultConfig.applicationId ?: this@Build_gradle.applicationId),
|
||||
"androidManifestFile" to ("$projectDir/src/main/AndroidManifest.xml")
|
||||
).let { arguments(it) }
|
||||
}
|
||||
}
|
||||
buildConfigField(
|
||||
"String",
|
||||
"VERSION_DATE",
|
||||
"\"${Utils.getDateString("MMM d, yyyy", "GMT+08:00")}\""
|
||||
)
|
||||
buildConfigField(
|
||||
"String",
|
||||
"VSCODE_EXT_REQUIRED_VERSION",
|
||||
"\"${versions.vscodeExtRequiredVersion}\""
|
||||
)
|
||||
buildConfigField("String", "VERSION_DATE", "\"${Utils.getDateString("MMM d, yyyy", "GMT+08:00")}\"")
|
||||
buildConfigField("String", "VSCODE_EXT_REQUIRED_VERSION", "\"${versions.vscodeExtRequiredVersion}\"")
|
||||
}
|
||||
|
||||
applicationVariants.all {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.telephony"
|
||||
android:required="false"/>
|
||||
android:required="false" />
|
||||
|
||||
<!--
|
||||
@Hint by SuperMonster003 on May 27, 2022.
|
||||
@@ -22,103 +22,103 @@
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="32"/>
|
||||
android:maxSdkVersion="32" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="29"/>
|
||||
android:maxSdkVersion="29" />
|
||||
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO"/>
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO"/>
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
||||
tools:ignore="ScopedStorage"/>
|
||||
tools:ignore="ScopedStorage" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS"
|
||||
android:maxSdkVersion="31"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
|
||||
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
||||
|
||||
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"/>
|
||||
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
|
||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
|
||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM"/>
|
||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||
|
||||
<uses-permission android:name="android.permission.VIBRATE"/>
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||||
|
||||
<uses-permission android:name="android.permission.REORDER_TASKS"/>
|
||||
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
||||
|
||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
||||
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
|
||||
<!-- To allow posting notifications on Android 13. -->
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION"
|
||||
tools:ignore="SystemPermissionTypo"/>
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
|
||||
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.DUMP"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.QUERY_ALL_PACKAGES"
|
||||
tools:ignore="QueryAllPackagesPermission"/>
|
||||
tools:ignore="QueryAllPackagesPermission" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.PACKAGE_USAGE_STATS"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_SETTINGS"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_SECURE_SETTINGS"
|
||||
tools:ignore="ProtectedPermissions"/>
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<!-- 非 AutoJs6 运行必需, 不会主动申请, 脚本可自行申请 -->
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
|
||||
<uses-permission android:name="com.termux.permission.RUN_COMMAND" />
|
||||
<uses-permission android:name="com.termux.permission.RUN_COMMAND" />
|
||||
|
||||
<!-- Dangerous permission witch should be treated carefully. -->
|
||||
|
||||
<!-- <uses-permission android:name="android.permission.READ_CONTACTS" />-->
|
||||
<!-- <uses-permission android:name="android.permission.WRITE_CONTACTS" />-->
|
||||
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
|
||||
<uses-permission android:name="android.permission.READ_SMS"/>
|
||||
<uses-permission android:name="android.permission.READ_SMS" />
|
||||
|
||||
<!-- Property "largeHeap" is not recommended to set to true. -->
|
||||
<!-- https://stackoverflow.com/questions/27396892/what-are-advantages-of-setting-largeheap-to-true -->
|
||||
@@ -137,9 +137,13 @@
|
||||
tools:ignore="DataExtractionRules"
|
||||
tools:targetApi="tiramisu">
|
||||
|
||||
<meta-data
|
||||
android:name="android.max_aspect"
|
||||
android:value="2.1" />
|
||||
|
||||
<meta-data
|
||||
android:name="CHANNEL"
|
||||
android:value="${CHANNEL}"/>
|
||||
android:value="${CHANNEL}" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.splash.SplashActivity"
|
||||
@@ -150,23 +154,22 @@
|
||||
tools:ignore="RedundantLabel">
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="${intentCategory}"/>
|
||||
<category android:name="${intentCategory}"/>
|
||||
<category android:name="${intentCategory}"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="${intentCategory}" />
|
||||
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.app.shortcuts"
|
||||
android:resource="@xml/app_shortcuts"/>
|
||||
android:resource="@xml/app_shortcuts" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.main.MainActivity"
|
||||
android:exported="true"
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@style/AppTheme.FullScreen"/>
|
||||
android:theme="@style/AppTheme.FullScreen" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.external.shortcut.ShortcutActivity"
|
||||
@@ -175,9 +178,9 @@
|
||||
android:theme="@android:style/Theme.NoDisplay">
|
||||
<intent-filter>
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
</intent-filter>
|
||||
</activity>
|
||||
@@ -189,7 +192,7 @@
|
||||
android:grantUriPermissions="true">
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
android:resource="@xml/provider_paths"/>
|
||||
android:resource="@xml/provider_paths" />
|
||||
</provider>
|
||||
|
||||
<activity
|
||||
@@ -198,85 +201,94 @@
|
||||
android:launchMode="standard"
|
||||
android:multiprocess="true"
|
||||
android:taskAffinity="org.autojs.autojs.edit"
|
||||
android:theme="@style/EditorTheme"/>
|
||||
android:theme="@style/EditorTheme" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.settings.AboutActivity"
|
||||
android:theme="@style/AppTheme.Settings"/>
|
||||
android:theme="@style/AppTheme.Settings" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.settings.PreferencesActivity"
|
||||
android:exported="true"
|
||||
android:theme="@style/AppTheme.Settings"/>
|
||||
android:label="@string/text_app_shortcut_settings_long_label"
|
||||
android:theme="@style/AppTheme.Settings" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.settings.DeveloperOptionsActivity"
|
||||
android:theme="@style/AppTheme.Settings"/>
|
||||
android:theme="@style/AppTheme.Settings" />
|
||||
|
||||
<activity android:name="org.autojs.autojs.ui.error.ErrorReportActivity"/>
|
||||
<activity android:name="org.autojs.autojs.ui.error.ErrorReportActivity" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.external.tasker.TaskerScriptEditActivity"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|locale"/>
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|locale" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.project.BuildActivity"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|locale"/>
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|locale" />
|
||||
|
||||
<activity android:name="org.autojs.autojs.ui.project.ProjectConfigActivity"/>
|
||||
<activity android:name="org.autojs.autojs.ui.project.ProjectConfigActivity" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.log.LogActivity"
|
||||
android:exported="true"/>
|
||||
android:exported="true"
|
||||
android:label="@string/text_app_shortcut_log_long_label"
|
||||
android:taskAffinity="org.autojs.autojs.ui.log.LogActivity"
|
||||
android:launchMode="singleTop" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.doc.DocumentationActivity"
|
||||
android:exported="true"
|
||||
android:label="@string/text_app_shortcut_docs_long_label"
|
||||
android:taskAffinity="org.autojs.autojs.ui.doc.DocumentationActivity"
|
||||
android:launchMode="singleTop"
|
||||
android:theme="@style/AppTheme.FullScreen">
|
||||
|
||||
<intent-filter>
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
||||
<activity android:name="org.autojs.autojs.ui.shortcut.AppsIconSelectActivity"/>
|
||||
<activity android:name="org.autojs.autojs.ui.shortcut.AppsIconSelectActivity" />
|
||||
|
||||
<activity android:name="org.autojs.autojs.ui.timing.TimedTaskSettingActivity"/>
|
||||
<activity android:name="org.autojs.autojs.ui.timing.TimedTaskSettingActivity" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.ui.shortcut.ShortcutCreateActivity"
|
||||
android:theme="@style/AppTheme.Transparent"/>
|
||||
android:theme="@style/AppTheme.Transparent" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.external.widget.ScriptWidgetSettingsActivity"
|
||||
android:exported="false">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.CREATE_SHORTCUT"/>
|
||||
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
||||
<service android:name="org.autojs.autojs.ui.enhancedfloaty.FloatyService"/>
|
||||
<service android:name="org.autojs.autojs.ui.enhancedfloaty.FloatyService" />
|
||||
|
||||
<service android:name="org.autojs.autojs.external.foreground.MainActivityForegroundService"/>
|
||||
<service
|
||||
android:name="org.autojs.autojs.external.foreground.MainActivityForegroundService"
|
||||
android:foregroundServiceType="systemExempted" />
|
||||
|
||||
<service android:name="org.autojs.autojs.external.ScriptExecutionIntentService"/>
|
||||
<service android:name="org.autojs.autojs.external.ScriptExecutionIntentService" />
|
||||
|
||||
<activity android:name="org.autojs.autojs.external.tasker.TaskPrefEditActivity"/>
|
||||
<activity android:name="org.autojs.autojs.external.tasker.TaskPrefEditActivity" />
|
||||
|
||||
<service
|
||||
android:name="org.autojs.autojs.external.tile.LayoutBoundsTile"
|
||||
@@ -287,10 +299,10 @@
|
||||
|
||||
<meta-data
|
||||
android:name="android.service.quicksettings.ACTIVE_TILE"
|
||||
android:value="true"/>
|
||||
android:value="true" />
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.service.quicksettings.action.QS_TILE"/>
|
||||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
||||
</intent-filter>
|
||||
|
||||
</service>
|
||||
@@ -304,10 +316,10 @@
|
||||
|
||||
<meta-data
|
||||
android:name="android.service.quicksettings.ACTIVE_TILE"
|
||||
android:value="true"/>
|
||||
android:value="true" />
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.service.quicksettings.action.QS_TILE"/>
|
||||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
||||
</intent-filter>
|
||||
|
||||
</service>
|
||||
@@ -321,7 +333,7 @@
|
||||
tools:ignore="ExportedActivity">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING"/>
|
||||
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
|
||||
</intent-filter>
|
||||
|
||||
</activity-alias>
|
||||
@@ -332,71 +344,71 @@
|
||||
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||
|
||||
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
|
||||
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
||||
|
||||
<action android:name="android.intent.action.TIME_SET"/>
|
||||
<action android:name="android.intent.action.TIME_SET" />
|
||||
|
||||
<action android:name="android.intent.action.TIMEZONE_CHANGED"/>
|
||||
<action android:name="android.intent.action.TIMEZONE_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.UID_REMOVED"/>
|
||||
<action android:name="android.intent.action.UID_REMOVED" />
|
||||
|
||||
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
|
||||
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
||||
|
||||
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
|
||||
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
||||
|
||||
<action android:name="android.intent.action.ACTION_SHUTDOWN"/>
|
||||
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
||||
|
||||
<action android:name="android.intent.action.ACTION_BATTERY_CHANGED"/>
|
||||
<action android:name="android.intent.action.ACTION_BATTERY_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.DATE_CHANGED"/>
|
||||
<action android:name="android.intent.action.DATE_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.DREAMING_STARTED"/>
|
||||
<action android:name="android.intent.action.DREAMING_STARTED" />
|
||||
|
||||
<action android:name="android.intent.action.DREAMING_STOPPED"/>
|
||||
<action android:name="android.intent.action.DREAMING_STOPPED" />
|
||||
|
||||
<action android:name="android.intent.action.HEADSET_PLUG"/>
|
||||
<action android:name="android.intent.action.HEADSET_PLUG" />
|
||||
|
||||
<action android:name="android.intent.action.INPUT_METHOD_CHANGED"/>
|
||||
<action android:name="android.intent.action.INPUT_METHOD_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.LOCALE_CHANGED"/>
|
||||
<action android:name="android.intent.action.LOCALE_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.MEDIA_BUTTON"/>
|
||||
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
||||
|
||||
<action android:name="android.intent.action.MEDIA_CHECKING"/>
|
||||
<action android:name="android.intent.action.MEDIA_CHECKING" />
|
||||
|
||||
<action android:name="android.intent.action.MEDIA_MOUNTED"/>
|
||||
<action android:name="android.intent.action.MEDIA_MOUNTED" />
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_FIRST_LAUNCH"/>
|
||||
<action android:name="android.intent.action.PACKAGE_FIRST_LAUNCH" />
|
||||
|
||||
<action android:name="android.intent.action.PROVIDER_CHANGED"/>
|
||||
<action android:name="android.intent.action.PROVIDER_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.WALLPAPER_CHANGED"/>
|
||||
<action android:name="android.intent.action.WALLPAPER_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.USER_UNLOCKED"/>
|
||||
<action android:name="android.intent.action.USER_UNLOCKED" />
|
||||
|
||||
<action android:name="android.intent.action.USER_PRESENT"/>
|
||||
<action android:name="android.intent.action.USER_PRESENT" />
|
||||
|
||||
<action
|
||||
android:name="android.net.conn.CONNECTIVITY_CHANGE"
|
||||
tools:ignore="BatteryLife"/>
|
||||
tools:ignore="BatteryLife" />
|
||||
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_ADDED"/>
|
||||
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_CHANGED"/>
|
||||
<action android:name="android.intent.action.PACKAGE_CHANGED" />
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_DATA_CLEARED"/>
|
||||
<action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
|
||||
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
||||
|
||||
<action android:name="android.intent.action.PACKAGE_RESTARTED"/>
|
||||
<action android:name="android.intent.action.PACKAGE_RESTARTED" />
|
||||
|
||||
<data android:scheme="package"/>
|
||||
<data android:scheme="package" />
|
||||
|
||||
</intent-filter>
|
||||
|
||||
@@ -411,7 +423,7 @@
|
||||
<!-- this Intent filter allows the plug-in to discovered by the host. -->
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING"/>
|
||||
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
|
||||
</intent-filter>
|
||||
|
||||
</receiver>
|
||||
@@ -423,21 +435,21 @@
|
||||
android:label="@string/text_edit_script">
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<action android:name="android.intent.action.EDIT"/>
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="file"/>
|
||||
<data android:scheme="file" />
|
||||
|
||||
<data android:scheme="content"/>
|
||||
<data android:scheme="content" />
|
||||
|
||||
<data android:mimeType="application/x-javascript"/>
|
||||
<data android:mimeType="application/x-javascript" />
|
||||
|
||||
<data android:mimeType="text/plain"/>
|
||||
<data android:mimeType="text/plain" />
|
||||
|
||||
</intent-filter>
|
||||
</activity>
|
||||
@@ -451,21 +463,21 @@
|
||||
android:theme="@android:style/Theme.NoDisplay">
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<action android:name="android.intent.action.EDIT"/>
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="file"/>
|
||||
<data android:scheme="file" />
|
||||
|
||||
<data android:scheme="content"/>
|
||||
<data android:scheme="content" />
|
||||
|
||||
<data android:mimeType="application/x-javascript"/>
|
||||
<data android:mimeType="application/x-javascript" />
|
||||
|
||||
<data android:mimeType="text/plain"/>
|
||||
<data android:mimeType="text/plain" />
|
||||
|
||||
</intent-filter>
|
||||
</activity>
|
||||
@@ -478,21 +490,21 @@
|
||||
android:theme="@style/AppTheme.Transparent">
|
||||
<intent-filter>
|
||||
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<action android:name="android.intent.action.EDIT"/>
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="file"/>
|
||||
<data android:scheme="file" />
|
||||
|
||||
<data android:scheme="content"/>
|
||||
<data android:scheme="content" />
|
||||
|
||||
<data android:mimeType="application/x-javascript"/>
|
||||
<data android:mimeType="application/x-javascript" />
|
||||
|
||||
<data android:mimeType="text/plain"/>
|
||||
<data android:mimeType="text/plain" />
|
||||
|
||||
</intent-filter>
|
||||
</activity>
|
||||
@@ -503,7 +515,7 @@
|
||||
android:label="@string/app_name"
|
||||
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
|
||||
<intent-filter>
|
||||
<action android:name="android.service.notification.NotificationListenerService"/>
|
||||
<action android:name="android.service.notification.NotificationListenerService" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
@@ -512,12 +524,12 @@
|
||||
android:exported="false">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.appwidget.provider"
|
||||
android:resource="@xml/script_widget_config"/>
|
||||
android:resource="@xml/script_widget_config" />
|
||||
|
||||
</receiver>
|
||||
|
||||
@@ -525,7 +537,7 @@
|
||||
android:name="org.autojs.autojs.timing.TaskReceiver"
|
||||
android:exported="false">
|
||||
<intent-filter>
|
||||
<action android:name="org.autojs.autojs.action.task"/>
|
||||
<action android:name="org.autojs.autojs.action.task" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
@@ -541,24 +553,24 @@
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.theme.app.ColorSelectActivity"
|
||||
android:theme="@style/MtAppTheme.FullScreen"/>
|
||||
android:theme="@style/MtAppTheme.FullScreen" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.execution.ScriptExecuteActivity"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|locale"
|
||||
android:theme="@style/ScriptTheme"/>
|
||||
android:theme="@style/ScriptTheme" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.core.permission.PermissionRequestActivity"
|
||||
android:excludeFromRecents="true"
|
||||
android:taskAffinity="org.autojs.autojs.core.image.capture.ScreenCaptureRequestActivity"
|
||||
android:theme="@style/ScriptTheme.Transparent"/>
|
||||
android:theme="@style/ScriptTheme.Transparent" />
|
||||
|
||||
<activity
|
||||
android:name="org.autojs.autojs.core.image.capture.ScreenCaptureRequestActivity"
|
||||
android:excludeFromRecents="true"
|
||||
android:taskAffinity="org.autojs.autojs.core.image.capture.ScreenCaptureRequestActivity"
|
||||
android:theme="@style/ScriptTheme.Transparent"/>
|
||||
android:theme="@style/ScriptTheme.Transparent" />
|
||||
|
||||
<service
|
||||
android:name="org.autojs.autojs.core.accessibility.AccessibilityService"
|
||||
@@ -566,28 +578,20 @@
|
||||
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.accessibilityservice.AccessibilityService"/>
|
||||
<action android:name="android.accessibilityservice.AccessibilityService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.accessibilityservice"
|
||||
android:resource="@xml/accessibility_service_config"/>
|
||||
android:resource="@xml/accessibility_service_config" />
|
||||
|
||||
</service>
|
||||
|
||||
<service
|
||||
android:name="org.autojs.autojs.core.image.capture.ScreenCapturerForegroundService"
|
||||
android:enabled="true"
|
||||
android:foregroundServiceType="mediaProjection"/>
|
||||
|
||||
<!-- This provider is required by Shizuku, remove this if your app only supports Sui -->
|
||||
<provider
|
||||
android:name="rikka.shizuku.ShizukuProvider"
|
||||
android:authorities="org.autojs.autojs6.shizuku"
|
||||
android:enabled="true"
|
||||
android:exported="true"
|
||||
android:multiprocess="false"
|
||||
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL"/>
|
||||
android:exported="false"
|
||||
android:foregroundServiceType="mediaProjection" />
|
||||
|
||||
<service
|
||||
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
||||
@@ -595,7 +599,7 @@
|
||||
android:exported="false">
|
||||
<meta-data
|
||||
android:name="autoStoreLocales"
|
||||
android:value="true"/>
|
||||
android:value="true" />
|
||||
</service>
|
||||
|
||||
<activity
|
||||
@@ -604,9 +608,9 @@
|
||||
android:theme="@style/AppTheme.Splash">
|
||||
<intent-filter tools:ignore="ExtraText">
|
||||
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="${intentCategoryInrt}"/>
|
||||
<category android:name="${intentCategoryInrt}" />
|
||||
|
||||
</intent-filter>
|
||||
</activity>
|
||||
@@ -615,15 +619,18 @@
|
||||
android:name="org.autojs.autojs.inrt.LogActivity"
|
||||
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
||||
|
||||
<activity android:name="org.autojs.autojs.inrt.SettingsActivity"/>
|
||||
<activity
|
||||
android:name="org.autojs.autojs.inrt.SettingsActivity"
|
||||
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
||||
|
||||
<!-- This provider is required by Shizuku, remove this if your app only supports Sui -->
|
||||
<provider
|
||||
android:name="rikka.shizuku.ShizukuProvider"
|
||||
android:authorities="org.autojs.autojs6.shizuku"
|
||||
android:enabled="true"
|
||||
android:exported="true"
|
||||
android:multiprocess="false"
|
||||
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL"/>
|
||||
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
@@ -4,6 +4,27 @@
|
||||
|
||||
******
|
||||
|
||||
# v6.4.2
|
||||
|
||||
###### 2023/11/15
|
||||
|
||||
* `新增` dialogs.build() 选项参数属性 inputSingleLine
|
||||
* `新增` console.setTouchable 方法 _[`issue #122`](http://issues.autojs6.com/122)_
|
||||
* `修复` ocr 模块部分方法无法识别区域参数的问题 _[`issue #162`](http://issues.autojs6.com/162)_ _[`issue #175`](http://issues.autojs6.com/175)_
|
||||
* `修复` Android 7.x 发现新版本时无法获取版本详情的问题
|
||||
* `修复` Android 14 申请截图权限时导致应用崩溃的问题
|
||||
* `修复` 主页抽屉快速切换 "浮动按钮" 开关时可能导致应用崩溃的问题
|
||||
* `修复` 使用菜单关闭浮动按钮时重启应用后浮动按钮可能依然显示的问题
|
||||
* `修复` 安卓 13 及以上系统设置页面选择并切换 AutoJs6 语言后无法生效的问题
|
||||
* `修复` 构建工具初次构建时无法自动完成 OpenCV 资源部署的问题
|
||||
* `优化` 原生化 bridges 模块以提升脚本执行效率 (Ref to [aiselp](https://github.com/aiselp/AutoX/commit/7c41af6d2b9b36d00440a9c8b7e971d025f98327))
|
||||
* `优化` 重构无障碍服务相关代码以增强无障碍服务的功能稳定性 (实验性) _[`issue #167`](http://issues.autojs6.com/167)_
|
||||
* `优化` UiObject 和 UiObjectCollection 的打印输出格式
|
||||
* `优化` 构建工具在构建环境 Gradle JDK 版本不满足要求时作出升级提示
|
||||
* `依赖` 升级 Gradle 版本 8.4 -> 8.5-rc-1
|
||||
* `依赖` 降级 Commons IO 版本 2.14.0 -> 2.8.0
|
||||
* `依赖` 降级 Jackson DataBind 版本 2.14.3 -> 2.13.3
|
||||
|
||||
# v6.4.1
|
||||
|
||||
###### 2023/11/02
|
||||
@@ -22,6 +43,7 @@
|
||||
* `优化` http 模块获取的响应对象可重复使用 body.string() 及 body.bytes() 方法
|
||||
* `优化` 增加 GitHub Actions 自动打包支持 (by [TonyJiangWJ](https://github.com/TonyJiangWJ)) _[`pr #158`](http://pr.autojs6.com/158)_
|
||||
* `优化` 构建工具自适应 Temurin 平台
|
||||
* `依赖` 升级 Gradle 版本 8.4-rc-3 -> 8.4
|
||||
* `依赖` 升级 Android dx 版本 1.11 -> 1.14
|
||||
|
||||
# v6.4.0
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>页面不存在 | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>页面不存在 | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="404" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>活动 (Activity) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>活动 (Activity) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="activity" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>综述 (Overview) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>综述 (Overview) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="all" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>AndroidBundle | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>AndroidBundle | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="androidBundleType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>AndroidRect | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>AndroidRect | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="androidRectType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>安卓 API 级别 (Android API Level) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>安卓 API 级别 (Android API Level) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="apiLevel" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>通用应用 (App) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>通用应用 (App) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="app" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>应用枚举类 (App) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>应用枚举类 (App) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="appType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Arrayx (Array 扩展) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Arrayx (Array 扩展) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="arrayx" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>AutoJs6 本体应用 | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>AutoJs6 本体应用 | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="autojs" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>自动化 (Automator) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>自动化 (Automator) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="automator" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>条码 (Barcode) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>条码 (Barcode) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="barcode" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Base64 | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Base64 | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="base64" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>画布 (Canvas) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>画布 (Canvas) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="canvas" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>文档更新日志 (Changelog) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>文档更新日志 (Changelog) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="changelog" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>颜色 (Color) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>颜色 (Color) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="color" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>颜色列表 (Color Table) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>颜色列表 (Color Table) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="colorTable" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Color (颜色类) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Color (颜色类) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="colorType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>控制台 (Console) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>控制台 (Console) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="console" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ConsoleBuildOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>ConsoleBuildOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="consoleBuildOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>上下文 (Context) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>上下文 (Context) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="context" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>协程 (Continuation) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>协程 (Continuation) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="continuation" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>[AutoJs6](http://project.autojs6.com) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>[AutoJs6](http://project.autojs6.com) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="coverpage" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>密文 (Crypto) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>密文 (Crypto) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="crypto" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CryptoCipherOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>CryptoCipherOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="cryptoCipherOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CryptoKeyPair | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>CryptoKeyPair | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="cryptoKeyPairType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CryptoKey | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>CryptoKey | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="cryptoKeyType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>数据类型 (Data Types) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>数据类型 (Data Types) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="dataTypes" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>设备 (Device) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>设备 (Device) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="device" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>对话框 (Dialogs) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>对话框 (Dialogs) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="dialogs" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>关于文档 (About) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>关于文档 (About) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="documentation" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>E4X | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>E4X | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="e4x" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>引擎 (Engines) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>引擎 (Engines) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="engines" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>事件发射器 (EventEmitter) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>事件发射器 (EventEmitter) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="eventEmitterType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>事件监听 (Events) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>事件监听 (Events) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="events" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>异常 (Exceptions) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>异常 (Exceptions) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="exceptions" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>文件 (Files) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>文件 (Files) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="files" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>悬浮窗 (Floaty) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>悬浮窗 (Floaty) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="floaty" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>全局对象 (Global) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>全局对象 (Global) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="global" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>术语 (Glossaries) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>术语 (Glossaries) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="glossaries" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HTTP | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HTTP | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="http" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HTTP Header (HTTP 标头) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HTTP Header (HTTP 标头) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpHeaderGlossary" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HttpRequestBuilderOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HttpRequestBuilderOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpRequestBuilderOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HttpRequestHeaders | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HttpRequestHeaders | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpRequestHeadersType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HTTP Request Methods (HTTP 请求方法) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HTTP Request Methods (HTTP 请求方法) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpRequestMethodsGlossary" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HttpResponseBodyType | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HttpResponseBodyType | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpResponseBodyType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HttpResponseHeaders | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HttpResponseHeaders | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpResponseHeadersType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>HttpResponse | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>HttpResponse | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="httpResponseType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>国际化 (Internationalization) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>国际化 (Internationalization) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="i18n" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>图像 (Images) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>图像 (Images) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="image" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>包装图像类 (ImageWrapper) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>包装图像类 (ImageWrapper) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="imageWrapperType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Index | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Index | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="toc" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>InjectableWebClient | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>InjectableWebClient | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="injectableWebClientType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>InjectableWebView | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>InjectableWebView | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="injectableWebViewType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>意图 (Intent) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>意图 (Intent) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="intentType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>按键 (Keys) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>按键 (Keys) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="keys" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>AutoJs6 使用手册 (Manual) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>AutoJs6 使用手册 (Manual) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="manual" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Mathx (Math 扩展) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Mathx (Math 扩展) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="mathx" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>多媒体 (Media) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>多媒体 (Media) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="media" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>MIME Type (MIME 类型) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>MIME Type (MIME 类型) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="mimeTypeGlossary" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>模块 (Module) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>模块 (Module) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="modules" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>消息通知 (Notice) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>消息通知 (Notice) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="notice" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>NoticeBuilder | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>NoticeBuilder | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="noticeBuilderType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>NoticeChannelOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>NoticeChannelOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="noticeChannelOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>NoticeOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>NoticeOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="noticeOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>NoticePresetConfiguration | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>NoticePresetConfiguration | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="noticePresetConfigurationType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Notification Channel (通知渠道) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Notification Channel (通知渠道) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="notificationChannelGlossary" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Numberx (Number 扩展) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Numberx (Number 扩展) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="numberx" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>光学字符识别 (OCR) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>光学字符识别 (OCR) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="ocr" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>OcrOptions | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>OcrOptions | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="ocrOptionsType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Okhttp3HttpUrlType | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Okhttp3HttpUrlType | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="okhttp3HttpUrlType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Okhttp3Request | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Okhttp3Request | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="okhttp3RequestType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>全能类型 (Omnipotent Types) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>全能类型 (Omnipotent Types) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="omniTypes" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>OpencvPoint | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>OpencvPoint | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="opencvPointType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>OpencvRect | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>OpencvRect | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="opencvRectType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>OpencvSize | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>OpencvSize | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="opencvSizeType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>综述 (Overview) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>综述 (Overview) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="overview" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>插件 (Plugins) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>插件 (Plugins) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="plugins" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>代码填泥 (Polyfill) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>代码填泥 (Polyfill) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="polyfill" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>文档部署进度 (Progress) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>文档部署进度 (Progress) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="progress" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>疑难解答 (Q & A) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>疑难解答 (Q & A) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="qa" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>二维码 (QR Code) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>二维码 (QR Code) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="qrcode" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>记录器 (Recorder) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>记录器 (Recorder) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="recorder" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>运行时 (Runtime) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>运行时 (Runtime) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="runtime" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>标准化 (Standardization) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>标准化 (Standardization) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="s13n" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>脚本化 Java | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>脚本化 Java | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="scriptingJava" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>传感器 (Sensors) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>传感器 (Sensors) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="sensors" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Shell | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Shell | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="shell" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Shizuku | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Shizuku | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="shizuku" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Index | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Index | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="sidebar" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Storage (存储类) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>Storage (存储类) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="storageType" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>存储 (Storages) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>存储 (Storages) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="storages" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>任务 (Tasks) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>任务 (Tasks) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="tasks" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>线程 (Threads) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>线程 (Threads) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="threads" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>定时器 (Timers) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>定时器 (Timers) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="timers" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>消息浮动框 (Toast) | AutoJs6 文档 - 6.4.1</title>
|
||||
<title>消息浮动框 (Toast) | AutoJs6 文档 - 6.4.2</title>
|
||||
<link rel="stylesheet" href="assets/fonts.css">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="assets/sh.css">
|
||||
@@ -160,7 +160,7 @@
|
||||
|
||||
<div id="column1" data-id="toast" class="interior">
|
||||
<header>
|
||||
<h1>AutoJs6 文档 - 6.4.1</h1>
|
||||
<h1>AutoJs6 文档 - 6.4.2</h1>
|
||||
<div id="gtoc">
|
||||
<p class="index">
|
||||
<a href="index.html" name="toc">索引</a> |
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user