Manpower

Check-in [29b5a8441f]
Login

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

Overview
Comment:Rev bump
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 29b5a8441f3b16950966cc9b4e1684ddae25a8d9
User & Date: kevin 2017-04-24 03:01:20
Context
2017-06-21
03:51
Tweak to regproc check-in: 229b883386 user: kevin tags: trunk
2017-04-24
03:01
Rev bump check-in: 29b5a8441f user: kevin tags: trunk
2017-04-08
02:18
Hotfix for tls issues on macOS check-in: eaae5e2946 user: kevin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to libs/machelp/help.txt.

141
142
143
144
145
146
147



148
149
150
151
152
153
154
 * The "aem" package for custom Apple Event handling.  Website and license: [http://fossil.codebykevin.com].


-------------------
title: Manpower Version History
alias: Version History




'''6.4 (February 1, 2017):'''
 * Improved security on software updates.
 * Minor UI enhancements.

'''6.3 (July 2, 2016):'''
 * Performance improvements.
 * Minor bug fixes.







>
>
>







141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
 * The "aem" package for custom Apple Event handling.  Website and license: [http://fossil.codebykevin.com].


-------------------
title: Manpower Version History
alias: Version History

'''6.5 (May 1, 2017):'''
 * Improved scrolling performance, security support on macOS.

'''6.4 (February 1, 2017):'''
 * Improved security on software updates.
 * Minor UI enhancements.

'''6.3 (July 2, 2016):'''
 * Performance improvements.
 * Minor bug fixes.

Changes to libs/manpower/manpower-main.tcl.

1
2
3
4
5
6
7
8
9
10
# Manpower: Man page browser and viewer 

#Copyright (C) 2016  WordTech Communications LLC

#MIT license

#let's get started

package require Img
package require BWidget


|







1
2
3
4
5
6
7
8
9
10
# Manpower: Man page browser and viewer 

#Copyright (C) 2017  WordTech Communications LLC

#MIT license

#let's get started

package require Img
package require BWidget
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
    global appversion
    global datadir
    global rmanpath
    global cachedir
    global searchterm
    global mynode
    
    appname::setAppName Manpower 6.4


    set rmanpath [file join [file dirname [info script]] rman]

    
    #check for app support directory
    set appdir [file join $::env(HOME) "Library" "Application Support" "Manpower"]







|







1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
    global appversion
    global datadir
    global rmanpath
    global cachedir
    global searchterm
    global mynode
    
    appname::setAppName Manpower 6.5


    set rmanpath [file join [file dirname [info script]] rman]

    
    #check for app support directory
    set appdir [file join $::env(HOME) "Library" "Application Support" "Manpower"]
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
    singleManPage
}


#custom "about" dialog
proc aboutWindow {} {

 tk_messageBox -parent . -icon info -title "About Manpower" -message "Manpower: Man Page Viewer" -detail "Version 6.4\n(c)2017 WordTech Communications LLC"

}

startUp







|




1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
    singleManPage
}


#custom "about" dialog
proc aboutWindow {} {

 tk_messageBox -parent . -icon info -title "About Manpower" -message "Manpower: Man Page Viewer" -detail "Version 6.5\n(c)2017 WordTech Communications LLC"

}

startUp

Changes to libs/manpower/manpower.tcl.

1
2
3
package provide manpower 6.4

source [file join [file dirname [info script]] manpower-main.tcl]
|


1
2
3
package provide manpower 6.5

source [file join [file dirname [info script]] manpower-main.tcl]

Changes to libs/manpower/pkgIndex.tcl.

1
2
3

  package ifneeded manpower 6.4 [list source [file join $dir manpower.tcl]]


|

1
2
3

  package ifneeded manpower 6.5 [list source [file join $dir manpower.tcl]]