Skip to content

Commit 701aad2

Browse files
committed
FiddView added to release, Version bumped to 0.2.0
1 parent 7d6cf02 commit 701aad2

File tree

6 files changed

+26
-10
lines changed

6 files changed

+26
-10
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ jobs:
4848
- name: sha256-fiddpacker
4949
run: openssl sha256 FiddPacker/build/libs/*
5050

51+
- name: ls-fiddview
52+
run: ls -al FiddView/build/libs
53+
54+
- name: sha256-fiddview
55+
run: openssl sha256 FiddView/build/libs/*
56+
5157
- name: Create Release
5258
id: create_release
5359
uses: actions/create-release@v1
@@ -65,8 +71,8 @@ jobs:
6571
GITHUB_TOKEN: ${{ github.token }}
6672
with:
6773
upload_url: ${{ steps.create_release.outputs.upload_url }}
68-
asset_path: Cryptor/build/libs/Cryptor-0.1.1-amd64-all.jar
69-
asset_name: Cryptor-0.1.1-amd64-all.jar
74+
asset_path: Cryptor/build/libs/Cryptor-0.2.0-amd64-all.jar
75+
asset_name: Cryptor-0.2.0-amd64-all.jar
7076
asset_content_type: application/jar
7177

7278
- name: Upload FiddPacker x64 artifact
@@ -75,6 +81,16 @@ jobs:
7581
GITHUB_TOKEN: ${{ github.token }}
7682
with:
7783
upload_url: ${{ steps.create_release.outputs.upload_url }}
78-
asset_path: FiddPacker/build/libs/FiddPacker-0.1.1-amd64-all.jar
79-
asset_name: FiddPacker-0.1.1-amd64-all.jar
80-
asset_content_type: application/jar
84+
asset_path: FiddPacker/build/libs/FiddPacker-0.2.0-amd64-all.jar
85+
asset_name: FiddPacker-0.2.0-amd64-all.jar
86+
asset_content_type: application/jar
87+
88+
- name: Upload FiddView x64 artifact
89+
uses: actions/upload-release-asset@v1
90+
env:
91+
GITHUB_TOKEN: ${{ github.token }}
92+
with:
93+
upload_url: ${{ steps.create_release.outputs.upload_url }}
94+
asset_path: FiddView/build/libs/FiddView-0.2.0-amd64-all.jar
95+
asset_name: FiddView-0.2.0-amd64-all.jar
96+
asset_content_type: application/jar

Cryptor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.fidd.cryptor'
11-
version '0.1.1-amd64'
11+
version '0.2.0-amd64'
1212

1313
repositories {
1414
mavenCentral()

Cryptor/src/main/java/com/fidd/cryptor/forms/MainForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public MainForm() {
114114
}
115115

116116
public void showAboutDialog() {
117-
Alert alert = new Alert(Alert.AlertType.NONE, "Cryptor v 0.1.1", ButtonType.OK);
117+
Alert alert = new Alert(Alert.AlertType.NONE, "Cryptor v 0.2.0", ButtonType.OK);
118118
alert.showAndWait();
119119
}
120120

FiddPacker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.fidd.packer'
11-
version '0.1.1-amd64'
11+
version '0.2.0-amd64'
1212

1313
repositories {
1414
mavenCentral()

FiddView/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.fidd.view'
11-
version '0.1.1-amd64'
11+
version '0.2.0-amd64'
1212

1313
repositories {
1414
mavenCentral()

FiddView/src/main/java/com/fidd/view/forms/MainForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public MainForm() {
9797
}
9898

9999
public void showAboutDialog() {
100-
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.1.1", ButtonType.OK);
100+
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.2.0", ButtonType.OK);
101101
alert.showAndWait();
102102
}
103103

0 commit comments

Comments
 (0)