Skip to content

Commit 0c9701e

Browse files
committed
Updated versioning to v0.1.5-beta
+ updated README
1 parent a7d1eb9 commit 0c9701e

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ PreProcessIt follows the Model-View-Controller (MVC) design pattern, ensuring cl
1313
- **Advanced Token Handling:** Process tokens using configurable rules that consider neighboring tokens, enabling complex pattern matching and data transformation.
1414
- **Highly Configurable:** Use a YAML configuration file to control the behavior of the parser, ensuring it meets the needs of varied input data formats.
1515
- **Robust Error Handling and Logging:** Detailed logging and error management provide transparency during data processing and facilitate troubleshooting and config creation.
16+
- **User-friendly GUI & Headless Command:** Either use the GUI to import, process, and export data, or use the headless command to import, process and export data directly to a CSV.
1617

1718
## Dependencies
1819
- **Java 8+**: REQUIRED
@@ -52,6 +53,9 @@ original_input,response_time,refresh_rate,leftovers
5253
99HERTZ RANDOMTEXT 20MS,20MS,99HZ,RANDOMTEXT
5354
```
5455

56+
### Headless Command
57+
- `java -jar PreProcessIt-0.1.5-beta.jar --config <config.yml> [--component <name>] --input <input.txt> --output <output.csv> [--log]`
58+
5559
## Configuration
5660

5761
### Available Words
@@ -126,7 +130,7 @@ original_input,response_time,refresh_rate,leftovers
126130

127131
### Default Config
128132
```
129-
# PreProcessIt v0.1.4-beta by @tbm00
133+
# PreProcessIt v0.1.5-beta by @tbm00
130134
# https://github.com/tbm00/PreProcessIt
131135
132136
concurrentThreading: true

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.0.0-beta</version>
9+
<version>0.1.5-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
@@ -87,7 +87,7 @@ private static void runHeadless(String[] args) throws IOException {
8787
}
8888
if (configPath == null || inputPath == null || outputPath == null) {
8989
System.err.println(
90-
"Usage: java -jar PreProcessIt-0.0.0-beta.jar --config <config.yml> [--component <name>] --input <in.txt> --output <out.csv> [--log]"
90+
"Usage: java -jar PreProcessIt-0.1.5-beta.jar --config <config.yml> [--component <name>] --input <in.txt> --output <out.csv> [--log]"
9191
);
9292
System.exit(1);
9393
}

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.0.0-beta, <br/>" +
293+
view.getTitleLabel().setText("<html><b>PreProcessIt</b> v0.1.5-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.0.0-beta, <br/>" +
88+
String titleHtml = "<html><b>PreProcessIt</b> v0.1.5-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.0.0-beta by @tbm00
1+
# PreProcessIt v0.1.5-beta by @tbm00
22
# https://github.com/tbm00/PreProcessIt
33

44
concurrentThreading: true

0 commit comments

Comments
 (0)