Skip to content

Commit

Permalink
去掉了外观包的支持,减少bug,建议所有人更新当前版本。
Browse files Browse the repository at this point in the history
close #30 #27 #25
我发现很多用户的java版本都已经更新到了8以上,这几个开源外观包对8以上的版本并不支持,故此我将其移除。
  • Loading branch information
0Chencc committed May 9, 2021
1 parent 8bac964 commit 36c378c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/Core.kt
Original file line number Diff line number Diff line change
Expand Up @@ -918,16 +918,16 @@ class Core : JFrame() {
private var textArea=JTextArea()
private val PluginsJsonPath=String(StringBuilder(System.getProperty("user.dir")+"/Plugins.json"))
private val SettingJsonPath = String(StringBuilder(System.getProperty("user.dir")+"/Setting.json"))
private val Version="-v3.2.4"
private val Note="林晨skr憨憨"
private val Version="-v3.2.5"
private val Note=""
private val json=Json()
private var themes: Int=0

/**
* Launch the application.
*/
init {
if(File(SettingJsonPath).isFile() && File(SettingJsonPath).exists() && json.isJSON(SettingJsonPath)) {
/* if(File(SettingJsonPath).isFile() && File(SettingJsonPath).exists() && json.isJSON(SettingJsonPath)) {
val jsonfile=FileInputStream(SettingJsonPath)
val jsonreadcoding=InputStreamReader(jsonfile, "UTF-8")
val parser=JsonParser()
Expand Down Expand Up @@ -965,7 +965,7 @@ class Core : JFrame() {
}
}
}
}*/
}

@JvmStatic
Expand Down

0 comments on commit 36c378c

Please sign in to comment.