Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Commit of final revisions for 2.6 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ad11b54de7671201e4f36515613bce59 |
User & Date: | kevin 2015-11-15 22:26:51 |
Context
2015-11-17
| ||
01:00 | Fix serious crash in Windows build check-in: de77c8d1dc user: kevin tags: trunk | |
2015-11-15
| ||
22:26 | Commit of final revisions for 2.6 check-in: ad11b54de7 user: kevin tags: trunk | |
2015-11-13
| ||
11:48 | Additional tweaks check-in: 83230a13ac user: kevin tags: trunk | |
Changes
Changes to filemorph.c.
︙ | |||
40 41 42 43 44 45 46 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | - + - - - - - - - - - + | int main( int argc , char **argv , char **env ) { // Get current module's full path TCHAR exedir [MAX_PATH] = ""; GetModuleFileName( 0, exedir, MAX_PATH ); |
︙ |
Changes to filemorph.pl.
1 2 3 4 5 6 7 | 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 | - + + + + + + | # FileMorph: Rename files, edit attributes #Copyright (C) 2015 WordTech Communications LLC #MIT license #let's get started |
︙ | |||
529 530 531 532 533 534 535 536 537 538 539 540 541 542 | 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | + + + | Tkx::MainLoop(); exit; ###----subroutines sub shutdown { if (IS_WINDOWS) { Win32::GUI::Show($DOS); } &Tkx::exit; } sub makeImage { my $data = "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xh BQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA |
︙ | |||
1237 1238 1239 1240 1241 1242 1243 | 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 | - + + | if ($appversion < $versionnumber) { if ($IS_AQUA) { &Tkx::softwareupdate__updatePitchPerl($appname, $versionnumber, $appversion, $changelog); } if ($IS_WINDOWS) { |
︙ |
Changes to scriptlibs/softwareupdate/softwareupdate.tcl.
︙ | |||
271 272 273 274 275 276 277 | 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | - + | wm deiconify .update raise .update wm transient .update . } proc winPitch {name newversion oldversion} { |
︙ |