Skip to content

Commit 2bfc442

Browse files
committed
Finish v1.1.0
2 parents f0746a8 + 243616a commit 2bfc442

File tree

168 files changed

+2505
-1058
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+2505
-1058
lines changed

.idea/misc.xml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Clean.xml

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/CustomerTool.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Deploy.xml

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Install.xml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Release.xml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/StaffTool.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog for Remote Support Tool
22
=================================
33

4+
1.1.0 (20 Mar 2019)
5+
-------------------
6+
7+
- upgrade to Java 11
8+
- update [Commons Text](https://commons.apache.org/text/) library to version 1.6
9+
- update [JSch](http://www.jcraft.com/jsch/) library to version 0.1.55
10+
- update [Simple Logging Facade for Java](https://www.slf4j.org/) library to version 1.7.26
11+
- provide sh application launcher for macOS ([issue #20](https://github.com/OpenIndex/RemoteSupportTool/issues/20))
12+
- tab key is not sent to the customer application ([issue #21](https://github.com/OpenIndex/RemoteSupportTool/issues/21))
13+
- enable / disable transfer of keyboard & mouse inputs ([issue #22](https://github.com/OpenIndex/RemoteSupportTool/issues/22))
14+
- rework transfer of keyboard inputs ([issue #23](https://github.com/OpenIndex/RemoteSupportTool/issues/23))
15+
- prefer Nimbus look & feel on Linux ([issue #25](https://github.com/OpenIndex/RemoteSupportTool/issues/25))
16+
- set awtAppClassName for Gnome / Ubuntu Unity ([issue #26](https://github.com/OpenIndex/RemoteSupportTool/issues/26))
17+
18+
419
1.0.1 (13 Mar 2019)
520
-------------------
621

@@ -11,12 +26,9 @@ Changelog for Remote Support Tool
1126
-------------------
1227

1328
- migrated from Tcl/Tk to Java
14-
- implement the whole support session in Java, no need for external
15-
applications (x11vnc, OSXvnc, TightVNC, OpenSSH)
16-
- provide a graphical interface for both sides of a support session
17-
(customer & support staff)
18-
- provided binaries are bundles with a stripped down version of the
19-
OpenJDK runtime environment (version 10)
29+
- implement the whole support session in Java, no need for external applications (x11vnc, OSXvnc, TightVNC, OpenSSH)
30+
- provide a graphical interface for both sides of a support session (customer & support staff)
31+
- provided binaries are bundled with a stripped down version of the OpenJDK runtime environment (version 10)
2032
- provide a signed application bundle for macOS
2133
- switched from MIT to Apache License 2.0
2234

@@ -27,23 +39,19 @@ Changelog for Remote Support Tool
2739
- migrated from Python to Tcl/Tk
2840
- replaced Paramiko with OpenSSH
2941
- implemented a new build process based on Tclkit
30-
- updated to OSXvnc 5.0.1, which should fix problems with Retina displays on
31-
Mac OS X
32-
- rebuild x11vnc, which should fix problems with a missing libxss library
33-
on amd64 based Linux systems
42+
- updated to OSXvnc 5.0.1, which should fix problems with Retina displays on Mac OS X
43+
- rebuild x11vnc, which should fix problems with a missing libxss library on amd64 based Linux systems
3444
- added some more options for GUI configuration via config.ini
3545

3646

3747
0.4.1 (10 Nov 2015)
3848
-------------------
3949

40-
- translated into Italian
41-
(thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
42-
- compatibility fixes for PyInstaller 3
43-
(thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
50+
- translated into Italian (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
51+
- compatibility fixes for PyInstaller 3 (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
4452
- rebuilt with PyInstaller 3 on all supported platforms
4553

4654
0.4 (17 Jun 2015)
4755
-----------------
4856

49-
- first public relase
57+
- first public release

CONTRIBUTING.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,15 @@
33

44
## Notes about branches
55

6-
This project follows the principles of the
7-
[GitFlow branching model](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/)
8-
as [proposed by Vincent Driessen](http://nvie.com/posts/a-successful-git-branching-model/). According to this model you
9-
will find these branches at the GitHub project page:
6+
This project follows the principles of the [GitFlow branching model](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) as [proposed by Vincent Driessen](http://nvie.com/posts/a-successful-git-branching-model/). According to this model you will find these branches at the GitHub project page:
107

11-
- The [master branch](https://github.com/OpenIndex/RemoteSupportTool/tree/master) contains the current stable
12-
releases. No development is directly taking place in that branch.
8+
- The [master branch](https://github.com/OpenIndex/RemoteSupportTool/tree/master) contains the current stable releases. No development is directly taking place in that branch.
139

14-
- The [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) represents the current state of
15-
development. Changes from this branch are merged into
16-
[master](https://github.com/OpenIndex/RemoteSupportTool/tree/master) when a new version is released.
10+
- The [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) represents the current state of development. Changes from this branch are merged into [master](https://github.com/OpenIndex/RemoteSupportTool/tree/master) when a new version is released.
1711

18-
- For more complex features you may also find different feature branches. These are derived from
19-
[develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) and are merged back / removed as
20-
soon as the feature is ready for release.
12+
- For more complex features you may also find different feature branches. These are derived from [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) and are merged back / removed as soon as the feature is ready for release.
2113

22-
> **Notice:** If you like to provide changes to this project, you should always use the
23-
> [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) as basis for your customization. Feel
24-
> free to create separate feature branches for any custom feature you like to share.
14+
> **Notice:** If you like to provide changes to this project, you should always use the [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) as basis for your customization. Feel free to create separate feature branches for any custom feature you like to share.
2515
2616

2717
## Create a pull request
@@ -40,10 +30,10 @@ We love pull requests. Here's a quick guide.
4030
4131
- [Submit a pull request](https://github.com/OpenIndex/RemoteSupportTool/compare/) with the changes from your fork.
4232
43-
At this point you're waiting on us. We like to comment on pull requests as soon as possible. We may suggest some changes
44-
or improvements or alternatives.
33+
At this point you're waiting on us. We like to comment on pull requests as soon as possible. We may suggest some changes or improvements or alternatives.
4534
4635
Some things that will increase the chance that your pull request is accepted:
4736
4837
- Test your changes.
38+
4939
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).

Core/mvn-clean.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
#
3-
# Copyright 2015-2018 OpenIndex.de
3+
# Copyright 2015-2019 OpenIndex.de
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -20,5 +20,5 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2020

2121
set -e
2222
export LANG=en
23-
cd ${DIR}
24-
${MVN} clean
23+
cd "$DIR"
24+
"$MVN" clean

0 commit comments

Comments
 (0)