TextSweep

Check-in [fa050b0465]
Login

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

Overview
Comment:Update to 4.2 for macOS
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fa050b04651a930ef54c0dfccaf9b2f18606e46a
User & Date: kevin 2018-04-21 18:50:05
Context
2018-04-22
02:18
Update softwareupdate lib check-in: 0f6ca17326 user: kevin tags: trunk
2018-04-21
18:50
Update to 4.2 for macOS check-in: fa050b0465 user: kevin tags: trunk
2018-02-24
22:50
Windows mods check-in: d0684967fe user: kevin tags: trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Changes to scriptlibs/machelp/help.txt.

115
116
117
118
119
120
121




122
123
124
125
126
127
128
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132







+
+
+
+







 * Icon fonts from Iconic project. Website and license: [https://github.com/somerandomdude/Iconic].
 * Help viewer by Keith Vetter: [http://wiki.tcl.tk/19649].
 * TkDND for drag and drop. Website and license: [http://sourceforge.net/projects/tkdnd/].

-------------------
title: TextSweep Version History
alias: History

'''4.2 (April 20, 2018):'''
 * Migrate to new source code server. 
 * Minor bug fixes.

'''4.1 (February 20, 2018):'''
 * Improved resizing of main window for efficient UI.
 * Removal of console on Windows.

'''4.0 (January 1, 2018):'''
 * New scripting API for Mac and Windows.

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

100
101
102
103
104
105
106
107

108
109
110
111
112
113
114
100
101
102
103
104
105
106

107
108
109
110
111
112
113
114







-
+







#"about application" command
proc tkAboutDialog {} {
    aboutWindow
}

proc aboutWindow {} {

   tk_messageBox -parent . -icon info -title "About TextSweep" -message "TextSweep: Search and Replace Tool" -detail "Version 4.1\n(c) 2018 WordTech Communications LLC"
   tk_messageBox -parent . -icon info -title "About TextSweep" -message "TextSweep: Search and Replace Tool" -detail "Version 4.2\n(c) 2018 WordTech Communications LLC"


}

#check file list to ensure existence
proc checkfilelist {} {

620
621
622
623
624
625
626
627

628
629
630
631
632
633
634
620
621
622
623
624
625
626

627
628
629
630
631
632
633
634







-
+







#initialize the app
proc startUp {} {
    global appname
    global appversion
    global datadir
    global cachedir
    
    appname::setAppName TextSweep 4.1
    appname::setAppName TextSweep 4.2
    
    set datadir [xplat::appconfig TextSweep]


    makeImage
    softwareupdate::setVersion $appname::name $appname::version
    machelp::setAppName $appname::name $appname::version

Changes to versioninfo.rc.

1
2
3


4
5
6
7
8
9
10
11
12

13
14
15

16
17
18
19
20
21
1


2
3
4
5
6
7
8
9
10
11

12
13
14

15
16
17
18
19
20
21

-
-
+
+








-
+


-
+






1 VERSIONINFO
FILEVERSION 4, 1, 0, 0
PRODUCTVERSION 4, 1, 0, 0
FILEVERSION 4, 2, 0, 0
PRODUCTVERSION 4, 2, 0, 0
FILEOS 4
FILETYPE 1
{
    BLOCK "StringFileInfo" {
        BLOCK "040904E4" {
            VALUE "FileDescription", "Powerful search and replace"
            VALUE "OriginalFilename", "TextSweep"
            VALUE "CompanyName", "WordTech Communications LLC"
            VALUE "FileVersion", "4.1.0"
            VALUE "FileVersion", "4.2.0"
            VALUE "LegalCopyright", "(c) 2018 WordTech Communications LLc"
            VALUE "ProductName", "TextSweep"
            VALUE "ProductVersion", "4.1.0"
            VALUE "ProductVersion", "4.2.0"
        }
    }
    BLOCK "VarFileInfo" {
        VALUE "Translation", 0x409, 1252
    }
}