# HG changeset patch # User insilmaril # Date 1169553056 0 # Node ID 7019762f8701dcb095c6a8f845457accfcd2f8b7 # Parent 07a2f3f3110147768f829f23fce65cb17962d695 1.8.65 Various fixes diff -r 07a2f3f31101 -r 7019762f8701 demos/todo.vym Binary file demos/todo.vym has changed diff -r 07a2f3f31101 -r 7019762f8701 tex/vym.changelog --- a/tex/vym.changelog Tue Jan 23 11:50:53 2007 +0000 +++ b/tex/vym.changelog Tue Jan 23 11:50:56 2007 +0000 @@ -1,3 +1,22 @@ +------------------------------------------------------------------- +Fri Jan 19 22:53:27 CET 2007 - uwe + +- Version: 1.8.65 +- Feature: New Frame format +- Feature: New vym file format to support new frames +- Bugfix: xml-parsing code simplified +- Bugfix: Fixed pretty annoying repositioning of view after editing a + heading. (don't call show() before positioning in heading...) +- Bugfix: Wrong Cursors after pressing CTRL and inserting/relinking +- Bugfix: Save PNG images with quality 100 to workaround image problems +- Bugfix: Remember last directory before XML export + +------------------------------------------------------------------- +Thu Jan 11 16:05:49 CET 2007 - uwedr + +- Version: 1.8.65 +- Feature: Properties dialog for branches instead of context menu entries + ------------------------------------------------------------------- Wed Jan 10 19:48:32 CET 2007 - uwe diff -r 07a2f3f31101 -r 7019762f8701 version.h --- a/version.h Tue Jan 23 11:50:53 2007 +0000 +++ b/version.h Tue Jan 23 11:50:56 2007 +0000 @@ -5,7 +5,7 @@ #define __VYM_NAME "VYM" #define __VYM_VERSION "1.8.65" -#define __VYM_BUILD_DATE "January 9, 2007" +#define __VYM_BUILD_DATE "January 22, 2007" bool checkVersion(const QString &); diff -r 07a2f3f31101 -r 7019762f8701 vym.pro --- a/vym.pro Tue Jan 23 11:50:53 2007 +0000 +++ b/vym.pro Tue Jan 23 11:50:56 2007 +0000 @@ -11,6 +11,7 @@ aboutdialog.h \ api.h \ branchobj.h \ + branchpropwindow.h\ editxlinkdialog.h \ exportoofiledialog.h \ exportxhtmldialog.h\ @@ -51,6 +52,7 @@ aboutdialog.cpp \ api.cpp \ branchobj.cpp \ + branchpropwindow.cpp \ editxlinkdialog.cpp \ exportoofiledialog.cpp \ exports.cpp \ @@ -89,6 +91,7 @@ warningdialog.cpp FORMS = \ + branchpropwindow.ui \ exportxhtmldialog.ui \ extrainfodialog.ui \ editxlinkdialog.ui \