Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Tweaks to UI |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a500cd02d796955c4a7657334bfb63e7 |
User & Date: | kevin 2017-03-25 02:09:34 |
Context
2017-03-25
| ||
02:11 | Tweaks to UI check-in: 5c621e259f user: kevin tags: trunk | |
02:09 | Tweaks to UI check-in: a500cd02d7 user: kevin tags: trunk | |
02:04 | Revbump to 3.1 check-in: 11d211a68d user: kevin tags: trunk | |
Changes
Changes to Info-cbk.plist.
1 2 3 4 5 6 7 8 9 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>TextSweep</string> <key>CFBundleGetInfoString</key> | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>TextSweep</string> <key>CFBundleGetInfoString</key> <string>TextSweep 3.1.0 (c) 2017 WordTech Communications LLC</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHighResolutionCapable</key> <true/> <key>LSMinimumSystemVersionByArchitecture</key> <dict> <key>i386</key> <string>10.12</string> <key>x86_64</key> <string>10.12</string> </dict> <key>LSArchitecturePriority</key> <array> <string>x86_64</string> <string>i386</string> </array> <key>LSApplicationCategoryType</key> <string>public.app-category.utilities</string> <key>NSHumanReadableCopyright</key> <string>(c) 2017 WordTech Communications LLC</string> <key>CFBundleIconFile</key> <string>textsweep.icns</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleDocumentTypes</key> <array> <dict> |
︙ | ︙ | |||
52 53 54 55 56 57 58 | <key>CFBundleDisplayName</key> <string>TextSweep</string> <key>CFBundleIdentifier</key> <string>com.codebykevin.com.textsweep-cbk</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> | | | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <key>CFBundleDisplayName</key> <string>TextSweep</string> <key>CFBundleIdentifier</key> <string>com.codebykevin.com.textsweep-cbk</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>3.1.0</string> <key>CFBundleVersion</key> <string>3.1.0</string> <key>LSMinimumSystemVersion</key> <string>10.12</string> <key>LSRequiresCarbon</key> <true/> <key>NSSupportsAutomaticTermination</key> <string>YES</string> <key>NSSupportsSuddenTermination</key> <string>YES</string> <key>SUFeedURL</key> <string>http://www.codebykevin.com/textsweep.xml</string> </dict> </plist> |
Changes to buildapp.
︙ | ︙ |
Changes to scriptlibs/textsweep/textsweep-main.tcl.
︙ | ︙ | |||
91 92 93 94 95 96 97 | #"about application" command proc tkAboutDialog {} { aboutWindow } proc aboutWindow {} { | | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | #"about application" command proc tkAboutDialog {} { aboutWindow } proc aboutWindow {} { tk_messageBox -parent . -icon info -title "About TextSweep" -message "TextSweep: Search and Replace Tool" -detail "Version 3.1\n(c)2017 WordTech Communications LLC" } #check file list to ensure existence proc checkfilelist {} { |
︙ | ︙ |