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: |
83d6383bd133f2528e09c677a483ecdc |
User & Date: | kevin 2017-04-24 02:54:40 |
Context
2017-06-21
| ||
03:51 | Tweak to regproc check-in: 27f79b5b2a user: kevin tags: trunk | |
2017-04-24
| ||
02:54 | rev bump check-in: 83d6383bd1 user: kevin tags: trunk | |
2017-04-08
| ||
02:23 | Hotfix for tls issues on macOS check-in: 8bfea4409e user: kevin tags: trunk | |
Changes
Changes to libs/machelp/help.txt.
︙ | ︙ | |||
218 219 220 221 222 223 224 225 226 227 228 229 230 231 | * Help viewer by Keith Vetter: [http://wiki.tcl.tk/19649]. * aem package for AppleScript support. Website and license: [http://fossil.codebykevin.com]. ------------------- title: PortAuthority Version History alias: History '''7.5 (February 1, 2017):''' * Improved security on software updates. * Minor UI enhancements. '''7.4 (July 2, 2016):''' * Performance improvements. * Minor bug fixes. | > > > | 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | * Help viewer by Keith Vetter: [http://wiki.tcl.tk/19649]. * aem package for AppleScript support. Website and license: [http://fossil.codebykevin.com]. ------------------- title: PortAuthority Version History alias: History '''7.6 (May 1, 2017):''' * Improved scrolling performance, security support on macOS. '''7.5 (February 1, 2017):''' * Improved security on software updates. * Minor UI enhancements. '''7.4 (July 2, 2016):''' * Performance improvements. * Minor bug fixes. |
︙ | ︙ |
Changes to libs/portauthority/pkgIndex.tcl.
1 |
| | | 1 2 3 | package ifneeded portauthority 7.6 [list source [file join $dir portauthority.tcl]] |
Changes to libs/portauthority/portauthority-main.tcl.
︙ | ︙ | |||
2002 2003 2004 2005 2006 2007 2008 | #"about application" command proc tkAboutDialog {} { aboutWindow } proc aboutWindow {} { | | | 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 | #"about application" command proc tkAboutDialog {} { aboutWindow } proc aboutWindow {} { tk_messageBox -parent . -icon info -title "About PortAuthority" -message "PortAuthority: GUI for MacPorts" -detail "Version 7.6\n(c)2017 WordTech Communications LLC" } #initialization routines on startup proc startUp {} { |
︙ | ︙ | |||
2045 2046 2047 2048 2049 2050 2051 | if {![file exists $datadir/portauthority.rc]} { checkPref } if { [file exists $datadir/portauthority.rc]} { catch [list source $datadir/portauthority.rc ] | | | 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 | if {![file exists $datadir/portauthority.rc]} { checkPref } if { [file exists $datadir/portauthority.rc]} { catch [list source $datadir/portauthority.rc ] appname::setAppName PortAuthority 7.6 softwareupdate::setVersion $appname::name $appname::version machelp::setAppName $appname::name $appname::version checkMacPorts drawGUI setPref getAllPorts catch {toggleCopyText} |
︙ | ︙ |
Changes to libs/portauthority/portauthority.tcl.
|
| | | 1 2 3 4 | package provide portauthority 7.6 source [file join [file dirname [info script]] portauthority-main.tcl] |