Skip to content

Commit

Permalink
Version 1.0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Defective4 committed Oct 7, 2023
1 parent c273b91 commit 271c781
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
uses: actions/upload-artifact@v3.1.3
with:
name: artifact
path: tui-mines-game/target/tui-mines-game-1.0.2-jar-with-dependencies.jar
path: tui-mines-game/target/tui-mines-game-1.0.2.1-jar-with-dependencies.jar
2 changes: 1 addition & 1 deletion deb/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: tui-mines
Version: 1.0.2
Version: 1.0.2.1
Maintainer: Defective <def3ctive4@gmail.com>
Description: A terminal based Minesweeper clone
TUI Mines is a clone of the classic Minesweeper game
Expand Down
2 changes: 1 addition & 1 deletion deb/usr/games/tui-mines
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -jar /usr/share/java/tui-mines/tui-mines-game-1.0.2-jar-with-dependencies.jar $@
java -jar /usr/share/java/tui-mines/tui-mines-game-1.0.2.1-jar-with-dependencies.jar $@
2 changes: 1 addition & 1 deletion discord-presence-min/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.defective4.javajam.tuimines</groupId>
<artifactId>tui-mines</artifactId>
<version>1.0.2</version>
<version>1.0.2.1</version>
</parent>

<description>A minimal Discord Presence wrapper</description>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.defective4.javajam.tuimines</groupId>
<artifactId>tui-mines</artifactId>
<version>1.0.2</version>
<version>1.0.2.1</version>
<packaging>pom</packaging>
<description>Terminal based Minesweeper game</description>
<inceptionYear>2023</inceptionYear>
Expand Down
16 changes: 8 additions & 8 deletions tui-mines-game/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.defective4.javajam.tuimines</groupId>
<artifactId>tui-mines</artifactId>
<version>1.0.2</version>
<version>1.0.2.1</version>
</parent>

<artifactId>tui-mines-game</artifactId>
Expand Down Expand Up @@ -58,9 +58,9 @@
</goals>
<configuration>
<headerType>gui</headerType>
<jar>target/tui-mines-game-1.0.2-jar-with-dependencies.jar
<jar>target/tui-mines-game-1.0.2.1-jar-with-dependencies.jar
</jar>
<outfile>target/TUI-Mines-1.0.2.exe</outfile>
<outfile>target/TUI-Mines-1.0.2.1.exe</outfile>
<chdir>.</chdir>
<priority>normal</priority>
<stayAlive>false</stayAlive>
Expand All @@ -73,12 +73,12 @@
<minVersion>1.8</minVersion>
</jre>
<versionInfo>
<fileVersion>1.0.2.0</fileVersion>
<txtFileVersion>1.0.2</txtFileVersion>
<fileVersion>1.0.2.1</fileVersion>
<txtFileVersion>1.0.2.1</txtFileVersion>
<fileDescription>The TUI Mines game</fileDescription>
<copyright>Defective</copyright>
<productVersion>1.0.2.0</productVersion>
<txtProductVersion>1.0.2</txtProductVersion>
<productVersion>1.0.2.1</productVersion>
<txtProductVersion>1.0.2.1</txtProductVersion>
<productName>TUI-Mines</productName>
<internalName>TUI-Mines</internalName>
<originalFilename>TUI-Mines.exe</originalFilename>
Expand All @@ -105,7 +105,7 @@
<dependency>
<groupId>io.github.defective4.javajam.tuimines</groupId>
<artifactId>discord-presence-min</artifactId>
<version>1.0.2</version>
<version>1.0.2.1</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
public final class Main {

public static final String VERSION = "1.0.2";
public static final String VERSION = "1.0.2.1";

private Main() {
}
Expand Down

0 comments on commit 271c781

Please sign in to comment.