Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexs20 committed Jul 10, 2017
1 parent 5a3cf24 commit 623b564
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.wolandsoft.sss</groupId>
<artifactId>pc-receiver</artifactId>
<version>1.3.0.1</version>
<version>1.4.0.0</version>
<name>SssPcReceiver</name>
<description>PC Receiver for Simple Secret Storage</description>
<dependencies>
Expand Down
20 changes: 10 additions & 10 deletions runtime/launch4j_windows.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<launch4jConfig>
<dontWrapJar>true</dontWrapJar>
<headerType>gui</headerType>
<jar>pc-receiver-1.3.0.1.jar</jar>
<outfile>..\target\sssPcReceiver.exe</outfile>
<jar>pc-receiver-1.4.0.0.jar</jar>
<outfile>..\target\SiestoPcReceiver.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
Expand All @@ -28,16 +28,16 @@
<runtimeBits>64/32</runtimeBits>
</jre>
<versionInfo>
<fileVersion>1.3.0.1</fileVersion>
<txtFileVersion>1.3.0.1</txtFileVersion>
<fileDescription>SSS PC-Receiver</fileDescription>
<fileVersion>1.4.0.0</fileVersion>
<txtFileVersion>1.4.0.0</txtFileVersion>
<fileDescription>Siesto PC-Receiver</fileDescription>
<copyright>Wolandsoft (Alexander Shulgin)</copyright>
<productVersion>1.3.0.1</productVersion>
<txtProductVersion>1.3.0.1</txtProductVersion>
<productName>SSS PC-Receiver</productName>
<productVersion>1.4.0.0</productVersion>
<txtProductVersion>1.4.0.0</txtProductVersion>
<productName>Siesto PC-Receiver</productName>
<companyName></companyName>
<internalName>SSS PC-Receiver</internalName>
<originalFilename>sssPcReceiver.exe</originalFilename>
<internalName>Siesto PC-Receiver</internalName>
<originalFilename>SiestoPcReceiver.exe</originalFilename>
<trademarks></trademarks>
<language>ENGLISH_US</language>
</versionInfo>
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/wolandsoft/sss/pcr/server/TcpServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ public void run() {
logger.log(Level.WARNING, e.getMessage(), e);
}
byte[] data = baOutStream.toByteArray();
mListener.onDataReceived(data);
if(data.length > 0) {
mListener.onDataReceived(data);
}
}
}

Expand Down

0 comments on commit 623b564

Please sign in to comment.