Skip to content

Commit

Permalink
6.5.0 - Fix - 修复 VSCode 插件保存项目异常
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMonster003 committed Dec 2, 2023
1 parent 1761650 commit 04277ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/org/autojs/autojs/io/Zip.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ object Zip {
var zis: ZipInputStream? = null
try {
zis = ZipInputStream(stream)
var entry: ZipEntry
var entry: ZipEntry?
while (zis.nextEntry.also { entry = it } != null) {
val file = File(dir, entry.name)
if (entry.isDirectory) {
val file = File(dir, entry!!.name)
if (entry!!.isDirectory) {
file.mkdirs()
} else {
ensureDir(file.path)
Expand Down
6 changes: 3 additions & 3 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Sat Dec 02 13:50:55 CST 2023
BUILD_TIME=1701496255635
#Sat Dec 02 18:41:43 CST 2023
BUILD_TIME=1701513703937
CMAKE_VERSION=3.10.2
COMPILE_SDK_VERSION=34
JAVA_VERSION=22
Expand All @@ -11,6 +11,6 @@ NDK_VERSION=21.1.6352462
OPENCV_VERSION=4.8.0
TARGET_SDK_VERSION=34
TARGET_SDK_VERSION_INRT=29
VERSION_BUILD=2222
VERSION_BUILD=2223
VERSION_NAME=6.5.0
VSCODE_EXT_REQUIRED_VERSION=1.0.8

0 comments on commit 04277ed

Please sign in to comment.