rwdtinker 1.76 → 1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Readme.txt +20 -7
- data/code/superant.com.rwdtinkerbackwindow/listzips.rb +8 -2
- data/configuration/rwdtinker.dist +2 -2
- data/lib/rwd/rwd.rb +21 -558
- data/lib/rwdthemes/default.rwd +317 -0
- data/lib/rwdthemes/pda.rwd +72 -0
- data/lib/rwdthemes/windowslike.rwd +171 -0
- data/rwd_files/HowTo_Tinker.txt +4 -0
- data/tests/makedist.rb +1 -1
- metadata +5 -2
data/Readme.txt
CHANGED
@@ -19,13 +19,6 @@ ruby init.rb
|
|
19
19
|
Then point your web browser to:
|
20
20
|
http://localhost:7705/
|
21
21
|
|
22
|
-
Change language at:
|
23
|
-
|
24
|
-
configuration/language.dist
|
25
|
-
|
26
|
-
Change to Windows XP directory structure at:
|
27
|
-
configuration/tinkerwin2variables.dist
|
28
|
-
|
29
22
|
== Viewing installed Applets:
|
30
23
|
|
31
24
|
Go to "List Scripts" tab
|
@@ -234,6 +227,26 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
234
227
|
Thanks, Steven Gibson
|
235
228
|
|
236
229
|
== Changelog
|
230
|
+
Version 1.77
|
231
|
+
Fixed zips location to be relative or absolute
|
232
|
+
Made themes loadable
|
233
|
+
|
234
|
+
Version 1.76
|
235
|
+
Move rwd code files into lib directory - bug - 21886
|
236
|
+
change tab name list applets - bug - 21864
|
237
|
+
change extra folder to be lib folder - bug 21887
|
238
|
+
remove duplicate intall applet code - bug 21885
|
239
|
+
On Menu tab/Selection Tab - add help button - bug 21884
|
240
|
+
clean up directory structure in gui directory - bug 21882
|
241
|
+
|
242
|
+
Version 1.75
|
243
|
+
change rwd.rb to use UTF-8 for web pages
|
244
|
+
add language load for applets
|
245
|
+
|
246
|
+
Version 1.74
|
247
|
+
remove remote control from help
|
248
|
+
more dependable gui loading for applets
|
249
|
+
|
237
250
|
Version 1.73
|
238
251
|
more debug info in initiateapplet
|
239
252
|
remove gutenberg lang translations
|
@@ -5,8 +5,14 @@ def fillziptoinstallname(inffile)
|
|
5
5
|
|
6
6
|
end
|
7
7
|
|
8
|
-
def listzipfilestoinstall
|
9
|
-
|
8
|
+
def listzipfilestoinstall
|
9
|
+
|
10
|
+
if $zipslocation.slice(0,1) == "/" || $zipslocation.include?(":")
|
11
|
+
startlangdir = $zipslocation
|
12
|
+
else
|
13
|
+
startlangdir = File.join($progdir, $zipslocation )
|
14
|
+
end
|
15
|
+
|
10
16
|
#get a list of the files and subdirectories on the starting directory only
|
11
17
|
|
12
18
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
##VERSION:1.
|
1
|
+
##VERSION:1.77
|
2
2
|
ConfigurationDir = "configuration" # for use in program - init.rb has this value without using this constant
|
3
3
|
CodeName = "rwdtinker"
|
4
4
|
CodeNameFile = CodeName + ".rb"
|
@@ -14,5 +14,5 @@ LangDir = "lang"
|
|
14
14
|
$rwdjumplink = ["helpscreen","tinkerbackwindow","returntomain","opendocuments","editconfiguration"]
|
15
15
|
Browser_Exe = 'mozilla '
|
16
16
|
$tinkerdocumentsarray +=["HowTo_Tinker.txt","rwdapplications.html","RubyWebDialogs.html"]
|
17
|
-
RwdTinkerVersion = "1.
|
17
|
+
RwdTinkerVersion = "1.77"
|
18
18
|
|