Skip to content

Commit

Permalink
1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
octo-kumo committed Aug 10, 2020
1 parent 6b95d99 commit 3be4b50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'app.nush'
version '1.3.7-beta'
version '1.3.8-beta'

applicationName = 'Exam Clock'
mainClassName = 'app.nush.examclock.Main'
Expand All @@ -20,7 +20,7 @@ repositories {
// }
}

double jdkVersion = 1.14
double jdkVersion = 1.8
println "JDK version = ${jdkVersion}"

sourceCompatibility = 1.14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public ClientSocket(MainController controller) {
opts.webSocketFactory = okHttpClient;
try {
opts.query = "clock=" + URLEncoder.encode(identifySelf(), String.valueOf(StandardCharsets.UTF_8));
socket = IO.socket("https://exam-clock-nush.tk", opts);
socket = IO.socket("https://exam.nush.app", opts);
// socket = IO.socket("http://localhost:3000", opts);
socket.on(Socket.EVENT_CONNECT, args -> {
System.out.println("Connected to Server!");
Expand Down

0 comments on commit 3be4b50

Please sign in to comment.