Skip to content

Commit 184ca72

Browse files
committedMar 22, 2020
Release v2.4.1
1 parent 6d6eeef commit 184ca72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎blobsaver.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "blobsaver"
5-
#define MyAppVersion "2.4.1-beta5"
5+
#define MyAppVersion "2.4.1"
66
#define MyAppPublisher "airsquared"
77
#define MyAppURL "https://www.github.com/airsquared/blobsaver"
88
#define MyAppExeName "blobsaver.exe"

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sourceCompatibility = 1.8
3232
* - Main.java
3333
* - blobsaver.iss
3434
*/
35-
String appVersion = "v2.4.1-beta5";
35+
String appVersion = "v2.4.1";
3636

3737
repositories {
3838
mavenCentral()

‎src/main/java/com/airsquared/blobsaver/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
public class Main {
4040

41-
static final String appVersion = "v2.4.1-beta5";
41+
static final String appVersion = "v2.4.1";
4242
static final Preferences appPrefs = Preferences.userRoot().node("airsquared/blobsaver/prefs");
4343
static Stage primaryStage;
4444
static final File jarDirectory;

0 commit comments

Comments
 (0)
Please sign in to comment.