Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rizlim authored and Rizlim committed Feb 13, 2019
1 parent f340ae2 commit 96947b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 23 deletions.
20 changes: 0 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,6 @@
<artifactId>jackson-module-kotlin</artifactId>
<version>2.9.4.1</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>4.4.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>platform</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -164,11 +154,6 @@
<artifactId>github-api</artifactId>
<version>1.93</version>
</dependency>
<dependency>
<groupId>com.1stleg</groupId>
<artifactId>jnativehook</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
Expand Down Expand Up @@ -206,11 +191,6 @@
<artifactId>kotlin-reflect</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
<version>0.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
Expand Down
4 changes: 1 addition & 3 deletions src/main/kotlin/PAL2/GlobalData.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Client.PALClient
import PAL_DataClasses.PAL_AddonFullData
import java.io.File

Expand All @@ -9,7 +8,7 @@ class GlobalData
{
companion object
{
var version = "1.0.1"
var version = "1.0.2"
var debugging = false
var install_dir = ""
var github_token = ""
Expand All @@ -19,7 +18,6 @@ class GlobalData
var pal_folder = File("${System.getenv("LOCALAPPDATA")}${File.separator}PAL")
var pal_data_folder = File("${pal_folder.path}${File.separator}Data")
var db_file = File("${pal_data_folder}${File.separator}PALData.db")
var client: PALClient? = null
var server_enabled = false
var first_launch = true
var first_launch_after_update = true
Expand Down
6 changes: 6 additions & 0 deletions src/main/resources/update_notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@

</style>
<body>
<div class="block_1 hline-bottom"><h1>Version 1.0.2</h1></div>
<ul>
<li>Tidied up some server code</li>
<li>Removed some unused maven dependencies</li>
</ul>

<div class="block_1 hline-bottom"><h1>Version 1.0.1</h1></div>
<ul>
<li>First Public Release</li>
Expand Down

0 comments on commit 96947b8

Please sign in to comment.