rwdtinker 1.70 → 1.71
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/configuration/rwdtinker.dist +3 -3
- data/extras/zip/zip.rb +3 -2
- metadata +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
##VERSION:1.
|
1
|
+
##VERSION:1.71
|
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"
|
@@ -9,10 +9,10 @@ LangDir = "lang"
|
|
9
9
|
$help_topic = "general_help"
|
10
10
|
$helptopicsarray = [ "general_help","network_help"]
|
11
11
|
$prevouswindow ="main"
|
12
|
-
$rwdcontrolports =["13713","13714","13715","13716","13717","13718"]
|
12
|
+
$rwdcontrolports =["13713","13714","13715","13716","13717","13718"] # remote control code not actived 2007
|
13
13
|
$port = 7705
|
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.71"
|
18
18
|
|
data/extras/zip/zip.rb
CHANGED
@@ -1047,8 +1047,9 @@ module Zip
|
|
1047
1047
|
|
1048
1048
|
def write_file(entry, destPath, continueOnExistsProc = proc { false })
|
1049
1049
|
if File.exists?(destPath) && ! yield(entry, destPath)
|
1050
|
-
|
1051
|
-
|
1050
|
+
|
1051
|
+
# raise ZipDestinationFileExistsError,
|
1052
|
+
$stderr.puts "Destination '#{destPath}' already exists"
|
1052
1053
|
end
|
1053
1054
|
File.open(destPath, "wb") {
|
1054
1055
|
|os|
|