Skip to content

Commit

Permalink
also bump the ver in the globals
Browse files Browse the repository at this point in the history
  • Loading branch information
FalsePattern committed Sep 10, 2022
1 parent 2a7e71a commit 9c37ac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/falsepattern/jfunge/Globals.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.falsepattern.jfunge;

public class Globals {
public static final String VERSION = "1.0.0";
public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 0;
public static final String VERSION = "1.0.1";
public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 1;
public static final int HANDPRINT = 0xfa15e9a7; //"falsepat"
public static final String LICENSE = "JFunge - A standard-conforming Befunge-98 and Trefunge-98 interpreter\n" + "Copyright (C) 2022 FalsePattern\n" + "\n" + "This program is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation, either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + "GNU General Public License for more details.\n" + "\n" + "You should have received a copy of the GNU General Public License\n" + "along with this program. If not, see <https://www.gnu.org/licenses/>.";
}

0 comments on commit 9c37ac9

Please sign in to comment.