Skip to content

Commit 1640a45

Browse files
committed
prepare version 1.0.0
1 parent 992639f commit 1640a45

10 files changed

Lines changed: 18 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Changelog for Remote Support Tool
22
=================================
33

4-
1.0 (not released yet)
5-
----------------------
4+
1.0.0 (20 Oct 2018)
5+
-------------------
66

77
- migrated from Tcl/Tk to Java
8-
- implement the whole support session in Java, no need for any external
8+
- implement the whole support session in Java, no need for external
99
applications (x11vnc, OSXvnc, TightVNC, OpenSSH)
1010
- provide a graphical interface for both sides of a support session
11-
(customer & supporter)
11+
(customer & support staff)
1212
- provided binaries are bundles with a stripped down version of the
1313
OpenJDK runtime environment (version 10)
14+
- provide a signed application bundle for macOS
1415
- switched from MIT to Apache License 2.0
1516

1617

Core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>RemoteSupportTool</artifactId>
99
<groupId>de.openindex.support</groupId>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111
</parent>
1212

1313
<artifactId>RemoteSupportTool-Core</artifactId>

Customer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>RemoteSupportTool</artifactId>
99
<groupId>de.openindex.support</groupId>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111
</parent>
1212

1313
<artifactId>RemoteSupportTool-Customer</artifactId>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Remote Support Tool 1.0-SNAPSHOT
2-
================================
1+
Remote Support Tool 1.0.0
2+
=========================
33

44
*Remote Support Tool* is an easy single click solution for remote maintenance.
55

Staff/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>RemoteSupportTool</artifactId>
99
<groupId>de.openindex.support</groupId>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111
</parent>
1212

1313
<artifactId>RemoteSupportTool-Staff</artifactId>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.openindex.support</groupId>
88
<artifactId>RemoteSupportTool</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>RemoteSupportTool</name>
@@ -67,17 +67,17 @@
6767
<dependency>
6868
<groupId>de.openindex.support</groupId>
6969
<artifactId>RemoteSupportTool-Core</artifactId>
70-
<version>1.0-SNAPSHOT</version>
70+
<version>1.0.0</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>de.openindex.support</groupId>
7474
<artifactId>RemoteSupportTool-Customer</artifactId>
75-
<version>1.0-SNAPSHOT</version>
75+
<version>1.0.0</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>de.openindex.support</groupId>
7979
<artifactId>RemoteSupportTool-Staff</artifactId>
80-
<version>1.0-SNAPSHOT</version>
80+
<version>1.0.0</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>commons-io</groupId>

release/bundle-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
STAFF_TOOL="StaffSupportTool"
1919
CUSTOMER_TOOL="CustomerSupportTool"
20-
VERSION="1.0-SNAPSHOT"
20+
VERSION="1.0.0"
2121

2222
MAKESELF="makeself"
2323
DIR=$( cd $( dirname ${BASH_SOURCE[0]} ) && pwd )

release/bundle-mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
STAFF_TOOL="StaffSupportTool"
1919
CUSTOMER_TOOL="CustomerSupportTool"
20-
VERSION="1.0-SNAPSHOT"
20+
VERSION="1.0.0"
2121

2222
DIR=$( cd $( dirname ${BASH_SOURCE[0]} ) && pwd )
2323
TARGET_DIR="$DIR/target"

release/bundle-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
STAFF_TOOL="StaffSupportTool"
1919
CUSTOMER_TOOL="CustomerSupportTool"
20-
VERSION="1.0-SNAPSHOT"
20+
VERSION="1.0.0"
2121

2222
SEVENZIP="7z"
2323
SEVENZIP_OPTIONS="-mx=9"

release/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>RemoteSupportTool</artifactId>
99
<groupId>de.openindex.support</groupId>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111
</parent>
1212

1313
<artifactId>release</artifactId>

0 commit comments

Comments
 (0)