1.1 --- a/mainwindow.cpp Wed Jan 25 12:34:55 2006 +0000
1.2 +++ b/mainwindow.cpp Tue Jan 31 15:56:28 2006 +0000
1.3 @@ -1119,7 +1119,7 @@
1.4
1.5 branchContextMenu->insertSeparator();
1.6 actionFormatIncludeImagesVer->addTo( branchContextMenu );
1.7 - actionFormatIncludeImagesHor->addTo( branchContextMenu );
1.8 + // FIXME not implemented yet actionFormatIncludeImagesHor->addTo( branchContextMenu );
1.9 actionFormatHideLinkUnselected->addTo( branchContextMenu );
1.10
1.11 // Context Menu for links in a branch menu
2.1 --- a/tex/vym.changelog Wed Jan 25 12:34:55 2006 +0000
2.2 +++ b/tex/vym.changelog Tue Jan 31 15:56:28 2006 +0000
2.3 @@ -1,3 +1,10 @@
2.4 +-------------------------------------------------------------------
2.5 +Tue Jan 31 16:54:52 CET 2006 - uwedr
2.6 +
2.7 +- Version 1.7.8
2.8 +- Bugfix: Hide Include Images Horizontally (not implemented yet)
2.9 +- Bugfix: Include Images Vertically was not read from saved file
2.10 +
2.11 -------------------------------------------------------------------
2.12 Tue Jan 25 16:07:53 CET 2006 - uwedr
2.13
3.1 --- a/version.h Wed Jan 25 12:34:55 2006 +0000
3.2 +++ b/version.h Tue Jan 31 15:56:28 2006 +0000
3.3 @@ -2,7 +2,7 @@
3.4 #define VERSION_H
3.5
3.6 #define __VYM "VYM"
3.7 -#define __VYM_VERSION "1.7.7"
3.8 -#define __BUILD_DATE "January 25, 2006"
3.9 +#define __VYM_VERSION "1.7.8"
3.10 +#define __BUILD_DATE "January 31, 2006"
3.11
3.12 #endif
4.1 --- a/xml.cpp Wed Jan 25 12:34:55 2006 +0000
4.2 +++ b/xml.cpp Tue Jan 31 15:56:28 2006 +0000
4.3 @@ -447,9 +447,19 @@
4.4 lastBranch->setFrameType (a.value("frameType"));
4.5
4.6 if (!a.value( "incImgV").isEmpty() )
4.7 - lastBranch->setIncludeImagesVer(a.value("incImgV"));
4.8 + {
4.9 + if (a.value("incImgV")=="true")
4.10 + lastBranch->setIncludeImagesVer(true);
4.11 + else
4.12 + lastBranch->setIncludeImagesVer(false);
4.13 + }
4.14 if (!a.value( "incImgH").isEmpty() )
4.15 - lastBranch->setIncludeImagesHor(a.value("incImgH"));
4.16 + {
4.17 + if (a.value("incImgH")=="true")
4.18 + lastBranch->setIncludeImagesHor(true);
4.19 + else
4.20 + lastBranch->setIncludeImagesHor(false);
4.21 + }
4.22 return true;
4.23 }
4.24