TextSweep

Check-in [d7e7b3b791]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Refresh Windows build
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d7e7b3b791ab69301334528d5f9219fe7c17ec5a
User & Date: kevin 2018-02-24 18:48:00
Context
2018-02-24
22:31
Update version info for Win check-in: ca258071a1 user: kevin tags: trunk
18:48
Refresh Windows build check-in: d7e7b3b791 user: kevin tags: trunk
2018-02-19
21:21
Update Windows build check-in: 46b0051315 user: kevin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to makeinstaller.bat.

1
2
3
4
5
6
7
8
9
10
call 7za a textsweep.zip .\build\*

iexpress /n textsweep.sed

set VERSION="4.0.0.0 (%date%)"
set FILEDESCR=/s desc "Installer for TextSweep"
set COMPINFO=/s company "WordTech Communications LLC" /s (c) "(c) 2018"
set PRODINFO=/s product "TextSweep" /pv "4.0.0.0"

"C:\Users\kevin\Desktop\verpatch.exe" /va TextSweep_Setup.exe %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% 




|


|


1
2
3
4
5
6
7
8
9
10
call 7za a textsweep.zip .\build\*

iexpress /n textsweep.sed

set VERSION="4.1.0.0 (%date%)"
set FILEDESCR=/s desc "Installer for TextSweep"
set COMPINFO=/s company "WordTech Communications LLC" /s (c) "(c) 2018"
set PRODINFO=/s product "TextSweep" /pv "4.1.0.0"

"C:\Users\kevin\Desktop\verpatch.exe" /va TextSweep_Setup.exe %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% 

Changes to scriptlibs/textsweep/textsweep-main.tcl.

179
180
181
182
183
184
185



186
187
188
189
190
191
192
    }

    menu .mb.search -tearoff -0
    .mb.search add command -label "Select Directory" -command setDir 
    .mb.search add command -label "Replace Text" -command batchReplace -accelerator "[xplat::controlkey]-H"
    .mb.search add command -label "Undo" -command batchUndo -accelerator "[xplat::controlkey]-Z"
    .mb add cascade -label "Search" -menu .mb.search



    
    
    if {[tk windowingsystem] eq "aqua"} {
	#window menu
	menu .mb.window
	.mb add cascade -label Window -menu .mb.window
    }







>
>
>







179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
    }

    menu .mb.search -tearoff -0
    .mb.search add command -label "Select Directory" -command setDir 
    .mb.search add command -label "Replace Text" -command batchReplace -accelerator "[xplat::controlkey]-H"
    .mb.search add command -label "Undo" -command batchUndo -accelerator "[xplat::controlkey]-Z"
    .mb add cascade -label "Search" -menu .mb.search
	if {[tk windowingsystem] eq "win32"} {
	.mb.search add command -label "Exit" -command exit
	}
    
    
    if {[tk windowingsystem] eq "aqua"} {
	#window menu
	menu .mb.window
	.mb add cascade -label Window -menu .mb.window
    }