Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix error in softwareupdate package |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b50421a159bff354d0486b9709d46e03 |
User & Date: | kevin 2018-04-26 03:16:48 |
Context
2018-12-31
| ||
02:32 | Update for Mojave check-in: a0507cee51 user: kevin tags: trunk | |
2018-04-26
| ||
03:16 | Fix error in softwareupdate package check-in: b50421a159 user: kevin tags: trunk | |
2018-04-23
| ||
02:06 | Update version check-in: 574ad52c74 user: kevin tags: trunk | |
Changes
Changes to libs/softwareupdate/softwareupdate.tcl.
︙ | ︙ | |||
272 273 274 275 276 277 278 | softwareupdate::progressDialog set status "Downloading update for $appname" switch [tk windowingsystem] { "aqua" { | > > > | | | 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | softwareupdate::progressDialog set status "Downloading update for $appname" switch [tk windowingsystem] { "aqua" { update after 1000 #http package causes file corruption of the DMG for some reason exec curl -s https://www.codebykevin.com/updates/[list $appname].dmg -o $tmpdir/[list $appname].dmg update after 1000 cd $tmpdir set status "Attaching [list $appname].dmg" update exec hdiutil attach [list $appname].dmg } "win32" { http::geturl https://www.codebykevin.com/updates/[list $appname]_Setup.exe -binary 1 -channel [open $tmpdir/[list $appname]_Setup.exe wb] } "x11" { tk_messageBox -icon info -parent . -message "Please ask the maintainer of $appname on your platform to prepare a release of the latest version." return } |
︙ | ︙ |