Skip to content

Commit 274541a

Browse files
authored
v0.5.0
View changelog entry #82 for details. ce0091c
2 parents 1d6c808 + ce0091c commit 274541a

30 files changed

+3200
-474
lines changed

.vscode/launch.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Java",
6+
"type": "java",
7+
"request": "launch",
8+
"stopOnEntry": true,
9+
"jdkPath": "${env:JAVA_HOME}",
10+
"cwd": "${fileDirname}",
11+
"startupClass": "JTerm",
12+
"classpath": [
13+
".",
14+
"${fileDirname}"
15+
]
16+
},
17+
{
18+
"name": "Java Console App",
19+
"type": "java",
20+
"request": "launch",
21+
"stopOnEntry": true,
22+
"jdkPath": "${env:JAVA_HOME}",
23+
"cwd": "${fileDirname}",
24+
"startupClass": "JTerm",
25+
"classpath": [
26+
"src/main/java/jterm",
27+
"${fileDirname}"
28+
],
29+
"externalConsole": true
30+
}
31+
]
32+
}

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ If a new bug or issue is found, create a new Issue! The issue name must be short
9090
- Version of JTerm
9191
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.
9292

93-
> JTerm 0.4.0
94-
> `jterm-v0.4.0.jar`
93+
> JTerm 0.4.1
94+
> `jterm-v0.4.1.jar`
9595
> This project and its source are held under the GNU General Public License, located in the LICENSE file in the project's directory.
9696
> (c) 2017

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[![JTerm](https://sergix.github.io/img/jterm.png)](https://sergix.github.io/projects/jterm/index.html)
22

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

56
## What is it?
67
A terminal written for cross-platform usage.
@@ -21,7 +22,7 @@ View the [Contributing Guidelines](https://github.com/Sergix/JTerm/blob/master/C
2122
## Slack
2223
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!
2324

24-
> JTerm 0.4.0
25-
> `jterm-v0.4.0.jar`
25+
> JTerm 0.4.1
26+
> `jterm-v0.4.1.jar`
2627
> This project and its source are held under the GNU General Public License, located in the LICENSE file in the project's directory.
2728
> (c) 2017
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Changelog entry:
2+
3+
(#82)[9/9/2017-21:56 0.5.0 Sergix]
4+
Added Doc comments to new JTerm.GetAsArray() and JTerm.GetAsString() functions.
5+
Fixed issue where "dir" and "files" were crashing when being passed no options.
6+
"quit" command is now "exit".
7+
Changed POM project version to 0.5.0.
8+
Changed JTERM_VERSION to 0.5.0.
9+
Built binaries for version 0.5.0.
10+
Wrote patch notes and compiled the full release changelog.
11+
Pushed updates to Git.
12+
13+
Full changes include:
14+
- Command formatting has been changed (see Commands section for details)
15+
- Added `exit` command
16+
- Added (dir) `ls` command (@pmorgan3)
17+
- Added (dir) `rm` command (@pmorgan3)
18+
- Added CodeTriage badge to README
19+
- `quit` command is now `exit`
20+
- Fixed [Issue #23](https://github.com/Sergix/JTerm/issues/23)
21+
- Opened [Feature Requests](https://github.com/Sergix/JTerm/issues/22)
22+
- Created multiple classes
23+
- Exit.java (`exit`)
24+
- Help.java (`help`)
25+
26+
More information provided in published patch notes documentation.

build/jar/jterm-v0.5.0.jar

503 KB
Binary file not shown.

0 commit comments

Comments
 (0)