-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
3,200 additions
and
474 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Java", | ||
"type": "java", | ||
"request": "launch", | ||
"stopOnEntry": true, | ||
"jdkPath": "${env:JAVA_HOME}", | ||
"cwd": "${fileDirname}", | ||
"startupClass": "JTerm", | ||
"classpath": [ | ||
".", | ||
"${fileDirname}" | ||
] | ||
}, | ||
{ | ||
"name": "Java Console App", | ||
"type": "java", | ||
"request": "launch", | ||
"stopOnEntry": true, | ||
"jdkPath": "${env:JAVA_HOME}", | ||
"cwd": "${fileDirname}", | ||
"startupClass": "JTerm", | ||
"classpath": [ | ||
"src/main/java/jterm", | ||
"${fileDirname}" | ||
], | ||
"externalConsole": true | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Changelog entry: | ||
|
||
(#82)[9/9/2017-21:56 0.5.0 Sergix] | ||
Added Doc comments to new JTerm.GetAsArray() and JTerm.GetAsString() functions. | ||
Fixed issue where "dir" and "files" were crashing when being passed no options. | ||
"quit" command is now "exit". | ||
Changed POM project version to 0.5.0. | ||
Changed JTERM_VERSION to 0.5.0. | ||
Built binaries for version 0.5.0. | ||
Wrote patch notes and compiled the full release changelog. | ||
Pushed updates to Git. | ||
|
||
Full changes include: | ||
- Command formatting has been changed (see Commands section for details) | ||
- Added `exit` command | ||
- Added (dir) `ls` command (@pmorgan3) | ||
- Added (dir) `rm` command (@pmorgan3) | ||
- Added CodeTriage badge to README | ||
- `quit` command is now `exit` | ||
- Fixed [Issue #23](https://github.com/Sergix/JTerm/issues/23) | ||
- Opened [Feature Requests](https://github.com/Sergix/JTerm/issues/22) | ||
- Created multiple classes | ||
- Exit.java (`exit`) | ||
- Help.java (`help`) | ||
|
||
More information provided in published patch notes documentation. |
Binary file not shown.
Oops, something went wrong.