Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Prepare changes list |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
79267eb4858f2e88db773fa967064ee8 |
User & Date: | peter 2015-02-23 00:41:36.749 |
Context
2015-02-23
| ||
21:53 | Webpage polish check-in: 06b7bff49a user: peter tags: trunk | |
00:41 | Prepare changes list check-in: 79267eb485 user: peter tags: trunk | |
2015-02-22
| ||
23:46 | Code polish to silence syntax warnings. check-in: 63cd9c7aa2 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2014-12-17 Changed the included print font to a true type font. Allow -printFont to be "Courier" for fallback to PDF builtin. 2014-11-25 Added command line -printFont to select a font file for PDF. | > > > | 1 2 3 4 5 6 7 8 9 10 | 2015-02-23 Version support in directory diff, for Fossil, GIT and Subversion. 2014-12-17 Changed the included print font to a true type font. Allow -printFont to be "Courier" for fallback to PDF builtin. 2014-11-25 Added command line -printFont to select a font file for PDF. |
︙ | ︙ |
Changes to htdocs/changes.html.
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <a href='../../../wiki'>Wiki</a> <a href='../../../login'>Login</a> </div> <div class="content"> <h3>Changes</h3> Changes in v2.6.7 (2014-11-13):<br> <ul> <li>Fixed Directory Diff that stopped working in 2.6.6</li> </ul> Changes in v2.6.6 (2014-10-27):<br> <ul> <li>Avoid font error with balloon help.</li> | > > > > > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <a href='../../../wiki'>Wiki</a> <a href='../../../login'>Login</a> </div> <div class="content"> <h3>Changes</h3> Changes in v2.7 (Not yet released):<br> <ul> <li>Directory Diff support for GIT, Fossil and Subversion. Directly browse and compare two revisions.</li> <li>Plugins in Directory Diff.</li> <li>Added option -printFont to select font for PDF generation. Default font changed to a True Type font. Use "-printFont Courier" to fall back on PDF builtin.</li> </ul> Changes in v2.6.7 (2014-11-13):<br> <ul> <li>Fixed Directory Diff that stopped working in 2.6.6</li> </ul> Changes in v2.6.6 (2014-10-27):<br> <ul> <li>Avoid font error with balloon help.</li> |
︙ | ︙ |
Changes to src/vcsvfs.tcl.
1 | #---------------------------------------------------------------------- | | | 1 2 3 4 5 6 7 8 9 | #---------------------------------------------------------------------- # Virtual File System for Version Control Systems # # Copyright (c) 2014, Peter Spjuth # # License for vcsvfs package: Same as for Tcl #---------------------------------------------------------------------- package require vfs |
︙ | ︙ | |||
197 198 199 200 201 202 203 | # TBD: Find the mountpoint #dict unset mpoints $mountpoint #vfs::filesystem unmount $mountpoint } # Create a Virtual File System showing a revision of a GIT checkout # | | | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | # TBD: Find the mountpoint #dict unset mpoints $mountpoint #vfs::filesystem unmount $mountpoint } # Create a Virtual File System showing a revision of a GIT checkout # # dir: Directory in an GIT checkout # rev: Revision to mount # # Returns: path to the generated VFS proc vcsvfs::git::mount {dir rev} { variable ::vcsvfs::mpoints set dir [file normalize $dir] |
︙ | ︙ |