Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch dia-pdf Excluding Merge-Ins
This is equivalent to a diff from 590abe6a19 to af84939c28
2024-06-03
| ||
16:47 | history - ticket [5e324065bf] <B, EF> Thanks to meshparts for the submission, and patience. EF: Avoid multiple add of same text to the entry history B: Fixed bogus 2x up-arrow needed to see previous entry, at the end of the history list. Bumped versions to 0.2 Updated docs. Regenerated docs. check-in: c86f0a63bc user: aku tags: trunk | |
2024-06-01
| ||
14:25 | Updated branch to tklib head. (2024-07-01) Closed this leaf. Was manually integrated into trunk, see [26e059e283]. Thanks to Arjen. Closed-Leaf check-in: af84939c28 user: aku tags: dia-pdf | |
14:19 | ico - ticket [3295abf078] <B> Fixed use of old `image put` syntax. Bumped versions. Updated docs. check-in: 590abe6a19 user: aku tags: trunk | |
14:05 | build - gendict - ticket [b157125b02] <B> Restrict package search in gen-dict to .tcl files. None of which should be binary. check-in: 954034e7bd user: aku tags: trunk | |
2015-01-05
| ||
17:37 | Ticket [88507dbd48]. Fixes to the canvas/pdf format, and the diagram viewer itself (error reporting). check-in: 04b7108ed8 user: andreask tags: dia-pdf | |
Changes to apps/diagram-viewer.man.
︙ | |||
73 74 75 76 77 78 79 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | - + + + + | the file. [arg_def (handle) format in] This argument specifies the image format to convert the diagrams into when processing the input. The application recognizes all formats supported by the [package Img] package, i.e. for which it can load a |
︙ |
Added modules/canvas/canvas_pdf.man.
|
Added modules/canvas/canvas_pdf.tcl.
|
Changes to modules/canvas/pkgIndex.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | if {![package vsatisfies [package provide Tcl] 8.4-]} {return} package ifneeded canvas::sqmap 0.3.1 [list source [file join $dir canvas_sqmap.tcl]] package ifneeded canvas::zoom 0.2.1 [list source [file join $dir canvas_zoom.tcl]] if {![package vsatisfies [package provide Tcl] 8.5-]} { return } package ifneeded canvas::drag 0.1 [list source [file join $dir canvas_drag.tcl]] package ifneeded canvas::edit::circle 0.1 [list source [file join $dir canvas_ecircle.tcl]] package ifneeded canvas::edit::points 0.3 [list source [file join $dir canvas_epoints.tcl]] package ifneeded canvas::edit::polyline 0.2 [list source [file join $dir canvas_epolyline.tcl]] package ifneeded canvas::edit::quadrilateral 0.1 [list source [file join $dir canvas_equad.tcl]] package ifneeded canvas::edit::rectangle 0.1 [list source [file join $dir canvas_erectangle.tcl]] package ifneeded canvas::gradient 0.2 [list source [file join $dir canvas_gradient.tcl]] package ifneeded canvas::highlight 0.1 [list source [file join $dir canvas_highlight.tcl]] package ifneeded canvas::mvg 1 [list source [file join $dir canvas_mvg.tcl]] package ifneeded canvas::pdf 1.0.1 [list source [file join $dir canvas_pdf.tcl]] package ifneeded canvas::snap 1.0.1 [list source [file join $dir canvas_snap.tcl]] package ifneeded canvas::tag 0.1 [list source [file join $dir canvas_tags.tcl]] package ifneeded canvas::track::lines 0.1 [list source [file join $dir canvas_trlines.tcl]] |
Changes to modules/diagrams/application.tcl.
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + - + + + + + + | application::ProcessCmdline $arguments application::Run::$mode return } proc ::diagram::application::showerror {text} { global argv0 if {[catch {package present Tk}]} { |
︙ | |||
462 463 464 465 466 467 468 | 468 469 470 471 472 473 474 475 476 | - + | }] 0]/double(1e6)}] puts "... completed in $sec seconds." after 100 return $dip } # # ## ### ##### ######## ############# ##################### |
Changes to modules/diagrams/pkgIndex.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | if {![package vsatisfies [package provide Tcl] 8.5-]} { # PRAGMA: returnok return } package ifneeded diagram::navigation 1 [list source [file join $dir navigation.tcl]] package ifneeded diagram::direction 1 [list source [file join $dir direction.tcl]] package ifneeded diagram::element 1 [list source [file join $dir element.tcl]] package ifneeded diagram::attribute 1 [list source [file join $dir attributes.tcl]] package ifneeded diagram::point 1 [list source [file join $dir point.tcl]] package ifneeded diagram::core 1 [list source [file join $dir core.tcl]] package ifneeded diagram::basic 1.0.1 [list source [file join $dir basic.tcl]] package ifneeded diagram 1 [list source [file join $dir diagram.tcl]] |