Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
View changelog entry #82 for details. ce0091c
  • Loading branch information
Sergix authored Sep 10, 2017
2 parents 1d6c808 + ce0091c commit 274541a
Show file tree
Hide file tree
Showing 30 changed files with 3,200 additions and 474 deletions.
32 changes: 32 additions & 0 deletions .vscode/launch.json
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
}
]
}
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ If a new bug or issue is found, create a new Issue! The issue name must be short
- Version of JTerm
3. "Files and Code" - If you find where the issue is or believe it to be, put the filenames and/or code in this section.

> JTerm 0.4.0
> `jterm-v0.4.0.jar`
> JTerm 0.4.1
> `jterm-v0.4.1.jar`
> This project and its source are held under the GNU General Public License, located in the LICENSE file in the project's directory.
> (c) 2017
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![JTerm](https://sergix.github.io/img/jterm.png)](https://sergix.github.io/projects/jterm/index.html)

![Build Status](https://travis-ci.org/Sergix/JTerm.svg?branch=master)
[![Code Triagers Badge](https://www.codetriage.com/sergix/jterm/badges/users.svg)](https://www.codetriage.com/sergix/jterm)

## What is it?
A terminal written for cross-platform usage.
Expand All @@ -21,7 +22,7 @@ View the [Contributing Guidelines](https://github.com/Sergix/JTerm/blob/master/C
## Slack
The JTerm project now has a Slack messaging group! Request to join the [Sergix](https://sergix.slack.com/) team to recieve notifications on updates, Travis CI build status, and more!

> JTerm 0.4.0
> `jterm-v0.4.0.jar`
> JTerm 0.4.1
> `jterm-v0.4.1.jar`
> This project and its source are held under the GNU General Public License, located in the LICENSE file in the project's directory.
> (c) 2017
26 changes: 26 additions & 0 deletions build/changelog/jterm-changelog-v0.5.0.txt
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 added build/jar/jterm-v0.5.0.jar
Binary file not shown.
Loading

0 comments on commit 274541a

Please sign in to comment.