Changed version string

This commit is contained in:
Downforce Agent 2024-07-03 16:55:41 -05:00
parent 2dd6e0b0ff
commit 59f80c4687
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ public class Gonzo {
System.out.println("The deletion queue is " + dQarray.length + " files long!"); //debug System.out.println("The deletion queue is " + dQarray.length + " files long!"); //debug
for (String file : dQarray) { 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!"); 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"); consoleDisplay.append("WARNING: Firestar skipped a potentially dangerous delete command. Please ensure the mod you're installing is from someone you trust!\n");
} else { } else {

View File

@ -27,7 +27,7 @@ import javax.swing.JOptionPane;
public class Main { public class Main {
// Build Information // 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 String vcode = "Dekka";
public static final int vint = 0; public static final int vint = 0;