From 59f80c4687728e97722953cc62289b0e094660c3 Mon Sep 17 00:00:00 2001 From: Downforce Agent Date: Wed, 3 Jul 2024 16:55:41 -0500 Subject: [PATCH] Changed version string --- src/Gonzo.java | 2 +- src/Main.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gonzo.java b/src/Gonzo.java index a9c9c61..2549be3 100644 --- a/src/Gonzo.java +++ b/src/Gonzo.java @@ -169,7 +169,7 @@ public class Gonzo { System.out.println("The deletion queue is " + dQarray.length + " files long!"); //debug for (String file : dQarray) { - if(file.contains("..")) { //todo: find all possible hazardous paths and blacklist them with regex + if(file.contains("..")) { //todo: is this safe enough? System.out.println("WARNING: Firestar skipped a potentially dangerous delete command. Please ensure the mod you're installing is from someone you trust!"); consoleDisplay.append("WARNING: Firestar skipped a potentially dangerous delete command. Please ensure the mod you're installing is from someone you trust!\n"); } else { diff --git a/src/Main.java b/src/Main.java index 05e25b7..cf55013 100644 --- a/src/Main.java +++ b/src/Main.java @@ -27,7 +27,7 @@ import javax.swing.JOptionPane; public class Main { // Build Information - public static final String vstr = "Release 1.1"; + public static final String vstr = "Release 1.2"; public static final String vcode = "Dekka"; public static final int vint = 0;