Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>org.pwss</groupId>
<artifactId>integrity_hash</artifactId>
<packaging>jar</packaging>
<version>1.1</version>
<version>1.2</version>
<description>A GUI application for file integrity checking</description>

<!-- Licenses -->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/pwss/view/screen/HomeScreen.form
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
<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">
<margin top="10" left="10" bottom="10" right="10"/>
<constraints>
<tabbedpane title="🗄️ Files"/>
<tabbedpane title="📁 Files"/>
</constraints>
<properties/>
<border type="none"/>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/pwss/view/screen/HomeScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ public JLabel getDiffsCountLabel() {
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));
filesTab = new JPanel();
filesTab.setLayout(new GridLayoutManager(2, 1, new Insets(10, 10, 10, 10), -1, -1));
tabbedPane.addTab("\uD83D\uDDC4\uFE0F Files", filesTab);
tabbedPane.addTab("\uD83D\uDCC1 Files", filesTab);
final JSplitPane splitPane2 = new JSplitPane();
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));
final JScrollPane scrollPane4 = new JScrollPane();
Expand Down
10 changes: 5 additions & 5 deletions start.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ if (-not (Test-Path -Path "..\artifacts")) {

if ($null -eq $portInUse) {
Write-Host "Nothing is running on port 15400. Starting the process..."
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.7.jar" &
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.1.jar" &
Write-Host "File-Integrity-Scanner started."
cp .\target\integrity_hash-1.1-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.1-jar-with-dependencies.jar
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
exit
} else {
Write-Host "File-Integrity-Scanner is already running on port 15400."
cp .\target\integrity_hash-1.1-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.1-jar-with-dependencies.jar
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
exit
}