Skip to content

Commit 163818d

Browse files
committed
Updated versioning to v0.1.6-beta
+ updated & improved README
1 parent f43fea1 commit 163818d

File tree

7 files changed

+127
-211
lines changed

7 files changed

+127
-211
lines changed

README.md

Lines changed: 122 additions & 206 deletions
Large diffs are not rendered by default.
67.4 KB
Loading

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>dev.tbm00</groupId>
88
<artifactId>PreProcessIt</artifactId>
9-
<version>0.1.5-beta</version>
9+
<version>0.1.6-beta</version>
1010
<packaging>jar</packaging>
1111

1212
<name>PreProcessIt</name>

src/main/java/dev/tbm00/preprocessit/PreProcessIt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private static void runHeadless(String[] args) throws IOException {
8888
}
8989
if (configPath == null || inputPath == null || outputPath == null) {
9090
System.err.println(
91-
"Usage: java -jar PreProcessIt-0.0.0-beta.jar --config <config.yml> [--component <name>] --input <input.txt> --output <output.csv> [--log]"
91+
"Usage: java -jar PreProcessIt-0.1.6-beta.jar --config <config.yml> [--component <name>] --input <input.txt> --output <output.csv> [--log]"
9292
);
9393
System.exit(1);
9494
}

src/main/java/dev/tbm00/preprocessit/controller/Controller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private void handleReadmeClick() {
290290
try {
291291
Desktop desktop = Desktop.getDesktop();
292292
desktop.browse(new URI(README_URL));
293-
view.getTitleLabel().setText("<html><b>PreProcessIt</b> v0.1.5-beta, <br/>" +
293+
view.getTitleLabel().setText("<html><b>PreProcessIt</b> v0.1.6-beta, <br/>" +
294294
"<a href='' style='color: purple; text-decoration: underline;'>README</a>, <i>made by @tbm00</i></html>");
295295
} catch (Exception e) {
296296
JOptionPane.showMessageDialog(view, "Failed to open README link: " + e.getMessage());

src/main/java/dev/tbm00/preprocessit/view/View.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private void initializeTextPanel() {
8585

8686
// Initialize title label with right alignment inside textPanel
8787
titleLabel = new JLabel();
88-
String titleHtml = "<html><b>PreProcessIt</b> v0.1.5-beta, <br/>" +
88+
String titleHtml = "<html><b>PreProcessIt</b> v0.1.6-beta, <br/>" +
8989
"<a href='' style=color: blue; text-decoration: underline;>README</a>, <i>made by @tbm00</i></html>";
9090
titleLabel.setText(titleHtml);
9191
titleLabel.setCursor(new Cursor(Cursor.HAND_CURSOR));

src/main/resources/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PreProcessIt v0.1.5-beta by @tbm00
1+
# PreProcessIt v0.1.6-beta by @tbm00
22
# https://github.com/tbm00/PreProcessIt
33

44
concurrentThreading: true

0 commit comments

Comments
 (0)