-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from itsMatoosh/standalone-ui-overhaul
UI redone for the standalone version
- Loading branch information
Showing
66 changed files
with
3,405 additions
and
1,461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
dependencies { | ||
// https://mvnrepository.com/artifact/io.netty/netty-all | ||
compile group: 'io.netty', name: 'netty-all', version: '4.1.22.Final' | ||
compile group: 'org.apache.commons', name: 'commons-crypto', version: '1.0.0' | ||
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16 | ||
compile group: 'org.bouncycastle', name: 'bcprov-jdk16', version: '1.45' | ||
implementation group: 'io.netty', name: 'netty-all', version: '4.1.22.Final' | ||
implementation group: 'org.apache.commons', name: 'commons-crypto', version: '1.0.0' | ||
implementation group: 'org.bouncycastle', name: 'bcprov-jdk16', version: '1.45' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
shared/src/main/java/me/matoosh/undernet/event/router/RouterControlLoopEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package me.matoosh.undernet.event.router; | ||
|
||
import me.matoosh.undernet.p2p.router.Router; | ||
|
||
public class RouterControlLoopEvent extends RouterEvent { | ||
public RouterControlLoopEvent(Router r) { | ||
super(r); | ||
} | ||
|
||
@Override | ||
public void onCalled() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.