Skip to content

Commit

Permalink
V1 - Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dilshankarunarathne committed Dec 30, 2022
1 parent 9573ff1 commit 5a7742e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions src/main/java/tech/altier/synchronizer/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void initialize() throws DbxException {
repository.startListening();

// Start listening for remote changes
startRemoteListening();
// startRemoteListening();

// Start service for refreshing the list view in GUI
startListViewRefreshService();
Expand All @@ -78,7 +78,9 @@ private void startRemoteListening() {
}

public static void stopRemoteListener() {
remoteListener.interrupt();
if (remoteListener != null) {
remoteListener.interrupt();
}
}

private void startListViewRefreshService() {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Thu Dec 29 16:05:37 IST 2022
#Fri Dec 30 09:29:45 IST 2022
loginURL=https\://www.dropbox.com/oauth2/authorize?client_id\=znj7h8gmdmevoz0&token_access_type\=offline&response_type\=code
repositoryPath=D\:\\Test
aboutURL=http\://about.altier.tech/
accessToken=sl.BV2Sk9siHg4mizu0p6iMPW_gLmkaUQX80XVI7Go-YnXwC9c63eQL7y29Vf0pu7KyeQnTBm8dX2w1cUC7wBOxBfP1E-OsuKkfqbIw3RA1DJ60U9vYuZbHjqTFszub8HegfoBWmHpsYRs
accessToken=sl.BV7nNZmU66AoWpBhYymtSWMr7hmqX2CSNnAk8ByojtrZexx9P4duI99jPl20eoeCPE9gSiVIS2Z7sSCao5Dex919zMnIknBU9wje4rs_4DXWbOgaANmZVi8RQrFUsLqZHkAXdA9NhzE
3 changes: 2 additions & 1 deletion src/main/resources/repository.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Thu Dec 29 16:05:37 IST 2022
#Fri Dec 30 09:29:45 IST 2022
test.txt=eac649d431aa3fc2d5749d1a5021bba7812ec83b8a59fa840bff75c17f8a665c
cats.mp3=042a7d64a581ef2ee983f21058801cc35663b705e6c55f62fa8e0f18ecc70989
movie.mp4=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
hello.txt=042a7d64a581ef2ee983f21058801cc35663b705e6c55f62fa8e0f18ecc70989
Expand Down

0 comments on commit 5a7742e

Please sign in to comment.