Skip to content

Commit a75bc9d

Browse files
authored
Merge pull request #81 from pwssOrg/develop
Release v1.2
2 parents 4b43cb1 + 78e7407 commit a75bc9d

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>org.pwss</groupId>
99
<artifactId>integrity_hash</artifactId>
1010
<packaging>jar</packaging>
11-
<version>1.1</version>
11+
<version>1.2</version>
1212
<description>A GUI application for file integrity checking</description>
1313

1414
<!-- Licenses -->

src/main/java/org/pwss/view/screen/HomeScreen.form

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
<grid id="64f52" binding="filesTab" layout-manager="GridLayoutManager" row-count="2" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
244244
<margin top="10" left="10" bottom="10" right="10"/>
245245
<constraints>
246-
<tabbedpane title="🗄️ Files"/>
246+
<tabbedpane title="📁 Files"/>
247247
</constraints>
248248
<properties/>
249249
<border type="none"/>

src/main/java/org/pwss/view/screen/HomeScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ public JLabel getDiffsCountLabel() {
634634
scanTab.add(clearFeedButton, new GridConstraints(0, 3, 1, 1, GridConstraints.ANCHOR_EAST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
635635
filesTab = new JPanel();
636636
filesTab.setLayout(new GridLayoutManager(2, 1, new Insets(10, 10, 10, 10), -1, -1));
637-
tabbedPane.addTab("\uD83D\uDDC4\uFE0F Files", filesTab);
637+
tabbedPane.addTab("\uD83D\uDCC1 Files", filesTab);
638638
final JSplitPane splitPane2 = new JSplitPane();
639639
filesTab.add(splitPane2, new GridConstraints(1, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, new Dimension(200, 200), null, 0, false));
640640
final JScrollPane scrollPane4 = new JScrollPane();

start.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ if (-not (Test-Path -Path "..\artifacts")) {
88

99
if ($null -eq $portInUse) {
1010
Write-Host "Nothing is running on port 15400. Starting the process..."
11-
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.7.jar" &
11+
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.1.jar" &
1212
Write-Host "File-Integrity-Scanner started."
13-
cp .\target\integrity_hash-1.1-jar-with-dependencies.jar ..\artifacts
14-
java -jar ..\artifacts\integrity_hash-1.1-jar-with-dependencies.jar
13+
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
14+
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
1515
exit
1616
} else {
1717
Write-Host "File-Integrity-Scanner is already running on port 15400."
18-
cp .\target\integrity_hash-1.1-jar-with-dependencies.jar ..\artifacts
19-
java -jar ..\artifacts\integrity_hash-1.1-jar-with-dependencies.jar
18+
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
19+
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
2020
exit
2121
}

0 commit comments

Comments
 (0)