Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Changes for 2.6.4 listed |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
812fc2426e8ab6c36dfce576c694fb8e |
User & Date: | peter 2013-09-23 00:08:13.713 |
Context
2013-09-26
| ||
17:04 | Fixed error printing patch with only deleted or inserted files. check-in: 58a58bc4e3 user: peter tags: trunk | |
2013-09-23
| ||
00:08 | Changes for 2.6.4 listed check-in: 812fc2426e user: peter tags: trunk | |
2013-08-21
| ||
22:50 | Bumped revision to 2.6.4 check-in: 9da8f6a3ae user: peter tags: trunk | |
Changes
Changes to htdocs/changes.html.
︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | + + + + + + + + + + + + + | <a href='../../../wiki'>Wiki</a> <a href='../../../login'>Login</a> </div> <div class="content"> <h3>Changes</h3> Changes in v2.6.4 (2013-08-22):<br> <ul> <li>Include afm font for consistent PDF printing.</li> <li>Add .pdf to print file by default</li> <li>Fixed bug that marked extra changes in scroll map when displaying a patch.</li> <li>Avoid getting double .-files in dirdiff on Windows.</li> <li>Corrected display of ancestor lines in three-way merge.</li> </ul> Changes in v2.6.3 (2012-08-21):<br> <ul> <li> Added Revert button in Revision mode </li> <li> Added -pivot flag to control diff algorithm. This cuts down processing time for certain large files.</li> </ul> Changes in v2.6.2 (2012-06-18):<br> <ul> <li> Fixed bug where extra lines showed when displaying only diffs (no context).</li> <li> Include added files when using -review with Fossil.</li> <li> Improved plugin viewer and PDF print dialog.</li> <li> Support regsub preprocessing controlled per side.</li> <li> Support branches in Subversion.</li> |
︙ |
Changes to src/printobj.tcl.
︙ | |||
75 76 77 78 79 80 81 | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - + + + | # Figure out font size from number of chars per line set charwidthHead [$pdf getCharWidth "0"] set charwidth [expr {$width / 2.0 / ($options(-cpl) + $options(-cpln) + 1)}] set fontsize [expr {$options(-headsize) * $charwidth / $charwidthHead}] $pdf setFont $fontsize # Text metrics |
︙ |