Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Tweaks for Windows |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
493de1fdc75eb7bd8ac9f6ef7bf2e426 |
User & Date: | kevin 2020-05-01 13:55:26 |
Context
2020-05-07
| ||
15:59 | Updates for 2.0 check-in: b2f9f853cf user: kevin tags: trunk | |
2020-05-01
| ||
13:55 | Tweaks for Windows check-in: 493de1fdc7 user: kevin tags: trunk | |
13:11 | Tweaks for WindowS check-in: 72deeb91ec user: kevin tags: trunk | |
Changes
Changes to stringscan.rb.
︙ | ︙ | |||
14 15 16 17 18 19 20 | FileUtils.cp_r(File.dirname(__FILE__) + '/lib/tcl8/.', File.dirname(File.dirname(File.dirname(__FILE__))) + '/lib/tcl8', remove_destination: true) FileUtils.cp_r(File.dirname(__FILE__) + '/lib/tk8.6/.', File.dirname(File.dirname(File.dirname(__FILE__))) + '/lib/tk8.6', remove_destination: true) rescue raise end end end | < > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | FileUtils.cp_r(File.dirname(__FILE__) + '/lib/tcl8/.', File.dirname(File.dirname(File.dirname(__FILE__))) + '/lib/tcl8', remove_destination: true) FileUtils.cp_r(File.dirname(__FILE__) + '/lib/tk8.6/.', File.dirname(File.dirname(File.dirname(__FILE__))) + '/lib/tk8.6', remove_destination: true) rescue raise end end end require_relative 'tkballoonhelp' require 'tkextlib/tile' require 'find' require 'tkextlib/tkDND' require 'fileutils' $platform = Tk.windowingsystem if $platform == 'aqua' require 'tk/tk_mac' end if $platform == 'win32' require 'tk/winpkg' Tk::WinDDE.servername('Stringscan') end TkPackage.require('regproc') TkPackage.require('machelp') TkPackage.require('softwareupdate') TkPackage.require('xplat') if $platform == 'aqua' $accelkey = 'Command' |
︙ | ︙ |