Skip to content

Commit 252650d

Browse files
committed
Finish v1.0.0
2 parents 5b7e6e9 + cd33b5f commit 252650d

404 files changed

Lines changed: 12999 additions & 32218 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 88 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,88 @@
1-
/*.log
2-
/build
3-
/misc/i18n/**/*.po~
4-
/src/*.log
5-
/target
6-
/utils/ResourceHacker.ini
7-
/utils/build
8-
/utils/target
9-
/temp
1+
target
2+
3+
# Don't put generated keystore / truststore files in repository.
4+
share/ssl/*
5+
!share/ssl/init.sh
6+
!share/ssl/README.md
7+
8+
9+
#
10+
# Default entries for IntelliJ IDEA
11+
# based on https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
12+
#
13+
14+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
15+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
16+
17+
# User-specific stuff
18+
.idea/**/workspace.xml
19+
.idea/**/tasks.xml
20+
.idea/**/usage.statistics.xml
21+
.idea/**/dictionaries/*
22+
.idea/**/shelf
23+
24+
# Generated files
25+
.idea/**/contentModel.xml
26+
27+
# Sensitive or high-churn files
28+
.idea/**/dataSources/
29+
.idea/**/dataSources.ids
30+
.idea/**/dataSources.local.xml
31+
.idea/**/sqlDataSources.xml
32+
.idea/**/dynamic.xml
33+
.idea/**/uiDesigner.xml
34+
.idea/**/dbnavigator.xml
35+
36+
# Gradle
37+
.idea/**/gradle.xml
38+
.idea/**/libraries
39+
40+
# Gradle and Maven with auto-import
41+
# When using Gradle or Maven with auto-import, you should exclude module files,
42+
# since they will be recreated, and may cause churn. Uncomment if using
43+
# auto-import.
44+
.idea/modules.xml
45+
.idea/*.iml
46+
.idea/modules
47+
48+
# CMake
49+
cmake-build-*/
50+
51+
# Mongo Explorer plugin
52+
.idea/**/mongoSettings.xml
53+
54+
# File-based project format
55+
*.iws
56+
57+
# IntelliJ
58+
out/
59+
60+
# mpeltonen/sbt-idea plugin
61+
.idea_modules/
62+
63+
# JIRA plugin
64+
atlassian-ide-plugin.xml
65+
66+
# Cursive Clojure plugin
67+
.idea/replstate.xml
68+
69+
# Crashlytics plugin (for Android Studio and IntelliJ)
70+
com_crashlytics_export_strings.xml
71+
crashlytics.properties
72+
crashlytics-build.properties
73+
fabric.properties
74+
75+
# Editor-based Rest Client
76+
.idea/httpRequests
77+
78+
# Android studio 3.1+ serialized cache file
79+
.idea/caches/build_file_checksums.ser
80+
81+
82+
#
83+
# Modifications to the default entries.
84+
#
85+
86+
# Keep a global dictionary in repository.
87+
!.idea/**/dictionaries/global.xml
88+

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "doc"]
2+
path = doc
3+
url = https://github.com/OpenIndex/RemoteSupportTool.wiki.git

.idea/.name

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

.idea/compiler.xml

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

.idea/dictionaries/global.xml

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

.idea/encodings.xml

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

.idea/misc.xml

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

.idea/vcs.xml

Lines changed: 7 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: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
Changelog for Remote Support Tool
22
=================================
33

4-
0.5.1 (08 Oct 2018)
4+
1.0.0 (20 Oct 2018)
55
-------------------
66

7-
- update to OpenSSH 7.8p1-1 for Windows Vista and newer
8-
- update to TightVNC 2.8.11
9-
- update to OSXvnc 5.2.1
7+
- migrated from Tcl/Tk to Java
8+
- implement the whole support session in Java, no need for external
9+
applications (x11vnc, OSXvnc, TightVNC, OpenSSH)
10+
- provide a graphical interface for both sides of a support session
11+
(customer & support staff)
12+
- provided binaries are bundles with a stripped down version of the
13+
OpenJDK runtime environment (version 10)
14+
- provide a signed application bundle for macOS
15+
- switched from MIT to Apache License 2.0
1016

1117

1218
0.5 (16 Jan 2017)

Core/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

0 commit comments

Comments
 (0)