Skip to content

Commit 0fe4c00

Browse files
committed
Finish v0.4.1
2 parents ab1cf58 + a53e910 commit 0fe4c00

17 files changed

Lines changed: 335 additions & 263 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.idea/tasks.xml
44
.idea/dictionaries
55
src/locales/**/*.po~
6+
target/

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ Changelog for Remote Support Tool
22
=================================
33

44

5+
0.4.1 (10 Nov 2015)
6+
-------------------
7+
8+
- translated into Italian (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
9+
- compatibility fixes for PyInstaller 3 (thanks to [Sjd-Risca](https://github.com/Sjd-Risca))
10+
- rebuilt with PyInstaller 3 on all supported platforms
11+
512
0.4 (17 Jun 2015)
613
-----------------
714

CONTRIBUTING.md

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,47 @@
11
# Contributing
22

3-
We love pull requests. Here's a quick guide.
43

5-
Fork, then clone the repo:
4+
## Notes about branches
5+
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:
10+
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.
13+
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.
17+
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.
21+
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.
25+
26+
27+
## Create a pull request
28+
29+
We love pull requests. Here's a quick guide.
630

7-
git clone git@github.com:your-username/RemoteSupportTool.git
31+
- Fork this project into you GitHub profile.
832

9-
Do your changes, push to your fork and [submit a pull request](https://github.com/OpenIndex/RemoteSupportTool/compare/).
33+
- Clone the [develop branch](https://github.com/OpenIndex/RemoteSupportTool/tree/develop) of the repository to your
34+
local disk:
35+
```
36+
git clone -b develop git@github.com:your-username/RemoteSupportTool.git
37+
```
38+
39+
- Do your changes to the local repository and push the changes back into your fork at GitHub.
40+
41+
- [Submit a pull request](https://github.com/OpenIndex/RemoteSupportTool/compare/) with the changes from your fork.
1042
11-
At this point you're waiting on us. We like to comment on pull requests as soon
12-
as possible. We may suggest some changes or improvements or alternatives.
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.
1345
1446
Some things that will increase the chance that your pull request is accepted:
1547

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Remote Support Tool 0.4
2-
=======================
1+
Remote Support Tool 0.4.1
2+
=========================
33

44
*Remote Support Tool* is an easy single click solution for remote maintenance via
55
[VNC](https://en.wikipedia.org/wiki/Virtual_Network_Computing) inspired by
@@ -127,7 +127,7 @@ Supported operating systems
127127
Translations
128128
------------
129129

130-
*Remote Support Tool* is developed in **English** and is already translated into **German**. The
130+
*Remote Support Tool* is developed in **English** and is already translated into **German** and **Italian**. The
131131
[translation documentation](https://github.com/OpenIndex/RemoteSupportTool/wiki/Translation) contains informations
132132
about how to translate the application for yourself.
133133

@@ -144,5 +144,5 @@ Further informations
144144

145145
- [*Remote Support Tool* at GitHub](https://github.com/OpenIndex/RemoteSupportTool)
146146
- [Releases of *Remote Support Tool*](https://github.com/OpenIndex/RemoteSupportTool/releases)
147-
- [Changelog of *Remote Support Tool*](https://github.com/OpenIndex/RemoteSupportTool/blob/master/CHANGELOG.md)
147+
- [Changelog of *Remote Support Tool*](https://github.com/OpenIndex/RemoteSupportTool/blob/develop/CHANGELOG.md)
148148
- [Documentation of *Remote Support Tool*](https://github.com/OpenIndex/RemoteSupportTool/wiki)

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@echo off
99

1010
:: path to pyinstaller script
11-
set BUILD=C:\Python27\Scripts\pyi-build.exe
11+
set BUILD=C:\Python27\Scripts\pyinstaller.exe
1212

1313
:: get current directory
1414
set BASE_DIR=%~dp0

misc/Remote-Support-Tool.pot

Lines changed: 62 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) YEAR OpenIndex
3-
# This file is distributed under the same license as the PACKAGE package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
1+
#
2+
# Copyright (C) 2015 OpenIndex
3+
# This file is distributed under the same license as the Remote Support Tool package.
54
#
65
#, fuzzy
76
msgid ""
87
msgstr ""
9-
"Project-Id-Version: Remote Support Tool 0.4\n"
8+
"Project-Id-Version: Remote Support Tool 0.5\n"
109
"Report-Msgid-Bugs-To: info@openindex.de\n"
11-
"POT-Creation-Date: 2015-06-16 16:44+0200\n"
10+
"POT-Creation-Date: 2015-11-08 18:03+0100\n"
1211
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1312
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1413
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,204 +82,210 @@ msgid "Translators"
8382
msgstr ""
8483

8584
#: GUI.py:133
86-
msgid ""
87-
"There are currently no translations available besides the default languages "
88-
"(English and German)."
85+
msgid "English"
8986
msgstr ""
9087

91-
#: GUI.py:136
92-
msgid "Internal components"
88+
#: GUI.py:134
89+
msgid "German"
90+
msgstr ""
91+
92+
#: GUI.py:135
93+
msgid "Italian"
9394
msgstr ""
9495

9596
#: GUI.py:138
97+
msgid "Internal components"
98+
msgstr ""
99+
100+
#: GUI.py:140
96101
msgid "The following third party components were integrated:"
97102
msgstr ""
98103

99-
#: GUI.py:154
104+
#: GUI.py:156
100105
msgid "Embedded VNC application"
101106
msgstr ""
102107

103-
#: GUI.py:156
108+
#: GUI.py:158
104109
#, python-brace-format
105110
msgid ""
106111
"The software {0} was embedded into this application in order to access your "
107112
"{1} system via VNC."
108113
msgstr ""
109114

110-
#: GUI.py:159
115+
#: GUI.py:161
111116
msgid "Created with"
112117
msgstr ""
113118

114-
#: GUI.py:161
119+
#: GUI.py:163
115120
msgid "The application was created with:"
116121
msgstr ""
117122

118-
#: GUI.py:167
123+
#: GUI.py:169
119124
msgid "License"
120125
msgstr ""
121126

122-
#: GUI.py:192
127+
#: GUI.py:194
123128
msgid "Project at GitHub"
124129
msgstr ""
125130

126-
#: GUI.py:196
131+
#: GUI.py:198
127132
msgid "Close"
128133
msgstr ""
129134

130-
#: GUI.py:247
135+
#: GUI.py:249
131136
msgid "Use this application in order to allow access on your desktop."
132137
msgstr ""
133138

134-
#: GUI.py:280
139+
#: GUI.py:282
135140
msgid "Welcome to remote maintenance."
136141
msgstr ""
137142

138-
#: GUI.py:315
143+
#: GUI.py:317
139144
msgid "Connection is established."
140145
msgstr ""
141146

142-
#: GUI.py:321
147+
#: GUI.py:323
143148
msgid "Establishing a connection..."
144149
msgstr ""
145150

146-
#: GUI.py:327
151+
#: GUI.py:329
147152
msgid "The connection was closed."
148153
msgstr ""
149154

150-
#: GUI.py:350
155+
#: GUI.py:352
151156
msgid "Quit"
152157
msgstr ""
153158

154-
#: GUI.py:353
159+
#: GUI.py:355
155160
msgid "About"
156161
msgstr ""
157162

158-
#: GUI.py:359
163+
#: GUI.py:361
159164
msgid "Connect"
160165
msgstr ""
161166

162-
#: GUI.py:362
167+
#: GUI.py:364
163168
msgid "Disconnect"
164169
msgstr ""
165170

166-
#: GUI.py:398
171+
#: GUI.py:400
167172
msgid "Address"
168173
msgstr ""
169174

170-
#: GUI.py:406
175+
#: GUI.py:408
171176
msgid "Port-Nr"
172177
msgstr ""
173178

174-
#: GUI.py:412
179+
#: GUI.py:414
175180
msgid "Enable SSH encryption."
176181
msgstr ""
177182

178-
#: GUI.py:416
183+
#: GUI.py:418
179184
msgid "Extended..."
180185
msgstr ""
181186

182-
#: GUI.py:504
187+
#: GUI.py:506
183188
msgid "Extended Settings"
184189
msgstr ""
185190

186-
#: GUI.py:521
191+
#: GUI.py:523
187192
msgid "Submit"
188193
msgstr ""
189194

190-
#: GUI.py:523
195+
#: GUI.py:525
191196
msgid "Cancel"
192197
msgstr ""
193198

194-
#: GUI.py:546 GUI.py:549
199+
#: GUI.py:548 GUI.py:551
195200
msgid "Incorrect settings!"
196201
msgstr ""
197202

198-
#: GUI.py:577
203+
#: GUI.py:579
199204
msgid "Settings for VNC"
200205
msgstr ""
201206

202-
#: GUI.py:582
207+
#: GUI.py:584
203208
msgid "Application file"
204209
msgstr ""
205210

206-
#: GUI.py:586 GUI.py:632
211+
#: GUI.py:588 GUI.py:634
207212
msgid "Select"
208213
msgstr ""
209214

210-
#: GUI.py:589
215+
#: GUI.py:591
211216
msgid "Use provided program."
212217
msgstr ""
213218

214-
#: GUI.py:595
219+
#: GUI.py:597
215220
msgid "Parameters"
216221
msgstr ""
217222

218-
#: GUI.py:602
223+
#: GUI.py:604
219224
msgid "Settings for SSH"
220225
msgstr ""
221226

222-
#: GUI.py:607
227+
#: GUI.py:609
223228
msgid "SSH Port-Nr"
224229
msgstr ""
225230

226-
#: GUI.py:614
231+
#: GUI.py:616
227232
msgid "User"
228233
msgstr ""
229234

230-
#: GUI.py:621
235+
#: GUI.py:623
231236
msgid "Password"
232237
msgstr ""
233238

234-
#: GUI.py:628
239+
#: GUI.py:630
235240
msgid "Private Key"
236241
msgstr ""
237242

238-
#: GUI.py:638
243+
#: GUI.py:640
239244
msgid "Use provided private key."
240245
msgstr ""
241246

242-
#: GUI.py:651
247+
#: GUI.py:653
243248
#, python-brace-format
244249
msgid "Select VNC application '{0}'."
245250
msgstr ""
246251

247-
#: GUI.py:658
252+
#: GUI.py:660
248253
msgid "executable files"
249254
msgstr ""
250255

251-
#: GUI.py:659 GUI.py:684
256+
#: GUI.py:661 GUI.py:686
252257
msgid "all files"
253258
msgstr ""
254259

255-
#: GUI.py:677
260+
#: GUI.py:679
256261
msgid "Select SSH private key file."
257262
msgstr ""
258263

259-
#: GUI.py:723
264+
#: GUI.py:725
260265
msgid "No VNC application was specified."
261266
msgstr ""
262267

263-
#: GUI.py:725
268+
#: GUI.py:727
264269
msgid "The VNC application does not point to a file."
265270
msgstr ""
266271

267-
#: GUI.py:730
272+
#: GUI.py:732
268273
msgid "No SSH user name was specified."
269274
msgstr ""
270275

271-
#: GUI.py:738
276+
#: GUI.py:740
272277
msgid "The private key file is invalid."
273278
msgstr ""
274279

275-
#: GUI.py:744
280+
#: GUI.py:746
276281
msgid "Can't open private key with the provided password."
277282
msgstr ""
278283

279-
#: GUI.py:749
284+
#: GUI.py:751
280285
msgid "The SSH port number is invalid."
281286
msgstr ""
282287

283-
#: GUI.py:751
288+
#: GUI.py:753
284289
#, python-brace-format
285290
msgid "The SSH port number is not in the interval from {0} to {1}."
286291
msgstr ""

misc/Remote-Support-Tool.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ARCH_DIR = os.path.join(SRC_DIR, 'arch', ARCH)
5454
# Start Analysis to find the files the program needs.
5555
#
5656

57-
a = Analysis([os.path.join('../src', 'Support.py')],
57+
a = Analysis([os.path.join(SRC_DIR, 'Support.py')],
5858
pathex=[BASE_DIR,],
5959
hiddenimports=[],
6060
excludes=EXCLUCES,

0 commit comments

Comments
 (0)