Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jline3 and other console improvements #935

Open
wants to merge 46 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
bbe00c8
some work on jline3
mastercoms May 8, 2017
caee56b
jline3 working
mastercoms May 8, 2017
50807ae
Adjustments to jline3
mastercoms May 8, 2017
8564117
work on formatting
mastercoms May 9, 2017
af7dc17
adjustments to logger
mastercoms May 9, 2017
5e4f2bb
Use try with resources
mastercoms May 9, 2017
513aa89
try to use jline3 better, but there's no documentation :(
mastercoms May 9, 2017
d64f760
clean up line
mastercoms May 9, 2017
b4ba93e
fancy prompt/console formatting
mastercoms May 9, 2017
4cfb5a1
fix up prompt a bit
mastercoms May 9, 2017
a252158
merge conflicts
mastercoms May 10, 2017
2bdb7bf
input and terminal fixes
mastercoms May 10, 2017
04d9904
rewrite consolemanager
mastercoms May 10, 2017
ebd0ab2
Format logger, add support for basic Bukkit methods
mastercoms May 10, 2017
1df265f
early start for formatter
mastercoms May 10, 2017
7a72573
full bukkit repl
mastercoms May 10, 2017
5c3d4ab
strip color on dumb terminals
mastercoms May 10, 2017
bfcf555
try jansi
mastercoms May 10, 2017
1a4a474
fix styling
mastercoms May 10, 2017
e3e2943
Format class better so errors are more readable
mastercoms May 10, 2017
373e4a3
Fix using return statements
mastercoms May 10, 2017
1459cd9
Remove jansi
mastercoms May 10, 2017
7e55e31
Fix void repl not running
mastercoms May 10, 2017
033afc1
REPL Improvements
mastercoms May 11, 2017
f374568
Import net.glowstone package for convenience
mastercoms May 11, 2017
b80a454
Add missing semicolon in import statement
mastercoms May 11, 2017
dda61a5
Merge dev in jline3
mastercoms Jun 1, 2018
0a8f9a3
Sync jline3 to dev
mastercoms Jun 1, 2018
5e1c389
Update to jline 3.7.1
mastercoms Jun 1, 2018
fa1ad33
Clean up more
mastercoms Jun 1, 2018
e64a545
Reformat logback.xml
mastercoms Jun 1, 2018
7610133
Fix logging
mastercoms Jun 2, 2018
e848efd
i18n
mastercoms Jun 2, 2018
401938e
Console tasks
mastercoms Jun 2, 2018
6ccd6ee
Address review comments (partial)
Pr0methean Jun 6, 2018
09c7160
Merge branch 'dev' into jline3
Pr0methean Jun 6, 2018
b51a978
Console commands
Pr0methean Jun 6, 2018
796be6d
Delete unused class MethodInvocationUtils
Pr0methean Jun 6, 2018
ca95b46
Command tests & package-tree cleanup
Pr0methean Jun 6, 2018
894a459
Register console commands
Pr0methean Jun 6, 2018
c659625
Style fixes
Pr0methean Jun 6, 2018
b4cc09f
Style fixes
Pr0methean Jun 6, 2018
17187c8
Style fix
Pr0methean Jun 6, 2018
62ff057
Console commands start with !
Pr0methean Jun 6, 2018
125358e
Rename `innerExecute` to `executeOnConsole`
Pr0methean Jun 6, 2018
dfffe70
Merge branch 'dev' into jline3
smartboyathome Jul 20, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
<version>1.17.1</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>2.14.6</version>
<version>3.7.1</version>
</dependency>
<dependency>
<groupId>co.aikar</groupId>
Expand Down Expand Up @@ -173,7 +173,6 @@
<finalName>glowstone</finalName>

<directory>${project.basedir}/target</directory>

<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
Expand Down