Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Bettencourt committed Sep 14, 2024
1 parent 4a64b35 commit 1b5cc3a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions java/PushChar/dep/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>PushChar</string>
<key>CFBundleGetInfoString</key>
<string>© 2008-2023 Kreative Software</string>
<string>© 2008-2024 Kreative Software</string>
<key>CFBundleIconFile</key>
<string>PushChar.icns</string>
<key>CFBundleIdentifier</key>
Expand All @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.2.1</string>
<string>2.2.2</string>
<key>CFBundleSignature</key>
<string>Pu∫©</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion java/PushChar/dep/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Manifest-Version: 1.0
Created-By: 2.2.1 (Kreative Software)
Created-By: 2.2.2 (Kreative Software)
Main-Class: com.kreative.pushchar.main.Main
10 changes: 5 additions & 5 deletions java/PushChar/dep/pushchar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<maxHeapSize>1024</maxHeapSize>
</jre>
<versionInfo>
<fileVersion>2.2.1.0</fileVersion>
<txtFileVersion>2.2.1</txtFileVersion>
<fileVersion>2.2.2.0</fileVersion>
<txtFileVersion>2.2.2</txtFileVersion>
<fileDescription>PushChar</fileDescription>
<copyright>(C) 2008-2023 Kreative Software</copyright>
<productVersion>2.2.1.0</productVersion>
<txtProductVersion>2.2.1</txtProductVersion>
<copyright>(C) 2008-2024 Kreative Software</copyright>
<productVersion>2.2.2.0</productVersion>
<txtProductVersion>2.2.2</txtProductVersion>
<productName>PushChar</productName>
<companyName>Kreative Software</companyName>
<internalName>PushChar</internalName>
Expand Down
4 changes: 2 additions & 2 deletions java/PushChar/src/com/kreative/pushchar/main/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public static void main(String[] args) {
while (argi < args.length) {
String arg = args[argi++];
if (arg.equalsIgnoreCase("-version") || arg.equalsIgnoreCase("--version")) {
System.out.println("PushChar 2.2.1");
System.out.println("(c) 2012-2023 Kreative Software");
System.out.println("PushChar 2.2.2");
System.out.println("(c) 2012-2024 Kreative Software");
if (mode == Mode.AUTO) mode = Mode.INFO;
} else if (arg.equalsIgnoreCase("-help") || arg.equalsIgnoreCase("--help")) {
System.out.println("java -jar pushchar.jar [ -f <fontname> ] [ -b | -i | -bi ] [ -s <fontsize> ]");
Expand Down

0 comments on commit 1b5cc3a

Please sign in to comment.