Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix after plugin restructure. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
469c6f07fc8c11702dd1d08e0c64ddb5 |
User & Date: | peter 2021-02-28 15:35:36.920 |
Context
2021-02-28
| ||
15:36 | Ballonhelp within frame check-in: 1bd10af7e2 user: peter tags: trunk | |
15:35 | Fix after plugin restructure. check-in: 469c6f07fc user: peter tags: trunk | |
2021-02-11
| ||
22:50 | Copy from Debug editor check-in: 26190b99e8 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2020-10-30 Correct parent in dialogs. 2020-09-28 Prune alone files dir diff. 2020-09-02 | > > > | 1 2 3 4 5 6 7 8 9 10 | 2020-12-10 Working towards runtime plugins. 2020-10-30 Correct parent in dialogs. 2020-09-28 Prune alone files dir diff. 2020-09-02 |
︙ | ︙ |
Changes to src/startup.tcl.
︙ | ︙ | |||
438 439 440 441 442 443 444 | exit } } proc optValidatePlugin {opt arg} { # We must start up completely to check a plugin Init set res [LocatePlugin $arg] | | | 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | exit } } proc optValidatePlugin {opt arg} { # We must start up completely to check a plugin Init set res [LocatePlugin $arg] set src [dict get $res file] if {$src eq ""} { puts "Bad plugin: $arg" printPlugins exit } # Look for declarations of command line options foreach {name flag doc} [dict get $res opts] { |
︙ | ︙ |