1.1 --- a/findresultmodel.cpp Thu Mar 18 11:55:59 2010 +0000
1.2 +++ b/findresultmodel.cpp Mon Mar 22 15:37:23 2010 +0000
1.3 @@ -49,15 +49,6 @@
1.4 return Qt::ItemIsEditable | Qt::ItemIsEnabled | Qt::ItemIsSelectable;
1.5 }
1.6
1.7 -FindResultItem *FindResultModel::getItem(const QModelIndex &index) const
1.8 -{
1.9 - if (index.isValid()) {
1.10 - FindResultItem *item = static_cast<FindResultItem*>(index.internalPointer());
1.11 - if (item) return item;
1.12 - }
1.13 - return rootItem;
1.14 -}
1.15 -
1.16 QVariant FindResultModel::headerData(int section, Qt::Orientation orientation,
1.17 int role) const
1.18 {
1.19 @@ -189,17 +180,30 @@
1.20 return result;
1.21 }
1.22
1.23 +FindResultItem *FindResultModel::getItem(const QModelIndex &index) const
1.24 +{
1.25 + if (index.isValid()) {
1.26 + FindResultItem *item = static_cast<FindResultItem*>(index.internalPointer());
1.27 + if (item) return item;
1.28 + }
1.29 + return rootItem;
1.30 +}
1.31 +
1.32 +FindResultItem *FindResultModel::findTreeItem(TreeItem *ti)
1.33 +{
1.34 +}
1.35 +
1.36 void FindResultModel::addItem (TreeItem *ti)
1.37 {
1.38 if (ti)
1.39 {
1.40 QModelIndex ix (index (rootItem));
1.41 - //QAbstractItemModel *resultsModel = view->model();
1.42
1.43 if (!insertRow(ix.row()+1, ix.parent()))
1.44 return;
1.45
1.46 - for (int column = 0; column < columnCount(ix.parent()); ++column) {
1.47 + for (int column = 0; column < columnCount(ix.parent()); ++column)
1.48 + {
1.49 QModelIndex child = index(ix.row()+1, column, ix.parent());
1.50 setData(child, QVariant(ti->getHeading()), Qt::EditRole);
1.51 getItem(child)->setOriginal (ti);
1.52 @@ -223,7 +227,20 @@
1.53 }
1.54 }
1.55
1.56 -void FindResultModel::addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int index)
1.57 +void FindResultModel::addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int i)
1.58 {
1.59 + if (ti)
1.60 + {
1.61 + QModelIndex ix ( index (rootItem));
1.62 +
1.63 + if (!insertRow(ix.row()+1, ix.parent()))
1.64 + return;
1.65 +
1.66 + for (int column = 0; column < columnCount(ix.parent()); ++column) {
1.67 + QModelIndex child = index(ix.row()+1, column, ix.parent());
1.68 + setData(child, QVariant("Note: "+ti->getHeading()), Qt::EditRole);
1.69 + getItem(child)->setOriginal (ti);
1.70 + }
1.71 + }
1.72 }
1.73
2.1 --- a/findresultmodel.h Thu Mar 18 11:55:59 2010 +0000
2.2 +++ b/findresultmodel.h Mon Mar 22 15:37:23 2010 +0000
2.3 @@ -45,10 +45,11 @@
2.4 const QModelIndex &parent = QModelIndex());
2.5
2.6 FindResultItem *getItem(const QModelIndex &index) const;
2.7 + FindResultItem *findTreeItem (TreeItem *ti);
2.8
2.9 void addItem (TreeItem *ti);
2.10 void addItem (const QString &s);
2.11 - void addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int index);
2.12 + void addSubItem (TreeItem *parent,const QString &s, TreeItem *ti, int i);
2.13
2.14 private:
2.15
3.1 --- a/mainwindow.cpp Thu Mar 18 11:55:59 2010 +0000
3.2 +++ b/mainwindow.cpp Mon Mar 22 15:37:23 2010 +0000
3.3 @@ -1182,7 +1182,7 @@
3.4 QAction *a;
3.5 a = new QAction(QPixmap(iconPath+"viewmag-reset.png"), tr( "reset Zoom","View action" ), this);
3.6 a->setStatusTip ( tr( "Zoom reset" ) );
3.7 - a->setShortcut (Qt::CTRL + Qt::Key_0); // Reset zoom
3.8 + a->setShortcut (Qt::Key_Comma); // Reset zoom
3.9 switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
3.10 a->addTo( tb );
3.11 viewMenu->addAction (a);
3.12 @@ -1190,7 +1190,7 @@
3.13
3.14 a = new QAction( QPixmap(iconPath+"viewmag+.png"), tr( "Zoom in","View action" ), this);
3.15 a->setStatusTip (tr( "Zoom in" ));
3.16 - a->setShortcut(Qt::CTRL + Qt::Key_Plus);
3.17 + a->setShortcut(Qt::Key_Plus);
3.18 switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
3.19 a->addTo( tb );
3.20 viewMenu->addAction (a);
3.21 @@ -1198,7 +1198,7 @@
3.22
3.23 a = new QAction( QPixmap(iconPath+"viewmag-.png"), tr( "Zoom out","View action" ), this);
3.24 a->setStatusTip (tr( "Zoom out" ));
3.25 - a->setShortcut(Qt::CTRL + Qt::Key_Minus);
3.26 + a->setShortcut(Qt::Key_Minus);
3.27 switchboard.addConnection(a,tr("View shortcuts","Shortcut group"));
3.28 a->addTo( tb );
3.29 viewMenu->addAction (a);
3.30 @@ -3963,9 +3963,10 @@
3.31 }
3.32
3.33
3.34 -#include "attributeitem.h"
3.35 void Main::testFunction1()
3.36 {
3.37 +/*
3.38 +#include "attributeitem.h"
3.39 VymModel *m=currentModel();
3.40 if (!m) return;
3.41
3.42 @@ -3981,11 +3982,9 @@
3.43 m->addAttribute (ai);
3.44 }
3.45 return;
3.46 -
3.47 -/*
3.48 +*/
3.49 if (!currentMapEditor()) return;
3.50 currentMapEditor()->testFunction1();
3.51 -*/
3.52 }
3.53
3.54 void Main::testFunction2()
4.1 --- a/mapeditor.cpp Thu Mar 18 11:55:59 2010 +0000
4.2 +++ b/mapeditor.cpp Mon Mar 22 15:37:23 2010 +0000
4.3 @@ -461,42 +461,6 @@
4.4 setRenderHint(QPainter::SmoothPixmapTransform,b);
4.5 }
4.6
4.7 -void MapEditor::setHideTmp (bool b) // FIXME-4 better use signals
4.8 -{
4.9 -/*
4.10 - if (b)
4.11 - {
4.12 - setHideTmpMode (HideExport);
4.13 - mapCenter->calcBBoxSizeWithChilds();
4.14 - QRectF totalBBox=mapCenter->getTotalBBox();
4.15 - //QRectF mapRect=totalBBox;
4.16 - qDebug() << " map has =("<<totalBBox.x()<<","<<totalBBox.y()<<","<<totalBBox.width()<<","<<totalBBox.height()<<")\n";
4.17 -
4.18 - mapRect.setRect (totalBBox.x(), totalBBox.y(),
4.19 - totalBBox.width(), totalBBox.height());
4.20 -
4.21 - QCanvasRectangle *frame=new QCanvasRectangle (mapRect,mapScene);
4.22 - frame->setBrush (QColor(white));
4.23 - frame->setPen (QColor(black));
4.24 - frame->setZValue(0);
4.25 - frame->show();
4.26 -
4.27 - }
4.28 - else
4.29 - {
4.30 - setHideTmpMode (HideNone);
4.31 - }
4.32 - qDebug() <<" hidemode="<<hidemode;
4.33 -*/
4.34 -/*
4.35 - // Toggle hidemode
4.36 - if (hidemode==HideExport)
4.37 - setHideTmpMode (HideNone);
4.38 - else
4.39 - setHideTmpMode (HideExport);
4.40 -*/
4.41 -}
4.42 -
4.43 #include <iostream>
4.44 void MapEditor::autoLayout()
4.45 {
4.46 @@ -649,8 +613,22 @@
4.47
4.48 void MapEditor::testFunction1()
4.49 {
4.50 +/*
4.51 qDebug()<< "ME::test1 selected TI="<<model->getSelectedItem();
4.52 model->setExportMode (true);
4.53 +*/
4.54 + QLineEdit *le3=new QLineEdit;
4.55 + mapScene->addWidget (le3);
4.56 + le3->setGeometry (10,10,100,30);
4.57 + le3->setText("LineEdit 3");
4.58 +
4.59 + QLineEdit *le4=new QLineEdit;
4.60 + mapScene->addWidget (le4);
4.61 + le4->setGeometry (10,50,100,30);
4.62 + le4->setText("LineEdit 4");
4.63 + //le4->setFocus();
4.64 +
4.65 +
4.66
4.67 /*
4.68 // Code copied from Qt sources
4.69 @@ -932,17 +910,17 @@
4.70 model->setSelectionBlocked(true);
4.71
4.72 lineEdit=new QLineEdit;
4.73 - QGraphicsProxyWidget *pw=scene()->addWidget (lineEdit);
4.74 + QGraphicsProxyWidget *pw=mapScene->addWidget (lineEdit);
4.75 pw->setZValue (Z_LINEEDIT);
4.76 -
4.77 - lineEdit->setText (bi->getHeading());
4.78 + lineEdit->setCursor(Qt::IBeamCursor);
4.79 + lineEdit->setCursorPosition(1);
4.80 QPoint p = mapTo (this,bo->getAbsPos().toPoint() );
4.81 lineEdit->setGeometry(p.x(),p.y(),230,25);
4.82 - //lineEdit->selectAll();
4.83 - //lineEdit->setCursorPosition (1);
4.84 - lineEdit->show();
4.85 + lineEdit->setText (bi->getHeading());
4.86 lineEdit->setFocus();
4.87 - lineEdit->grabKeyboard();
4.88 + lineEdit->selectAll(); // Hack to enable cursor in lineEdit
4.89 + lineEdit->deselect(); // probably a Qt bug...
4.90 + //lineEdit->grabKeyboard();
4.91 editingHeading=true;
4.92 }
4.93
4.94 @@ -950,8 +928,8 @@
4.95 void MapEditor::editHeadingFinished()
4.96 {
4.97 editingHeading=false;
4.98 - lineEdit->releaseKeyboard();
4.99 - lineEdit->clearFocus();
4.100 + //lineEdit->releaseKeyboard();
4.101 + //lineEdit->clearFocus();
4.102 QString s=lineEdit->text();
4.103 s.replace (QRegExp ("\\n")," "); // Don't paste newline chars
4.104 model->setHeading (s);
4.105 @@ -1007,6 +985,8 @@
4.106
4.107 void MapEditor::keyPressEvent(QKeyEvent* e)
4.108 {
4.109 + //qDebug()<<"ME::keyPressed";
4.110 + //return;
4.111 if (e->modifiers() & Qt::ControlModifier)
4.112 {
4.113 switch (mainWindow->getModMode())
4.114 @@ -1025,6 +1005,7 @@
4.115 break;
4.116 }
4.117 }
4.118 + QGraphicsView::keyPressEvent(e);
4.119 }
4.120
4.121 void MapEditor::keyReleaseEvent(QKeyEvent* e)
4.122 @@ -1035,20 +1016,12 @@
4.123
4.124 void MapEditor::mousePressEvent(QMouseEvent* e)
4.125 {
4.126 -//qDebug() << "ME::mousePressed\n"; //FIXME-3
4.127 - // Ignore right clicks, these will go to context menus
4.128 - if (e->button() == Qt::RightButton )
4.129 + // Ignore right clicks or wile editing heading
4.130 + if (e->button() == Qt::RightButton or model->isSelectionBlocked() )
4.131 {
4.132 //qDebug() << " ME::ignoring right mouse event...\n";
4.133 e->ignore();
4.134 - return;
4.135 - }
4.136 -
4.137 - //Ignore clicks while editing heading
4.138 - if (model->isSelectionBlocked() )
4.139 - {
4.140 - //qDebug() << " ME::ignoring other mouse event...\n";
4.141 - e->ignore();
4.142 + QGraphicsView::mousePressEvent(e);
4.143 return;
4.144 }
4.145
4.146 @@ -1209,10 +1182,12 @@
4.147 setCursor(HandOpenCursor);
4.148 }
4.149 }
4.150 + QGraphicsView::mousePressEvent(e);
4.151 }
4.152
4.153 void MapEditor::mouseMoveEvent(QMouseEvent* e)
4.154 {
4.155 +
4.156 QPointF p = mapToScene(e->pos());
4.157 TreeItem *seli=model->getSelectedItem();
4.158 LinkableMapObj* lmosel=NULL;
4.159 @@ -1362,6 +1337,7 @@
4.160 horizontalScrollBar()->setSliderPosition((int)( movingCont_start.x()+movingVec.x() ));
4.161 verticalScrollBar()->setSliderPosition((int)( movingCont_start.y()+movingVec.y() ) );
4.162 }
4.163 + QGraphicsView::mouseMoveEvent (e);
4.164 }
4.165
4.166
4.167 @@ -1566,7 +1542,8 @@
4.168 } else
4.169 // maybe we moved View: set old cursor
4.170 setCursor (Qt::ArrowCursor);
4.171 -
4.172 +
4.173 + QGraphicsView::mouseReleaseEvent(e);
4.174 }
4.175
4.176 void MapEditor::mouseDoubleClickEvent(QMouseEvent* e)
4.177 @@ -1578,12 +1555,13 @@
4.178 }
4.179
4.180
4.181 +/*
4.182 if (model->isSelectionBlocked() )
4.183 {
4.184 e->ignore();
4.185 return;
4.186 }
4.187 -
4.188 +*/
4.189 if (e->button() == Qt::LeftButton )
4.190 {
4.191 QPointF p = mapToScene(e->pos());
5.1 --- a/mapeditor.h Thu Mar 18 11:55:59 2010 +0000
5.2 +++ b/mapeditor.h Mon Mar 22 15:37:23 2010 +0000
5.3 @@ -55,7 +55,6 @@
5.4 QImage getImage (); //!< Get a pixmap of the map
5.5 void setAntiAlias (bool); //!< Set or unset antialiasing
5.6 void setSmoothPixmap(bool); //!< Set or unset smoothing of pixmaps
5.7 - void setHideTmp (bool); //!< Hide parts temporary
5.8 public slots:
5.9 void autoLayout(); //!< Auto layout of map by using collision detection
5.10 public:
6.1 --- a/tex/vym.changelog Thu Mar 18 11:55:59 2010 +0000
6.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
6.3 @@ -1,1514 +0,0 @@
6.4 --------------------------------------------------------------------
6.5 -Thu Mar 18 12:45:45 CET 2010 - vym@insilmaril.de
6.6 -
6.7 -- Version: 1.13.1 First pre-release of 1.13.0 to buildservice
6.8 -
6.9 --------------------------------------------------------------------
6.10 -Wed Mar 17 22:24:51 CET 2010 - vym@insilmaril.de
6.11 -
6.12 -- Bugfix: Enabled Qt 4.6: Removed QtAnimation Framework and fixed flags
6.13 -
6.14 --------------------------------------------------------------------
6.15 -Tue Mar 16 16:45:23 CET 2010 - vym@insilmaril.de
6.16 -
6.17 -- Feature: zoomFactor is saved and restored on load
6.18 -
6.19 --------------------------------------------------------------------
6.20 -Mon Mar 15 12:48:45 CET 2010 - vym@insilmaril.de
6.21 -
6.22 -- Bugfix: Several fixes for later autoLayout
6.23 -
6.24 --------------------------------------------------------------------
6.25 -Wed Mar 10 16:35:23 CET 2010 - vym@insilmaril.de
6.26 -
6.27 -- Bugfix: MainWindow::getModel() returns correct model now
6.28 -- Bugfix: Better focus handling in FindWidget
6.29 -
6.30 --------------------------------------------------------------------
6.31 -Tue Mar 9 14:04:10 CET 2010 - vym@insilmaril.de
6.32 -
6.33 -- Bugfix: Regression in scrolling branches
6.34 -
6.35 --------------------------------------------------------------------
6.36 -Mon Mar 8 07:45:34 CET 2010 - vym@insilmaril.de
6.37 -
6.38 -- Feature: New widget to display all results of Find action.
6.39 - Also opened with CTRL-F once FindWidget is open
6.40 -- Feature: loadNote and saveNote commands to allow changing of note
6.41 - from external
6.42 -
6.43 --------------------------------------------------------------------
6.44 -Fri Feb 19 08:05:02 CET 2010 - vym@insilmaril.de
6.45 -
6.46 -- Bugfix: Fixed regression of flags
6.47 -
6.48 --------------------------------------------------------------------
6.49 -Wed Feb 17 16:31:34 CET 2010 - vym@insilmaril.de
6.50 -
6.51 -- Bugfix: When pasting a heading into the LineEdit, newlines are removed
6.52 - to avoid broken rendering
6.53 -
6.54 --------------------------------------------------------------------
6.55 -Wed Feb 17 11:49:09 CET 2010 - vym@insilmaril.de
6.56 -
6.57 -- Feature: Novell Bugzilla now has extra flag
6.58 -
6.59 --------------------------------------------------------------------
6.60 -Wed Feb 10 14:47:49 CET 2010 - vym@insilmaril.de
6.61 -
6.62 -- Feature: Sort lexically backwards
6.63 -
6.64 --------------------------------------------------------------------
6.65 -Tue Feb 9 10:26:23 CET 2010 - vym@insilmaril.de
6.66 -
6.67 -- Bugfix: Relinking now keeps frametype
6.68 -
6.69 --------------------------------------------------------------------
6.70 -Thu Jan 21 09:22:08 CET 2010 - vym@insilmaril.de
6.71 -
6.72 -- Bugfix: Changes in NoteEditor update the Save flag visually
6.73 -
6.74 --------------------------------------------------------------------
6.75 -Wed Jan 20 14:28:20 CET 2010 - vym@insilmaril.de
6.76 -
6.77 -- Bugfix: New Progressbar while loading maps: One bar to count them,
6.78 - one bar to into colors grind them
6.79 -
6.80 --------------------------------------------------------------------
6.81 -Thu Jan 14 12:03:43 CET 2010 - vym@insilmaril.de
6.82 -
6.83 -- Feature: Very basic support to find duplicate URLs
6.84 -
6.85 --------------------------------------------------------------------
6.86 -Wed Jan 13 08:28:18 CET 2010 - vym@insilmaril.de
6.87 -
6.88 -- Feature: Added action to open all URLs in subtree, default
6.89 - is now to only open those, which don't have scrolled parent
6.90 -
6.91 --------------------------------------------------------------------
6.92 -Tue Jan 12 09:14:49 CET 2010 - vym@insilmaril.de
6.93 -
6.94 -- Bugfix: Restart a konqueror ofr opening of URLs, if needed
6.95 -
6.96 --------------------------------------------------------------------
6.97 -Tue Jan 5 12:22:27 CET 2010 - vym@insilmaril.de
6.98 -
6.99 -- Bugfix: Dropping URLs
6.100 -
6.101 --------------------------------------------------------------------
6.102 -Mon Jan 4 09:36:24 CET 2010 - vym@insilmaril.de
6.103 -
6.104 -- Bugfix: Branch didn't unscroll when deleting last child
6.105 -- Feature: URL icons in image map of HTML export work now
6.106 -
6.107 --------------------------------------------------------------------
6.108 -Tue Dec 15 10:14:11 CET 2009 - vym@insilmaril.de
6.109 -
6.110 -- Bugfix: A&O report didn't show subitems
6.111 -
6.112 --------------------------------------------------------------------
6.113 -Mon Dec 14 11:16:57 CET 2009 - vym@insilmaril.de
6.114 -
6.115 -- Bugfix: Wrong tmp position when relinking a mainbranch
6.116 -- Bugfix: Image export, also used in HTML export
6.117 -
6.118 --------------------------------------------------------------------
6.119 -Thu Dec 7 23:17:57 CET 2009 - vym@insilmaril.de
6.120 -
6.121 -- Feature: Following xLinks is now possible by clicking in the
6.122 - part of a branch near to beginning of branch (20 pixels)
6.123 -- Feature: Added new flag for status "work in progress"
6.124 - (between green hook and red cross)
6.125 -- Bugfix: Animation of branches (default off in MapEditor)
6.126 -- Bugfix: Segfault when closing map (due clearing selection in
6.127 - VymModel::clear() )
6.128 -
6.129 --------------------------------------------------------------------
6.130 -Thu Dec 3 17:26:59 CET 2009 - vym@insilmaril.de
6.131 -
6.132 -- Bugfix: Clicking the note flag opens the note editor again
6.133 -
6.134 --------------------------------------------------------------------
6.135 -Tue Dec 1 12:03:42 CET 2009 - vym@insilmaril.de
6.136 -
6.137 -- Bugfix: Undo of detach
6.138 -
6.139 --------------------------------------------------------------------
6.140 -Thu Nov 26 22:32:34 CET 2009 - vym@insilmaril.de
6.141 -
6.142 -- Bugfix: Regression in Undo
6.143 -- Bugfix: Find didn't find stuff in previous part of tree
6.144 -
6.145 --------------------------------------------------------------------
6.146 -Tue Nov 24 22:34:42 CET 2009 - vym@insilmaril.de
6.147 -
6.148 -- Bugfix: Automatic scrolling to new selected items didn't work
6.149 - reliable when item had scrolled parents
6.150 -
6.151 --------------------------------------------------------------------
6.152 -Wed Nov 11 10:32:29 CET 2009 - vym@insilmaril.de
6.153 -
6.154 -- Bugfix: New map has mapcenter again
6.155 -
6.156 --------------------------------------------------------------------
6.157 -Tue Nov 10 13:53:37 CET 2009 - vym@insilmaril.de
6.158 -
6.159 -- Bugfix: Autodetection of textformat (ASCII vs. HTML)
6.160 -- Bugfix: nextBranch failed with xLinks
6.161 -
6.162 --------------------------------------------------------------------
6.163 -Fri Oct 30 18:58:22 CET 2009 - uwedr@suse.de
6.164 -
6.165 -- Bugfix: Selection doesn't get lost when switching maps
6.166 -
6.167 --------------------------------------------------------------------
6.168 -Wed Oct 28 08:43:34 CET 2009 - uwedr@suse.de
6.169 -
6.170 -- Feature: Adding timestamp to branch
6.171 -
6.172 --------------------------------------------------------------------
6.173 -Wed Oct 21 17:23:13 CEST 2009 - uwedr@suse.de
6.174 -
6.175 -- Feature: expand/collapse by one level in TreeEditor
6.176 -- Bugfix: Process like webbrowser started by vym survive vym now
6.177 -
6.178 --------------------------------------------------------------------
6.179 -Tue Oct 6 16:29:07 CEST 2009 - uwedr@suse.de
6.180 -
6.181 -- Bugfix: Export to OpenOffice.org
6.182 -- Bugfix: BranchProp window
6.183 -
6.184 --------------------------------------------------------------------
6.185 -Sat Aug 8 23:54:38 CEST 2009 - uwedr@suse.de
6.186 -
6.187 -- Feature: Selecting with cursor now remembers left & right of
6.188 - mapcenters. Also improved selections in deeper trees
6.189 -- Bugfix: Selecting with cursor in MapEditor
6.190 -
6.191 --------------------------------------------------------------------
6.192 -Thu Aug 6 19:33:01 CEST 2009 - uwedr@suse.de
6.193 -
6.194 -- Bugfix: Removed the "new" in new branches to allow easier copy & paste
6.195 -
6.196 --------------------------------------------------------------------
6.197 -Wed Jul 22 21:51:04 CEST 2009 - uwedr@suse.de
6.198 -
6.199 -- Bugfix: relinking a branch to a scrolled branch doesn't unscroll
6.200 - anymore
6.201 -- Bugfix: Importing KDE bookmarks with empty folders doesn't
6.202 - scroll these folders anymore
6.203 --------------------------------------------------------------------
6.204 -Thu Apr 2 11:56:17 CEST 2009 - uwedr@suse.de
6.205 -
6.206 -- Feature: Added sverige translation
6.207 -
6.208 --------------------------------------------------------------------
6.209 -Tue Mar 17 15:32:17 CET 2009 - uwedr@suse.de
6.210 -
6.211 -- Bugfix: Import/Export bookmarks works now also on KDE 4
6.212 -- Feature: Added traditional chinese translation
6.213 -
6.214 --------------------------------------------------------------------
6.215 -Mon Dec 8 20:26:41 CET 2008 - uwedr@suse.de
6.216 -
6.217 -- Bugfix: Images linked to a scrolled branch were not hidden, if parent
6.218 - branch was scrolled
6.219 -
6.220 --------------------------------------------------------------------
6.221 -Mon Dec 1 17:43:30 CET 2008 - uwedr@suse.de
6.222 -
6.223 -- Bugfix: After inserting XML, still write as zipped vym again
6.224 -
6.225 --------------------------------------------------------------------
6.226 -Mon Oct 6 11:16:48 CEST 2008 - uwedr@suse.de
6.227 -
6.228 -- Bugfix: Updated chinese translation from Moligaloo
6.229 -
6.230 --------------------------------------------------------------------
6.231 -Sun Oct 5 16:58:32 CEST 2008 - uwedr@suse.de
6.232 -
6.233 -- Bugfix: No more segfault for "delete & keep childs" on MapCenter
6.234 -
6.235 --------------------------------------------------------------------
6.236 -Sun Jul 27 16:37:24 CEST 2008 - uwedr@suse.de
6.237 -
6.238 -- Bugfix: Animation timer didn't stop after animation was done, which
6.239 - caused high load
6.240 -
6.241 --------------------------------------------------------------------
6.242 -Wed Jul 16 13:47:01 CEST 2008 - uwedr@suse.de
6.243 -
6.244 -- Version: 1.13.0
6.245 -- Bugfix: Deleting an animated part no longer segfaults
6.246 -
6.247 --------------------------------------------------------------------
6.248 -Fri Jul 11 14:01:31 CEST 2008 - uwedr@suse.de
6.249 -
6.250 -- Bugfix: bnc#407600 vym fails with non-ASCI characters in path names
6.251 -
6.252 --------------------------------------------------------------------
6.253 -Tue Jun 8 10:34:12 CEST 2008 - uwedr@suse.de
6.254 -
6.255 -- Bugfix: bnc#396365 vym cannot load maps saved with Qt 4.4
6.256 -
6.257 --------------------------------------------------------------------
6.258 -Wed May 14 17:00:36 CEST 2008 - uwedr@suse.de
6.259 -
6.260 -- Version: 1.12.0 RC 2
6.261 -- Feature: Russian translation
6.262 -
6.263 --------------------------------------------------------------------
6.264 -Wed May 7 10:30:21 CEST 2008 - uwedr@suse.de
6.265 -
6.266 -- Bugfix: bnc#327078
6.267 -
6.268 --------------------------------------------------------------------
6.269 -Tue May 6 11:45:46 CEST 2008 - uwedr@suse.de
6.270 -
6.271 -- Version: 1.12.0
6.272 -
6.273 --------------------------------------------------------------------
6.274 -Wed Apr 30 18:13:43 CEST 2008 - uwedr@suse.de
6.275 -
6.276 -- Version: 1.11.9
6.277 -- Bugfix: Some minor code cleanup
6.278 -
6.279 --------------------------------------------------------------------
6.280 -Thu Apr 10 22:45:55 CEST 2008 - uwedr@suse.de
6.281 -
6.282 -- Version: 1.11.8
6.283 -- Feature: Copy to new map now also in branch context menu
6.284 -
6.285 --------------------------------------------------------------------
6.286 -Thu Apr 10 17:11:14 CEST 2008 - uwedr@suse.de
6.287 -
6.288 -- Bugfix: New map is not autosaved, if no filename is known yet
6.289 -
6.290 --------------------------------------------------------------------
6.291 -Tue Apr 8 09:59:11 CEST 2008 - uwedr@suse.de
6.292 -
6.293 -- Version: 1.11.7
6.294 -- Bugfix: Hangup when find function did not find anything
6.295 -
6.296 --------------------------------------------------------------------
6.297 -Thu Mar 13 02:06:59 CET 2008 - uwedr@suse.de
6.298 -
6.299 -- Bugfix: vym no longer forgets that a map is zipped
6.300 -
6.301 --------------------------------------------------------------------
6.302 -Sun Mar 9 13:36:20 CET 2008 - uwedr@suse.de
6.303 -
6.304 -- Bugfix: Segfault when pressing Home or End on MapCenter
6.305 -
6.306 --------------------------------------------------------------------
6.307 -Wed Mar 5 17:54:12 CET 2008 - uwedr@suse.de
6.308 -
6.309 -- Bugfix: Broken paths to floatimages
6.310 -
6.311 --------------------------------------------------------------------
6.312 -Wed Feb 27 17:07:57 CET 2008 - uwedr@suse.de
6.313 -
6.314 -- Bugfix: Fixed some issues with autosave and regulard file checks
6.315 -
6.316 --------------------------------------------------------------------
6.317 -Mon Feb 11 12:22:58 CET 2008 - uwedr@suse.de
6.318 -
6.319 -- Version: 1.11.6
6.320 -- Feature: vym now checks regulary if map has changed on disk and
6.321 - asks for reload if necessary
6.322 -
6.323 --------------------------------------------------------------------
6.324 -Mon Jan 21 22:52:18 CET 2008 - uwedr@suse.de
6.325 -
6.326 -- Bugfix: No more warning dialog for overwriting note, when note is
6.327 - empty
6.328 -
6.329 --------------------------------------------------------------------
6.330 -Tue Jan 8 22:20:29 CET 2008 - uwedr@suse.de
6.331 -
6.332 -- Version: 1.11.5
6.333 -- Feature: Started to implement multiple MapCenters in one map
6.334 -
6.335 --------------------------------------------------------------------
6.336 -Mon Jan 7 14:59:56 CET 2008 - uwedr@suse.de
6.337 -
6.338 -- Bugfix: vym.pro includes french translation now
6.339 -
6.340 --------------------------------------------------------------------
6.341 -Mon Dec 17 16:32:48 CET 2007 - uwedr@suse.de
6.342 -
6.343 -- Bugfix: bnc#341952 corrupted positions of mainbranches after updating to
6.344 - newer vym
6.345 --------------------------------------------------------------------
6.346 -Wed Dec 12 17:12:50 CET 2007 - uwedr@suse.de
6.347 -
6.348 -- Bugfix: Overloaded key shortcut for Alt-N (Network and Next window)
6.349 -
6.350 --------------------------------------------------------------------
6.351 -Tue Dec 4 11:46:02 CET 2007 - uwedr@suse.de
6.352 -
6.353 -- Bugfix: Temporary hide stuff during export
6.354 -- Bugfix: Save parts of map
6.355 -
6.356 --------------------------------------------------------------------
6.357 -Mon Dec 3 20:57:15 CET 2007 - uwedr@suse.de
6.358 -
6.359 -- Bugfix: (Maint.) Exchanged pre- and postscript in XHTML Export dialog
6.360 -
6.361 --------------------------------------------------------------------
6.362 -Fri Nov 9 10:44:59 CET 2007 - uwedr@suse.de
6.363 -
6.364 -- Version: 1.11.3
6.365 -- Feature: Added patches for better windows support by Andrew Ng
6.366 -
6.367 --------------------------------------------------------------------
6.368 -Tue Nov 6 22:36:38 CET 2007 - uwedr@suse.de
6.369 -
6.370 -- Version: 1.11.2
6.371 -- Feature: Split up helper functions, started to write attributes
6.372 -
6.373 --------------------------------------------------------------------
6.374 -Tue Nov 6 14:36:38 CET 2007 - uwedr@suse.de
6.375 -
6.376 -- Version: 1.11.1
6.377 -- Bugfix: sort branches has undo/redo now
6.378 -
6.379 --------------------------------------------------------------------
6.380 -Fri Oct 26 11:22:20 CEST 2007 - uwedr@suse.de
6.381 -
6.382 -- Bugfix: zip state is changed now, when a .xml is save as .vym
6.383 -
6.384 --------------------------------------------------------------------
6.385 -Wed Oct 24 14:11:36 CEST 2007 - uwedr@suse.de
6.386 -
6.387 -- Feature: Improved ascii export
6.388 -- Bugfix: Present flag now does not set down arrows any longer
6.389 -
6.390 --------------------------------------------------------------------
6.391 -Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
6.392 -
6.393 -- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
6.394 -
6.395 --------------------------------------------------------------------
6.396 -Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
6.397 -
6.398 -- Version: 1.11.0
6.399 -- Feature: Added patches from Till Maas for better path handling to ease
6.400 - integration into various operating systems
6.401 -- Feature: Added patch from Till Maas to use xdg-open as default browser
6.402 -- Feature: Added patch from ????? to sort branches lexically
6.403 -- Feature: Added patches from Juha Ruotsalainen for compiling on win32
6.404 -
6.405 --------------------------------------------------------------------
6.406 -Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
6.407 -
6.408 -- Bugfix: included <typeinfo> for compiling in beta
6.409 -
6.410 --------------------------------------------------------------------
6.411 -Wed Oct 04 12:43:48 CEST 2007 - uwedr@suse.de
6.412 -
6.413 -- Version: 1.10.1
6.414 -- Bugfix: Missing action for editing URL in context menu
6.415 -- Bugfix: "Hide in Export" didn't work
6.416 -
6.417 --------------------------------------------------------------------
6.418 -Mon Sep 04 15:52:22 CEST 2007 - uwedr@suse.de
6.419 -
6.420 -- Bugfix: xLinks were not loaded from previously saved maps
6.421 -- Bugfix: Find manual in /usr/share/doc/packages/vym
6.422 -- Bugfix: Updated README.txt
6.423 -
6.424 --------------------------------------------------------------------
6.425 -Mon Aug 20 17:09:28 CEST 2007 - uwedr@suse.de
6.426 -
6.427 -- Version: 1.10.0 Release Candidate
6.428 -- Bugfix: Added missing standard flag (one of the smileys got lost)
6.429 -- Bugfix: Wrong parsing of relative positions after load of
6.430 - previously zoomed map
6.431 -
6.432 --------------------------------------------------------------------
6.433 -Tue Jul 31 22:09:01 CEST 2007 - uwedr@suse.de
6.434 -
6.435 -- Bugfix: Smother parabel links (Alexander Rettig)
6.436 -
6.437 --------------------------------------------------------------------
6.438 -Fri Jul 27 13:31:41 CEST 2007 - uwedr@suse.de
6.439 -
6.440 -- Version: 1.9.4
6.441 -- Feature: Restructured internal handling of XML based maps
6.442 -- Feature: Switched from QSimpleTextItem to QTextItem for Freemind support
6.443 -
6.444 --------------------------------------------------------------------
6.445 -Mon Jul 23 14:40:38 CEST 2007 - uwedr
6.446 -
6.447 -- Version: 1.9.3
6.448 -- Feature: Import of Freemind maps
6.449 -
6.450 --------------------------------------------------------------------
6.451 -Tue Jul 17 13:16:25 CEST 2007 - uwedr
6.452 -
6.453 -- Version: 1.9.2
6.454 -- Bugfix: Workaround for wrong XML generated by QT with in QRichText
6.455 - list items
6.456 -- Bugfix: No output from <span> tags in ASCII export any longer
6.457 -
6.458 --------------------------------------------------------------------
6.459 -Wed Jul 11 15:49:10 CEST 2007 - uwedr
6.460 -
6.461 -- Version: 1.9.1
6.462 -- Bugfix: Don't ask for directory in XML-based exports like
6.463 - KDE-bookmarks
6.464 -
6.465 --------------------------------------------------------------------
6.466 -Tue Jul 4 10:57:04 CEST 2007 - uwedr
6.467 -
6.468 -- Version: 1.9.0
6.469 -- Bugfix: auto-select/auto-edit new branches
6.470 -
6.471 --------------------------------------------------------------------
6.472 -Fri Jun 29 11:12:55 CEST 2007 - uwedr
6.473 -
6.474 -- Version: 1.8.76
6.475 -- Feature: Extended fileformat with object IDs to ease export from
6.476 - tomboy to vym
6.477 -- Bugfix: Visibility of BranchProperty window is saved now
6.478 -
6.479 --------------------------------------------------------------------
6.480 -Mon Jun 25 14:53:10 CEST 2007 - uwedr
6.481 -
6.482 -- Version: 1.8.75
6.483 -- Feature: Completed german translation
6.484 -
6.485 --------------------------------------------------------------------
6.486 -Wed Jun 20 13:52:37 CEST 2007 - uwedr
6.487 -
6.488 -- Version: 1.8.74
6.489 -- Feature: Center on selection with "."
6.490 -- Feature: Most important exports can be scripted now
6.491 -
6.492 --------------------------------------------------------------------
6.493 -Mon Jun 18 17:08:46 CEST 2007 - uwedr
6.494 -
6.495 -- Version: 1.8.73 - entering beta testing
6.496 -
6.497 --------------------------------------------------------------------
6.498 -Mon June 18 17:01:16 CEST 2007 - uwe
6.499 -
6.500 -- Feature: Creating new map with selection as MapCenter
6.501 -- Feature: Simple export to CSV spreadsheet
6.502 -- Feature: Copy from past steps in history to current one
6.503 -- Bugfix: Undo/Redo dropping images into map
6.504 -- Bugfix: Undo/Redo of copy/paste steps
6.505 -- Bugfix: NoteEditor now appears on first click (not 2nd)
6.506 -- Bugfix: Disable autosave while there are redos available
6.507 -- Bugfix: After changing link color, that color is applied to all links
6.508 - now
6.509 -- Bugfix: Pasting of FIOs
6.510 -- Bugfix: No selection of branches while editing heading
6.511 -- Bugfix: geometry of selection box gets updated while setting scroll or
6.512 - hide flag
6.513 -- Bugfix: Possible segfault when redoing deleteChilds()
6.514 -
6.515 --------------------------------------------------------------------
6.516 -Mon May 7 09:37:29 CEST 2007 - uwedr
6.517 -
6.518 -- Version: 1.8.72
6.519 -- Bugfix: autosave timeout now read from settings file
6.520 -- Bugfix: Settings for historywindow correclty read now
6.521 -- Bugfix: Closing property window toggle corresponding button
6.522 -
6.523 --------------------------------------------------------------------
6.524 -Thu Apr 26 10:34:48 CEST 2007 - uwe
6.525 -
6.526 -- Feature: Editing of frame attributes in branch property window
6.527 -- Feature: autosave
6.528 -- Feature: number of undo/redo levels can be changed in settings
6.529 -- Feature: branch property window settings are saved
6.530 -- Bugfix: Unscroll all childs has saveState now
6.531 -- Bugfix: Invisible selection after switching mapeditor
6.532 -
6.533 --------------------------------------------------------------------
6.534 -Tue Apr 10 15:18:39 CEST 2007 - uwedr
6.535 -
6.536 -- Version: 1.8.71
6.537 -- Feature: Added basic macros and documentation
6.538 -
6.539 --------------------------------------------------------------------
6.540 -Sat Mar 31 10:59:55 CEST 2007 - uwe
6.541 -
6.542 -- Version: 1.8.70
6.543 -- Feature: Color of selection can be changed now
6.544 -- Feature: Pen and brush for frames can be set
6.545 -- Bugfix: For frames the links always were drawn at bottom of heading
6.546 -- Bugfix: BranchPropertyWindow updates when selection is changed
6.547 -
6.548 --------------------------------------------------------------------
6.549 -Mon Mar 6 22:10:26 CET 2007 - uwe
6.550 -
6.551 -- Version: 1.8.69
6.552 -- Feature: Simple Editor for scripts
6.553 -- Feature: Added syntax highlighting for editor
6.554 -
6.555 --------------------------------------------------------------------
6.556 -Tue Feb 20 22:16:09 CET 2007 - uwe
6.557 -
6.558 -- Version: 1.8.68
6.559 -- Bugfix: Crash when trying to temporary link to floatimage
6.560 -
6.561 --------------------------------------------------------------------
6.562 -Mon Feb 17 16:32:53 CET 2007 - uwedr
6.563 -
6.564 -- Version: 1.8.67
6.565 -- Feature: Unscroll all now only affects selected subtree
6.566 -- Bugfix: Drawing error when temporary linking subtrees
6.567 -- Bugfix: Import of KDE Bookmarks
6.568 -- Bugfix: Export to KDE Bookmarks
6.569 -- Bugfix: Export to XHTML
6.570 -- Bugfix: Drag and Drop of URLs now only creates one branch
6.571 -
6.572 --------------------------------------------------------------------
6.573 -Wed Feb 07 17:27:31 CET 2007 - uwedr
6.574 -
6.575 -- Version: 1.8.66
6.576 -- Feature: Using a new class to select objects
6.577 -- Bugfix: Remember last directory before ASCII/LaTeX export
6.578 -- Bugfix: Editing in NoteEditor now updates actions (save) again
6.579 -- Bugfix: Deleting last branch automatically unscrolls parent now
6.580 -- Bugfix: Scroll/Unscroll has undo/redo now
6.581 -
6.582 --------------------------------------------------------------------
6.583 -Fri Jan 19 22:53:27 CET 2007 - uwe
6.584 -
6.585 -- Version: 1.8.65
6.586 -- Feature: New Frame format
6.587 -- Feature: New vym file format to support new frames
6.588 -- Bugfix: xml-parsing code simplified
6.589 -- Bugfix: Fixed pretty annoying repositioning of view after editing a
6.590 - heading. (don't call show() before positioning in heading...)
6.591 -- Bugfix: Wrong Cursors after pressing CTRL and inserting/relinking
6.592 -- Bugfix: Save PNG images with quality 100 to workaround image problems
6.593 -- Bugfix: Remember last directory before XML export
6.594 -
6.595 --------------------------------------------------------------------
6.596 -Thu Jan 11 16:05:49 CET 2007 - uwedr
6.597 -
6.598 -- Version: 1.8.65
6.599 -- Feature: Properties dialog for branches instead of context menu entries
6.600 -
6.601 --------------------------------------------------------------------
6.602 -Wed Jan 10 19:48:32 CET 2007 - uwe
6.603 -
6.604 -- Version: 1.8.64
6.605 -- Bugfix: move branch up/down calls scene()->update() now => much faster
6.606 -- Bugfix: Relinking of floatimages undo/redo
6.607 -
6.608 --------------------------------------------------------------------
6.609 -Tue Jan 2 19:30:50 CET 2007 - uwedr
6.610 -
6.611 -- Version: 1.8.64
6.612 -- Bugfix: printing scales correctly again
6.613 -- Bugfix: Drag & Drop (basically) works again
6.614 -- Bugfix: Crash caused by BranchObj::getLastSelected
6.615 -- Bugfix: Signal handling by changes in TextEditor: Much faster now
6.616 -
6.617 --------------------------------------------------------------------
6.618 -Thu Dec 21 14:13:13 CET 2006 - uwedr
6.619 -
6.620 -- Version: 1.8.63
6.621 -- Bugfix: printing is working again
6.622 -
6.623 --------------------------------------------------------------------
6.624 -Mon Dec 11 12:31:46 CET 2006 - uwedr
6.625 -
6.626 -- Version: 1.8.61
6.627 -- Bugfix: move up/down to next subtree is working again
6.628 -
6.629 --------------------------------------------------------------------
6.630 -Mon Dec 6 22:48:07 CET 2006 - uwe
6.631 -
6.632 -- Version: 1.8.61
6.633 -- Bugfix: Flags are working again
6.634 -- Bugfix: Floatimages have correct select box again
6.635 -
6.636 --------------------------------------------------------------------
6.637 -Wed Nov 29 13:48:35 CET 2006 - uwedr
6.638 -
6.639 -- Version: 1.8.60
6.640 -- Bugfix: Image format is saved with floatimage
6.641 -- Feature: Only one history window for all editors. State is saved.
6.642 -- Feature: Canvas ported to QT 4.2 GraphicsView
6.643 -- Feature: Options to use AntiaAliasing and smooth pixmap
6.644 - transformations
6.645 -- Feature: Thick links use polygons now, less objects in scene
6.646 -
6.647 --------------------------------------------------------------------
6.648 -Thu Nov 16 14:41:44 CET 2006 - uwedr
6.649 -
6.650 -- Bugfix: New recent file handling, fixes crash on Mac OS X
6.651 -
6.652 --------------------------------------------------------------------
6.653 -Tue Nov 14 10:00:12 CET 2006 - uwedr
6.654 -
6.655 -- Feature: Modifier Modes now change cursor when CTRL is pressed
6.656 -
6.657 --------------------------------------------------------------------
6.658 -Fri Nov 10 10:28:55 CEST 2006 - uwe
6.659 -
6.660 -- Feature: vym opens spanish documentation, if locale is es*
6.661 -- Bugfix: Position of floatimages is saved again
6.662 -- Bugfix: Position of floatimages survives adjustCanvasSize()
6.663 -- Bugfix: Adding branch to scrolled branch unscroll the former
6.664 -- Bugfix: More undo commands (removed saveStateComplete)
6.665 -
6.666 --------------------------------------------------------------------
6.667 -Tue Oct 24 17:24:22 CEST 2006 - uwedr
6.668 -
6.669 -- Version: 1.8.58
6.670 -- Feature: More undo commands (and fixes there)
6.671 -
6.672 --------------------------------------------------------------------
6.673 -Mon Oct 16 14:41:03 CEST 2006 - uwedr
6.674 -
6.675 -- Feature: Code simplification
6.676 -
6.677 --------------------------------------------------------------------
6.678 -Thu Sep 14 12:01:28 CEST 2006 - uwedr
6.679 -
6.680 -- Version: 1.8.57
6.681 -- Feature: Note Editor completly based on QT4 now.
6.682 -
6.683 --------------------------------------------------------------------
6.684 -Wed Sep 13 16:43:09 CEST 2006 - uwedr
6.685 -
6.686 -- Version: 1.8.56
6.687 -- Feature: New History window, All designer elements ported to QT4
6.688 -- Bugfix: No more hopping around of floats, when canvas is resized
6.689 - (by using relative positions for mainbranches. This might
6.690 - confuse parsing 1.8.56 documents with vym <= 1.8.1
6.691 -
6.692 --------------------------------------------------------------------
6.693 -Wed Sep 6 09:48:12 CEST 2006 - uwedr
6.694 -
6.695 -- Bugfix: Mac - XSL stylesheets are found
6.696 -- Bugfix: Mac - fonts are scaling
6.697 -- Bugfix: Mac - hand cursor is shown correctly
6.698 -
6.699 --------------------------------------------------------------------
6.700 -Tue Sep 5 15:38:20 CEST 2006 - uwedr
6.701 -
6.702 -- Version: 1.8.55
6.703 -- Bugfix: Undo/Redo moving floatimages
6.704 -- Bugfix: Shortcuts for scrolling branches/removing branch
6.705 -- Bugfix: update-bookmarks script is not only executed, but
6.706 - also found now...
6.707 -- Feature: Findwindow ported to QT4
6.708 -
6.709 --------------------------------------------------------------------
6.710 -Tue Sep 5 09:55:55 CEST 2006 - uwedr
6.711 -
6.712 -- Bugfix: More undo/redo (move of floatimages, relinking of branches)
6.713 -
6.714 --------------------------------------------------------------------
6.715 -Thu Aug 31 13:54:30 CEST 2006 - uwedr
6.716 -
6.717 -- Bugfix: More undo/redo commands
6.718 -- Bugfix: Actions updated after moving a branch now
6.719 -- Bugfix: vym refuses to start if vymTmpDir can't be created
6.720 -
6.721 --------------------------------------------------------------------
6.722 -Wed Aug 30 14:14:56 CEST 2006 - uwedr
6.723 -
6.724 -- Version: 1.8.54
6.725 -- Bugfix: Editing headings now works both on Mac and Linux
6.726 -
6.727 --------------------------------------------------------------------
6.728 -Mon Aug 28 13:15:35 CEST 2006 - uwe
6.729 -
6.730 -- Version: 1.8.53
6.731 -- Feature: Opening of all URLs in a subtree
6.732 -- Feature: Opening of all vymLinks in a subtree
6.733 -
6.734 --------------------------------------------------------------------
6.735 -Tue Aug 15 13:39:42 CEST 2006 - uwedr
6.736 -
6.737 -- Version: 1.8.52
6.738 -- Feature: Changed format of configuration file a bit (new file anyway
6.739 - with introduction of QT4)
6.740 -- Feature: Toolbar Layout is saved now
6.741 -
6.742 --------------------------------------------------------------------
6.743 -Thu Jul 27 14:28:54 CEST 2006 - uwedr
6.744 -
6.745 -- Bugfix: Floatimages internally are saved as png, preserving the alpha
6.746 - channel
6.747 -
6.748 --------------------------------------------------------------------
6.749 -Thu Jul 13 10:39:26 CEST 2006 - uwedr
6.750 -
6.751 -- Bugfix: Fixed broken check for non-existent OO-export configuration
6.752 -
6.753 --------------------------------------------------------------------
6.754 -Tue Jul 4 12:32:28 CEST 2006 - uwedr
6.755 -
6.756 -- Feature: Moved floats in XML Export, e.g. XHTML shows floatimages at
6.757 - beginning of export now
6.758 -
6.759 --------------------------------------------------------------------
6.760 -Mon July 10 16:53:29 CEST 2006 - uwedr
6.761 -
6.762 -- Version: 1.8.50
6.763 -- Feature: Beginning of QT4 port
6.764 -
6.765 --------------------------------------------------------------------
6.766 -Thu June 1 16:53:29 CEST 2006 - uwedr
6.767 -
6.768 -- Version: 1.7.18
6.769 -- Feature: Opening of tabs in Firefox or Mozilla
6.770 -- Feature: Documentation is up to date now
6.771 -- Bugfix: No more duplicate xLinks
6.772 -- Bugfix: Saving original filename of floatimages finally works
6.773 -- Bugfix: Positioning of floatimages while adjusting canvas size (also
6.774 - optimized code a bit)
6.775 -
6.776 --------------------------------------------------------------------
6.777 -Tue May 9 10:05:52 CEST 2006 - uwedr
6.778 -
6.779 -- Version: 1.7.17
6.780 -- Bugfix: Right click e.g. on URL Flag opened URL _and_ context menu
6.781 -- Bugfix: Deleting selection works also if Delkey is disabled.
6.782 -
6.783 --------------------------------------------------------------------
6.784 -Mon May 8 10:29:25 CEST 2006 - uwedr
6.785 -
6.786 -- Bugfix: Exclusive flags did not work properly.
6.787 -- Bugfix: Wrong icon in texteditor for text underline
6.788 -- Bugfix: Changed screenshots in docu to represent new look
6.789 -- Bugfix: Fixed z-plane of floatimage. Images did hide flags.
6.790 -
6.791 --------------------------------------------------------------------
6.792 -Mon Apr 24 11:59:22 CEST 2006 - uwedr
6.793 -
6.794 -- Bugfix: wrong paths in XHTML export (bnc#168033), caused by wrong
6.795 - vymBaseDir
6.796 -
6.797 --------------------------------------------------------------------
6.798 -Mon Apr 10 13:23:02 CEST 2006 - uwedr
6.799 -
6.800 -- Feature: More icons
6.801 -
6.802 --------------------------------------------------------------------
6.803 -Fri Mar 31 14:18:38 CEST 2006 - uwe
6.804 -
6.805 -- Feature: New environment variable VYMHOME
6.806 -
6.807 --------------------------------------------------------------------
6.808 -Thu Mar 30 11:00:21 CEST 2006 - uwedr
6.809 -
6.810 -- Version: 1.7.15
6.811 -- Feature: New icons. Icons and flags are not longer linked statically.
6.812 -
6.813 --------------------------------------------------------------------
6.814 -Tue Mar 28 21:54:31 CEST 2006 - uwe
6.815 -
6.816 -- Version: 1.7.13
6.817 -- Feature: Konqueror can open URLs in new tabs now.
6.818 -
6.819 --------------------------------------------------------------------
6.820 -Thu Mar 23 13:26:46 CET 2006 - uwedr
6.821 -
6.822 -- Version: 1.7.12
6.823 -- Bugfix: Problem with vymlinks pointing to higher directories (bnc#159770)
6.824 -- Bugfix: All exports support hiding of objects now
6.825 -- Bugfix: exportDir in XHTML export is correctly saved in map and
6.826 - defaults to current directory
6.827 -
6.828 --------------------------------------------------------------------
6.829 -Wed Mar 15 11:43:02 CET 2006 - uwedr
6.830 -
6.831 -- Version: 1.7.11
6.832 -- Bugfix: Workaround QT problem, where QT writes invalid XML code by not
6.833 - escaping & in fontnames
6.834 -- Feature: Hide Export Flag lets you hide objects in exports
6.835 -- Feature: Floatimages now are basically ornamented objects. They could
6.836 - have e.g. an URL later
6.837 -- Feature: On error the XML Parser shows the line which is causing the
6.838 - error
6.839 -
6.840 --------------------------------------------------------------------
6.841 -Wed Mar 8 13:58:40 CET 2006 - uwedr
6.842 -
6.843 -- Bugfix: Images preview in filedialog works again. Seemed to be a QT
6.844 - issue when multiple fileselections were allowed.
6.845 -
6.846 --------------------------------------------------------------------
6.847 -Mon Mar 6 15:02:57 CET 2006 - uwedr
6.848 -
6.849 -- Feature: Added export to Taskjuggler. xslt by Matt.
6.850 -
6.851 --------------------------------------------------------------------
6.852 -Wed Mar 1 22:29:47 CET 2006 - uwe
6.853 -
6.854 -- Bugfix: Canvas Size corrected when flag is toggled
6.855 -
6.856 --------------------------------------------------------------------
6.857 -Wed Mar 1 15:38:11 CET 2006 - uwedr
6.858 -
6.859 -- Version: 1.7.10
6.860 -- Feature: Include Images Horizontalls
6.861 -
6.862 --------------------------------------------------------------------
6.863 -Tue Feb 21 17:17:48 CET 2006 - uwedr
6.864 -
6.865 -- Feature: rudimentary import mmaps
6.866 -
6.867 --------------------------------------------------------------------
6.868 -Tue Feb 14 21:10:26 CET 2006 - uwe
6.869 -
6.870 -- Version 1.7.9
6.871 -- Feature: Import KDE bookmarks
6.872 -- Feature: Own class xsltproc for doing xml transformations
6.873 -
6.874 --------------------------------------------------------------------
6.875 -Tue Jan 31 16:54:52 CET 2006 - uwedr
6.876 -
6.877 -- Version 1.7.8
6.878 -- Bugfix: Hide Include Images Horizontally (not implemented yet)
6.879 -- Bugfix: Include Images Vertically was not read from saved file
6.880 -
6.881 --------------------------------------------------------------------
6.882 -Tue Jan 25 16:07:53 CET 2006 - uwedr
6.883 -
6.884 -- Version 1.7.7
6.885 -- Feature: Export to Open Office 2.x (Open Document) basically works
6.886 -- Feature: Export to XHTML uses smaller icon for URLs now
6.887 -
6.888 --------------------------------------------------------------------
6.889 -Wed Jan 18 13:29:52 CET 2006 - uwedr
6.890 -
6.891 -- Feature: Multiple File selection while loading maps and images
6.892 -
6.893 --------------------------------------------------------------------
6.894 -Tue Jan 3 12:20:08 CET 2006 - uwe
6.895 -
6.896 -- Feature: Small optimization in zip/unzip functions
6.897 -
6.898 --------------------------------------------------------------------
6.899 -Mon Jan 2 21:03:05 CET 2006 - uwe
6.900 -
6.901 -- Feature: FATE support for URLs
6.902 -
6.903 --------------------------------------------------------------------
6.904 -Wed Dec 28 12:09:59 CET 2005 - uwe
6.905 -
6.906 -- Version 1.7.6
6.907 -- Feature: Added idAttr to BranchObj::saveToDir
6.908 -- Bugfix: FloatObjects now use hideLinkIfUnselected, no more drawing
6.909 - errors, if FO is selected (undefined link)
6.910 -- Bugfix: FloatImages don't get lost during save after they have been
6.911 - relinked to new parent
6.912 -- Bugfix: Editing heading of mapcenter now also corrects position
6.913 -
6.914 --------------------------------------------------------------------
6.915 -Mon Oct 10 13:18:29 CEST 2005 - uwedr
6.916 -
6.917 -- Bugfix: Copy/Paste was currently not possible for images. Now
6.918 - completly rewrote mechanism. Instead of invisible map now XML import
6.919 - is used (Multiple clipboards should be not difficult now)
6.920 -
6.921 --------------------------------------------------------------------
6.922 -Mon Oct 3 10:33:09 CEST 2005 - uwe
6.923 -
6.924 -- Bugfix: Added small fix from Khaled Ahmed needed for display of
6.925 - arabic languages
6.926 -
6.927 --------------------------------------------------------------------
6.928 -Mon Sep 12 21:39:38 CEST 2005 - uwedr
6.929 -
6.930 -- Version 1.7.5
6.931 -- Feature: Currently 15 levels of undo (GUI to set value still missing)
6.932 -- Feature: Experimental LaTeX Export (without headers and opions so far)
6.933 -
6.934 --------------------------------------------------------------------
6.935 -Sun Sep 5 10:26:15 CEST 2005 - uwedr
6.936 -
6.937 -- Version 1.7.4
6.938 -- Feature: Link of a branch can be hidden, if object is not selected
6.939 -- Bugfix: Zoomed map no longer "jumps around" when branch is selected
6.940 - or moved.
6.941 -- Bugfix: TextEditor now has grey background again, if it is empty
6.942 -- Bugfix: BranchObj no longer need to connect to TextEditor, BranchObj
6.943 - is no longer a QOBJECT
6.944 -
6.945 --------------------------------------------------------------------
6.946 -Thu Sep 1 12:26:24 CEST 2005 - uwedr
6.947 -
6.948 -- Bugfix: Some minor changes so that translations use arguments now
6.949 - instead of several calls to tr()
6.950 -
6.951 --------------------------------------------------------------------
6.952 -Tue Aug 30 13:38:31 CEST 2005 - uwedr
6.953 -
6.954 -- Bugfix: Fixed pasting vymlinks: Pasting a branch to a target in
6.955 - another map caused vym to go into an endless loop, if the vymlink of the
6.956 - branch pointed to the new map.
6.957 -- Bugfix: Invisible floatimages (which have a scrolled parent) no longer
6.958 - can be selected
6.959 -
6.960 --------------------------------------------------------------------
6.961 -Fri Aug 19 09:12:49 CEST 2005 - uwedr
6.962 -
6.963 -- Feature: added debian subdirectory created by Steffen Joeris
6.964 -- Feature: added license to new aboutwindow
6.965 -
6.966 --------------------------------------------------------------------
6.967 -Tue Aug 16 19:22:56 CEST 2005 - jhilmer
6.968 -
6.969 -- Bugfix: Fixed link handling in aboutdialog.
6.970 -
6.971 --------------------------------------------------------------------
6.972 -Tue Aug 16 12:25:09 CEST 2005 - uwedr
6.973 -
6.974 -- Feature: Added keyboard shortcut to reset zoom factor
6.975 -- Bugfix: Added "..." to menu entries leading to another dialog
6.976 -- Bugfix: The setting option "Delete Key" is working again
6.977 -- Bugfix: A branch moved from left side to right had wrong orienation
6.978 -
6.979 --------------------------------------------------------------------
6.980 -Tue Aug 2 09:59:24 CEST 2005 - uwedr
6.981 -
6.982 -- Bugfix: Heading sizes now correct after moving e.g. mainbranch to
6.983 - a branch
6.984 -
6.985 --------------------------------------------------------------------
6.986 -Mon Aug 1 22:40:29 CEST 2005 - jhilmer
6.987 -
6.988 -- Bugfix: Problems with closing of note editor when text was modified.
6.989 -- Feature: Added subscript and superscript to note editor
6.990 -
6.991 --------------------------------------------------------------------
6.992 -Thu Jul 28 11:57:38 CEST 2005
6.993 -
6.994 -- Version 1.7.3
6.995 -- Bugfix: Frames didn't become invisible if scrolled
6.996 -
6.997 --------------------------------------------------------------------
6.998 -Thu Jul 28 11:57:38 CEST 2005
6.999 -
6.1000 -- Version 1.7.2
6.1001 -- Bugfix: if selection changed before undo, undo worked on wrong
6.1002 - branch
6.1003 -- included math.h again to enable compiling with gcc4
6.1004 -
6.1005 --------------------------------------------------------------------
6.1006 -Mi Jul 27 17:27:14 CEST 2005
6.1007 -
6.1008 -- Bugfix: if selection changed before undo, undo worked on wrong branch
6.1009 -
6.1010 --------------------------------------------------------------------
6.1011 -Mon Jul 25 22:22:21 CEST 2005
6.1012 -
6.1013 -- Bugfix: changed MapEditor::undo and ::saveState to also save selection
6.1014 -
6.1015 --------------------------------------------------------------------
6.1016 -Di Jul 19 16:42:31 CEST 2005
6.1017 -
6.1018 -- Version: 1.7.1
6.1019 -- Feature: Drag and Drop also for .vym and files (Jakob Hilmer)
6.1020 -- Feature: More speedup on moving/relinking branches
6.1021 -
6.1022 --------------------------------------------------------------------
6.1023 -
6.1024 -Mi Jul 13 11:44:10 CEST 2005
6.1025 -
6.1026 -- Drag and Drop also for URLs
6.1027 -
6.1028 --------------------------------------------------------------------
6.1029 -Di Jul 12 20:56:09 CEST 2005
6.1030 -
6.1031 -- Version: 1.7.0
6.1032 -
6.1033 --------------------------------------------------------------------
6.1034 -Mon Jul 4 21:13:42 CEST 2005
6.1035 -
6.1036 -- Version: 1.6.9
6.1037 -- Bugfix: TextEditor doesn't get minimized in KDE any longer (KDE-bug?)
6.1038 -
6.1039 --------------------------------------------------------------------
6.1040 -Tue Jun 14 11:43:44 CEST 2005
6.1041 -
6.1042 -- Feature: printer name is saved in vymrc now
6.1043 -- Feature: added image drag/drop (by Jakob Hilmer)
6.1044 -- Bugfix: Importing map into new map now has correct (empty) filename
6.1045 -
6.1046 --------------------------------------------------------------------
6.1047 -2005-06-07
6.1048 -
6.1049 -- Version: 1.6.8
6.1050 -- Feature: Dramatic speedup in some operations
6.1051 - (e.g. move branch up/down) due to extended
6.1052 - undo engine
6.1053 --------------------------------------------------------------------
6.1054 - 2005-05-27
6.1055 -
6.1056 -- Version: 1.6.7
6.1057 -- Feature:Changed default pdf-reader for Mac OSX
6.1058 -- Bugfix: xLinks stopped working in 1.6.6
6.1059 -- Bugfix: drawing error when using modModeCopy
6.1060 -- Bugfix: replaced lrint by qRound for BSD port
6.1061 -
6.1062 ------------------------------------------------------------
6.1063 - 2005-05-23
6.1064 -
6.1065 -- Version 1.6.6
6.1066 -- Feature: Exclusive standard flags
6.1067 -
6.1068 ------------------------------------------------------------
6.1069 -2005-05-19
6.1070 -
6.1071 -- Version: 1.6.5
6.1072 -- Feature: removing a branch and keeping its childs
6.1073 -- Feature: removing childs of a branch
6.1074 -- Feature: insert branch and make selection its child
6.1075 -- Feature: restructured branch context menu
6.1076 - in a basic version (straight line)
6.1077 -- Feature: New shortcuts for use on Mac OS X
6.1078 -- Feature: Importing directories generates vymlinks now
6.1079 -- Bugfix: Changing linkstyle now automatically redraws all
6.1080 - links again
6.1081 -- Bugfix: Paste icon is disabled if clipboard is empty
6.1082 -
6.1083 ------------------------------------------------------------
6.1084 -2005-04-15
6.1085 -
6.1086 -- Version: 1.6.4
6.1087 -- Feature: xLinks (connection between 2 branches) works
6.1088 - in a basic version (straight line)
6.1089 -
6.1090 ------------------------------------------------------------
6.1091 -2005-03-30
6.1092 -
6.1093 -- Version: 1.6.3
6.1094 -- Bugfix: Saving of selection to a vym part (.vyp)
6.1095 -- Bugfix: Closing the noteeditor by closing its window now
6.1096 - also toggles the responding toolbar button. &
6.1097 -
6.1098 ------------------------------------------------------------
6.1099 -2005-03-24
6.1100 -
6.1101 -- Version: 1.6.2
6.1102 -- Feature: Introduced Modifier modes: color, link, copy
6.1103 -- Feature: Linking branches is basically possible, though it can't be
6.1104 - edited/saved yet
6.1105 -
6.1106 ------------------------------------------------------------
6.1107 -2005-01-30
6.1108 -
6.1109 -- Version: 1.6.1
6.1110 -- Feature: Optimized moving of branches: much faster especially
6.1111 - with huge subtrees
6.1112 -- Bugfix: Segfault when loading vym part
6.1113 -- Bugfix: ugly unitialized lines, when temporary drawn link
6.1114 - was moved from a temporary parent back to canvas
6.1115 -
6.1116 ------------------------------------------------------------
6.1117 -2004-12-14
6.1118 -
6.1119 -- Version: 1.6.0
6.1120 -- Feature: Added saving of xhtml settings in map
6.1121 -
6.1122 ------------------------------------------------------------
6.1123 -2004-12-13
6.1124 -
6.1125 -- Version: 1.5.2
6.1126 -- Feature: Added Import of maps with two modes:
6.1127 - add/replace
6.1128 -- Feature: Added export of part of maps
6.1129 -- Feature: Added joining of paragraphs in text editor
6.1130 -- Feature: Optimized undo: Only relevant parts are saved, which
6.1131 - dramatically improves e.g. moving branches up/down in most maps
6.1132 -- Bugfix: QTextEdit generates invalid XML code, which could lead to a
6.1133 - parse error, if font name contains a \& (bnc#62283)
6.1134 -- Bugfix: Wrong order of mainbranches in Export
6.1135 -- Bugfix: zip archive was not deleted before save, which could lead to
6.1136 - much bigger files, e.g. when working on older \vym maps or deleted
6.1137 - images
6.1138 -- Bugfix: Printing in Texteditor
6.1139 -- Bugfix: Wrong URLs in xhtml output
6.1140 -- Bugfix: Segfault fixed at Cursor left/right in empty map
6.1141 -
6.1142 ------------------------------------------------------------
6.1143 -2004-10-01
6.1144 -
6.1145 -- Version: 1.5.1
6.1146 -- Feature: More options in xhtml export: external scripts
6.1147 -
6.1148 ------------------------------------------------------------
6.1149 -2004-09-26
6.1150 -
6.1151 -- Version: 1.5.0
6.1152 -- Public release of all changes since 1.4.1
6.1153 -- Feature: New function to replace paragraphs in note editor
6.1154 - by linebreaks, this makes pasted text much nicer
6.1155 -- Feature: New option to toggle exporting of of floatimages
6.1156 -- Feature: z-plane of floatimages can be set (manually only)
6.1157 -- Bugfix: Wrong ordering of branches, if mainbranch is exactly left of
6.1158 - center
6.1159 -
6.1160 ------------------------------------------------------------
6.1161 -2004-09-24
6.1162 -
6.1163 -- Version: 1.4.7
6.1164 -- Feature: New Export to XHTML (by Thomas Schraitle)
6.1165 -- Bugfix: vymLink
6.1166 -- Bugfix: spaces and dots in filenames
6.1167 -- Bugfix: Error message if xsltproc is not installed
6.1168 -
6.1169 ------------------------------------------------------------
6.1170 -2004-09-15
6.1171 -
6.1172 -- Version: 1.4.6
6.1173 -- Feature: New file format: notes are saved as part of the .xml file
6.1174 -- Feature: Note Editor supports Rich Text now.
6.1175 -- Feature: Parser now also nows {\tt standardflag} (all letters lowercase)
6.1176 -
6.1177 ------------------------------------------------------------
6.1178 -2004-08-23
6.1179 -
6.1180 -- Version: 1.4.5
6.1181 -- Feature: Correct handling of font size in Heading
6.1182 -
6.1183 ------------------------------------------------------------
6.1184 -2004-07-29
6.1185 -
6.1186 -- Version: 1.4.4
6.1187 -- Selecting with cursor now works between subtrees
6.1188 -- Bugfix: vymLink was set to temporary dir in 1.4.3
6.1189 -
6.1190 ------------------------------------------------------------
6.1191 -2004-07-19
6.1192 -
6.1193 -- Version: 1.4.3
6.1194 -- Optimisation: Reduced canvas objects by only creating objects for used
6.1195 - flags
6.1196 -- Better visualization of moving branch above/below target
6.1197 -- Find Window informs with dialog, if the search failed
6.1198 -- System Flags are clickable now
6.1199 -- Reworked CSS and XST stylsheets (comments, indent, browser
6.1200 - compatibility)
6.1201 -- vymLinks are shown in statusbar
6.1202 -- current directory is save
6.1203 -- Rewritten load/save to improve multimap handling and unzipped files
6.1204 -- Bugfix: vymLinks don't get deleted when Cancel is pressed
6.1205 -- Bugfix: Fixed a bunch of bugs in XSL for HTML export
6.1206 -- Bugfix: More toolbar buttons disabled, if action not possible
6.1207 -- Bugfix: Renaming .vymfile now works
6.1208 -- Bugfix: mapChanged set when toggling flags
6.1209 -- Bugfix: CTRL-N was used twice
6.1210 -- Bugfix: Del didn't work on floatimage
6.1211 -
6.1212 ------------------------------------------------------------
6.1213 -- Version: 1.4.2
6.1214 -- Bugfix: Float image could not be deleted
6.1215 -
6.1216 ------------------------------------------------------------
6.1217 -2004-05-25
6.1218 -
6.1219 -- Version: 1.4.1
6.1220 -- Bugfix: Color of branch not saved
6.1221 -- Bugfix: wrong path at HTML export
6.1222 -- Bugfix: map is not save with special characters in path
6.1223 -
6.1224 ------------------------------------------------------------
6.1225 -2004-05-17
6.1226 -
6.1227 -- Version: 1.4.0
6.1228 -- Ask for confirmation before opening
6.1229 - a map in multiple editors
6.1230 -- Save state of note editor (visible/minimized)
6.1231 -- Export to HTML
6.1232 -- Author and Comment is saved in map
6.1233 -- Stats are shown in Edit MapInfo
6.1234 -- Changes for OS X port (QCursor, QContextMenuEvent)
6.1235 -- Bugfix: Fonts from note editor are save now
6.1236 -- Bugfix: invisible image when parent is scrolled
6.1237 -- Bugfix: Segfault pressing "enter" for floatimage
6.1238 -- Bugfix: Images can't be outside of exported area
6.1239 - anymore.
6.1240 -- Bugfix: Filenames with blanks
6.1241 -- Bugfix: Old maplink is shown when editing maplink
6.1242 -- Bugfix: always show cursor while editing heading
6.1243 -
6.1244 ------------------------------------------------------------
6.1245 -2004-04-16
6.1246 -
6.1247 -- Version: 1.3.5
6.1248 -- Export map to dir
6.1249 -- Export to any of QTs image formats
6.1250 -- Also right side of selection is always visible now.
6.1251 -
6.1252 ------------------------------------------------------------
6.1253 -2004-04-07
6.1254 -
6.1255 -- Version: 1.3.4
6.1256 -- Load last maps in file menu
6.1257 -- save last image path for loading
6.1258 -- Also export standard flags to dir.
6.1259 -
6.1260 ------------------------------------------------------------
6.1261 -2004-03-26
6.1262 -
6.1263 -- Version: 1.3.3
6.1264 -- Enabled <br> in headings as manual linebreak
6.1265 -- Heading can be copied to URL
6.1266 -- Bugfix: GIFs are automatically converted to PNG now
6.1267 -
6.1268 ------------------------------------------------------------
6.1269 -2004-03-26
6.1270 -
6.1271 -- Version: 1.3.2
6.1272 -- Add and move branches above/below selection, Texteditor copy all,
6.1273 -
6.1274 ------------------------------------------------------------
6.1275 -2004-03-25
6.1276 -
6.1277 -- Version: 1.3.1
6.1278 -- Export to directory, changed naming in .vym
6.1279 -
6.1280 ------------------------------------------------------------
6.1281 -2004-03-23
6.1282 -
6.1283 -- Version: 1.3.0
6.1284 -- Bugfix: Check if map can be saved at all
6.1285 -
6.1286 ------------------------------------------------------------
6.1287 -2004-03-22
6.1288 -
6.1289 -- Version: 1.2.12
6.1290 -- Select image format before saving image
6.1291 -
6.1292 ------------------------------------------------------------
6.1293 -2004-03-18
6.1294 -
6.1295 -- Version: 1.2.11
6.1296 -- Selecting mainbranches by up/down
6.1297 -- Export ASCII (experimental)
6.1298 -- Each map can be saved individually at quit
6.1299 -- Bugfix: Opening VymLink crashes QT
6.1300 -- Bugfix: 50\% less objects on canvas
6.1301 -- Bugfix: Ignoring LANG, now always written as UTF8
6.1302 -
6.1303 ------------------------------------------------------------
6.1304 -2004-03-16
6.1305 -
6.1306 -- Version: 1.2.10
6.1307 -- Sort Mainbranches by angle to y-axis
6.1308 -- Import directory structure
6.1309 -- Bugfix: Set FrameType of MapCenter while loading map
6.1310 -
6.1311 ------------------------------------------------------------
6.1312 -2004-03-12
6.1313 -
6.1314 -- Version: 1.2.9
6.1315 -- Jump to another vym map
6.1316 -- Mainbranches are alwas ordered clockwise
6.1317 -
6.1318 ------------------------------------------------------------
6.1319 -2004-03-03
6.1320 -
6.1321 -- Version: 1.2.8
6.1322 -- Change frame types in context menu
6.1323 -
6.1324 ------------------------------------------------------------
6.1325 -2004-02-25
6.1326 -
6.1327 -- Version: 1.2.7
6.1328 -- Copy / Paste and save Floatimages
6.1329 -
6.1330 ------------------------------------------------------------
6.1331 -2004-02-24
6.1332 -
6.1333 -- Version: 1.2.6
6.1334 -- Closing vym in KDE now asks for save, too
6.1335 -- Context menu for branches
6.1336 -- Selection is saved in .vym file
6.1337 -
6.1338 ------------------------------------------------------------
6.1339 -2004-02-18
6.1340 -
6.1341 -- Version: 1.2.5
6.1342 -- URLs to external links can be added
6.1343 -- All actions are deactived if not possible
6.1344 -
6.1345 ------------------------------------------------------------
6.1346 -2004-02-16
6.1347 -
6.1348 -- Version: 1.2.4
6.1349 -- Images: Can be loaded, saved, relinked to other parents
6.1350 -
6.1351 ------------------------------------------------------------
6.1352 -2004-01-27
6.1353 -
6.1354 -- Version: 1.2.3
6.1355 -- Zoom: Reset and finer steps shrinking/enlarging
6.1356 -
6.1357 ------------------------------------------------------------
6.1358 -2004-01-27
6.1359 -
6.1360 -- Version: 1.2.2
6.1361 -- Editing of links (style and color)
6.1362 -
6.1363 ------------------------------------------------------------
6.1364 -2004-01-27
6.1365 -
6.1366 -- Version: 1.2.1
6.1367 -- Bugfix: LineEdit when adding branch has correct position again.
6.1368 -
6.1369 ------------------------------------------------------------
6.1370 -2004-01-23
6.1371 -
6.1372 -- Version: 1.2.0
6.1373 -- Scrolled parts are automatically unscrolled when selected and scrolled
6.1374 - again later.
6.1375 -- Bugfix: Save flag is updated when multiple maps are opened
6.1376 -- Bugfix: Moving of branches is faster and more accurat when adding to
6.1377 - mapcenter
6.1378 -
6.1379 ------------------------------------------------------------
6.1380 -2003-12-04
6.1381 -
6.1382 -- Version: 1.1.7
6.1383 -- Bugfix: Remember filename of note in noteeditor
6.1384 -
6.1385 ------------------------------------------------------------
6.1386 -2003-12-02
6.1387 -
6.1388 -- Version: 1.1.6
6.1389 -- Find Text also in Notes.
6.1390 -
6.1391 ------------------------------------------------------------
6.1392 -2003-11-07
6.1393 -
6.1394 -- Version: 1.1.5
6.1395 -- Bugfix: Correct setting and positioning when relinking branches
6.1396 -
6.1397 ------------------------------------------------------------
6.1398 -2003-11-03
6.1399 -
6.1400 -- Version: 1.1.4
6.1401 -- Scroll mode added (folding of subtrees).
6.1402 -- Bugfix: Wrong position of linedit in zoomed view
6.1403 -
6.1404 ------------------------------------------------------------
6.1405 -2003-10-09
6.1406 -
6.1407 -- Version: 1.1.3
6.1408 -- Added clear button in find window, bugfixes
6.1409 -
6.1410 ------------------------------------------------------------
6.1411 -2003-10-07
6.1412 -
6.1413 -- Version: 1.1.2
6.1414 -- Links can be colored with color of heading
6.1415 -
6.1416 ------------------------------------------------------------
6.1417 -2003-09-26
6.1418 -
6.1419 -- Version: 1.1.1
6.1420 -- Improved visualization of linking to new branch
6.1421 -
6.1422 ------------------------------------------------------------
6.1423 -2003-09-25
6.1424 -
6.1425 -- Version: 1.1.0
6.1426 -- Find Function
6.1427 -- Selection always stays in view
6.1428 -
6.1429 ------------------------------------------------------------
6.1430 -2003-09-18
6.1431 -
6.1432 -- Version: 1.0.1
6.1433 -- Find function scrolls to result now
6.1434 -- Bugfix: Adding branch with midmouse
6.1435 -- Bugfix: multiple repositioning of map, when noteeditor was changed
6.1436 - (speedup)
6.1437 -- New Linestyles (still hardcoded)
6.1438 -
6.1439 ------------------------------------------------------------
6.1440 -2003-09-16
6.1441 -
6.1442 -- Version: 1.0.0
6.1443 -- First public stable release
6.1444 -
6.1445 ------------------------------------------------------------
6.1446 -- Version: 0.9.0
6.1447 -- added quick color picker (CTRL + Left Mouse) ?
6.1448 -
6.1449 ------------------------------------------------------------
6.1450 -- Version: 0.8.0
6.1451 -- added automatic canvas resizer, removed manual resizing of canvas
6.1452 -- added settings option to paste text into new branch
6.1453 -- simplified code
6.1454 -- Added heart flag
6.1455 -- Choose and switch between fixed and variable width fonts
6.1456 -- note editor
6.1457 -- Fixed segfault caused by undo and a call of updateNoteFlag of note
6.1458 - editor
6.1459 -- Added settings menu to configure autoselect and autoedit mode
6.1460 -- autoedit and autoselect mode
6.1461 -- Fixed ugly display problem with QT Palette (Klaas Freitag)
6.1462 -- Reduced temporary directories from 4 to 1
6.1463 -- Added wordwrap in printing of notes
6.1464 -- New toolbar buttons in texteditor
6.1465 -- Set background color
6.1466 -- Fixed bug: Flags in toolbar not updated when selecting map center
6.1467 -
6.1468 ------------------------------------------------------------
6.1469 -- Version: 0.7.0
6.1470 -- No more segfault, when an object is deleted while being edited
6.1471 -- Keep focus constant when zooming in/out
6.1472 -- Export as png graphic
6.1473 -- Keep Center of map where it is while zooming
6.1474 -- Added Standard Flags (Smiley, Hook, Stopsign, ...)
6.1475 -- MDI: Multi Document Interface enables working on several maps
6.1476 - simultanously
6.1477 -- Enabled creating a new map via argument on commandline
6.1478 -- Changed file extension from .mmap to .vym
6.1479 -- noteeditor changes color, if empty or nothing is selected
6.1480 -- Changes in NoteEditor window are recognized by main window, too, thus
6.1481 - preventing loosing data when quitting the program.
6.1482 -
6.1483 ------------------------------------------------------------
6.1484 -- Version: 0.6.0
6.1485 -- New rendering engine: Faster, no flickering
6.1486 -
6.1487 ------------------------------------------------------------
6.1488 -- Version: 0.5.0
6.1489 -- Changed printing to use maximum space on paper
6.1490 -- Note editor is hidden, too, when mapeditor is minimized
6.1491 -- New (compressed) file format
6.1492 -
6.1493 ------------------------------------------------------------
6.1494 -- Version: 0.4.0
6.1495 -- Size of map is saved
6.1496 -- Multi Line Headings
6.1497 -- Reworked Rendering Engine: Much faster now.
6.1498 -- Reworked Undo: Much faster now.
6.1499 -- Enabled moving of map center
6.1500 -- Multi-line headings
6.1501 -
6.1502 ------------------------------------------------------------
6.1503 -- Version: 0.3.0
6.1504 -- Introduced Undo
6.1505 -- Fixed some bugs
6.1506 -
6.1507 ------------------------------------------------------------
6.1508 -- Version: 0.2.0
6.1509 -- Moving view of map improved:
6.1510 -- New handling (acrobat reader style)
6.1511 -- New mousepointer
6.1512 -- Several tools to color a map
6.1513 -
6.1514 ------------------------------------------------------------
6.1515 -- Version: 0.1.0
6.1516 -- Inital version, basic map layout
6.1517 -- Data is stored in XML
7.1 --- a/treeitem.cpp Thu Mar 18 11:55:59 2010 +0000
7.2 +++ b/treeitem.cpp Mon Mar 22 15:37:23 2010 +0000
7.3 @@ -653,7 +653,7 @@
7.4 if (type==Image || type==Branch || type==MapCenter)
7.5 // ((ImageItem*)this)->updateVisibility();
7.6 {
7.7 - LinkableMapObj* lmo=((MapItem*)this)->getLMO();
7.8 + //LinkableMapObj* lmo=((MapItem*)this)->getLMO();
7.9
7.10 if (mode==HideExport && (hideExport || hasHiddenExportParent() ) ) // FIXME-3 try to avoid calling hasScrolledParent repeatedly
7.11
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
8.2 +++ b/vym.changelog Mon Mar 22 15:37:23 2010 +0000
8.3 @@ -0,0 +1,1521 @@
8.4 +-------------------------------------------------------------------
8.5 +Mon Mar 22 08:37:42 CET 2010 - vym@insilmaril.de
8.6 +
8.7 +- Bugfix: Segfault when undoing deleting of MapCenter
8.8 +- Bugfix: Workaround for Qt bug, where cursor of embedded QLineEdits
8.9 + in 2nd tab was not shown
8.10 +
8.11 +-------------------------------------------------------------------
8.12 +Thu Mar 18 12:45:45 CET 2010 - vym@insilmaril.de
8.13 +
8.14 +- Version: 1.13.1 First pre-release of 1.13.0 to buildservice
8.15 +
8.16 +-------------------------------------------------------------------
8.17 +Wed Mar 17 22:24:51 CET 2010 - vym@insilmaril.de
8.18 +
8.19 +- Bugfix: Enabled Qt 4.6: Removed QtAnimation Framework and fixed flags
8.20 +
8.21 +-------------------------------------------------------------------
8.22 +Tue Mar 16 16:45:23 CET 2010 - vym@insilmaril.de
8.23 +
8.24 +- Feature: zoomFactor is saved and restored on load
8.25 +
8.26 +-------------------------------------------------------------------
8.27 +Mon Mar 15 12:48:45 CET 2010 - vym@insilmaril.de
8.28 +
8.29 +- Bugfix: Several fixes for later autoLayout
8.30 +
8.31 +-------------------------------------------------------------------
8.32 +Wed Mar 10 16:35:23 CET 2010 - vym@insilmaril.de
8.33 +
8.34 +- Bugfix: MainWindow::getModel() returns correct model now
8.35 +- Bugfix: Better focus handling in FindWidget
8.36 +
8.37 +-------------------------------------------------------------------
8.38 +Tue Mar 9 14:04:10 CET 2010 - vym@insilmaril.de
8.39 +
8.40 +- Bugfix: Regression in scrolling branches
8.41 +
8.42 +-------------------------------------------------------------------
8.43 +Mon Mar 8 07:45:34 CET 2010 - vym@insilmaril.de
8.44 +
8.45 +- Feature: New widget to display all results of Find action.
8.46 + Also opened with CTRL-F once FindWidget is open
8.47 +- Feature: loadNote and saveNote commands to allow changing of note
8.48 + from external
8.49 +
8.50 +-------------------------------------------------------------------
8.51 +Fri Feb 19 08:05:02 CET 2010 - vym@insilmaril.de
8.52 +
8.53 +- Bugfix: Fixed regression of flags
8.54 +
8.55 +-------------------------------------------------------------------
8.56 +Wed Feb 17 16:31:34 CET 2010 - vym@insilmaril.de
8.57 +
8.58 +- Bugfix: When pasting a heading into the LineEdit, newlines are removed
8.59 + to avoid broken rendering
8.60 +
8.61 +-------------------------------------------------------------------
8.62 +Wed Feb 17 11:49:09 CET 2010 - vym@insilmaril.de
8.63 +
8.64 +- Feature: Novell Bugzilla now has extra flag
8.65 +
8.66 +-------------------------------------------------------------------
8.67 +Wed Feb 10 14:47:49 CET 2010 - vym@insilmaril.de
8.68 +
8.69 +- Feature: Sort lexically backwards
8.70 +
8.71 +-------------------------------------------------------------------
8.72 +Tue Feb 9 10:26:23 CET 2010 - vym@insilmaril.de
8.73 +
8.74 +- Bugfix: Relinking now keeps frametype
8.75 +
8.76 +-------------------------------------------------------------------
8.77 +Thu Jan 21 09:22:08 CET 2010 - vym@insilmaril.de
8.78 +
8.79 +- Bugfix: Changes in NoteEditor update the Save flag visually
8.80 +
8.81 +-------------------------------------------------------------------
8.82 +Wed Jan 20 14:28:20 CET 2010 - vym@insilmaril.de
8.83 +
8.84 +- Bugfix: New Progressbar while loading maps: One bar to count them,
8.85 + one bar to into colors grind them
8.86 +
8.87 +-------------------------------------------------------------------
8.88 +Thu Jan 14 12:03:43 CET 2010 - vym@insilmaril.de
8.89 +
8.90 +- Feature: Very basic support to find duplicate URLs
8.91 +
8.92 +-------------------------------------------------------------------
8.93 +Wed Jan 13 08:28:18 CET 2010 - vym@insilmaril.de
8.94 +
8.95 +- Feature: Added action to open all URLs in subtree, default
8.96 + is now to only open those, which don't have scrolled parent
8.97 +
8.98 +-------------------------------------------------------------------
8.99 +Tue Jan 12 09:14:49 CET 2010 - vym@insilmaril.de
8.100 +
8.101 +- Bugfix: Restart a konqueror ofr opening of URLs, if needed
8.102 +
8.103 +-------------------------------------------------------------------
8.104 +Tue Jan 5 12:22:27 CET 2010 - vym@insilmaril.de
8.105 +
8.106 +- Bugfix: Dropping URLs
8.107 +
8.108 +-------------------------------------------------------------------
8.109 +Mon Jan 4 09:36:24 CET 2010 - vym@insilmaril.de
8.110 +
8.111 +- Bugfix: Branch didn't unscroll when deleting last child
8.112 +- Feature: URL icons in image map of HTML export work now
8.113 +
8.114 +-------------------------------------------------------------------
8.115 +Tue Dec 15 10:14:11 CET 2009 - vym@insilmaril.de
8.116 +
8.117 +- Bugfix: A&O report didn't show subitems
8.118 +
8.119 +-------------------------------------------------------------------
8.120 +Mon Dec 14 11:16:57 CET 2009 - vym@insilmaril.de
8.121 +
8.122 +- Bugfix: Wrong tmp position when relinking a mainbranch
8.123 +- Bugfix: Image export, also used in HTML export
8.124 +
8.125 +-------------------------------------------------------------------
8.126 +Thu Dec 7 23:17:57 CET 2009 - vym@insilmaril.de
8.127 +
8.128 +- Feature: Following xLinks is now possible by clicking in the
8.129 + part of a branch near to beginning of branch (20 pixels)
8.130 +- Feature: Added new flag for status "work in progress"
8.131 + (between green hook and red cross)
8.132 +- Bugfix: Animation of branches (default off in MapEditor)
8.133 +- Bugfix: Segfault when closing map (due clearing selection in
8.134 + VymModel::clear() )
8.135 +
8.136 +-------------------------------------------------------------------
8.137 +Thu Dec 3 17:26:59 CET 2009 - vym@insilmaril.de
8.138 +
8.139 +- Bugfix: Clicking the note flag opens the note editor again
8.140 +
8.141 +-------------------------------------------------------------------
8.142 +Tue Dec 1 12:03:42 CET 2009 - vym@insilmaril.de
8.143 +
8.144 +- Bugfix: Undo of detach
8.145 +
8.146 +-------------------------------------------------------------------
8.147 +Thu Nov 26 22:32:34 CET 2009 - vym@insilmaril.de
8.148 +
8.149 +- Bugfix: Regression in Undo
8.150 +- Bugfix: Find didn't find stuff in previous part of tree
8.151 +
8.152 +-------------------------------------------------------------------
8.153 +Tue Nov 24 22:34:42 CET 2009 - vym@insilmaril.de
8.154 +
8.155 +- Bugfix: Automatic scrolling to new selected items didn't work
8.156 + reliable when item had scrolled parents
8.157 +
8.158 +-------------------------------------------------------------------
8.159 +Wed Nov 11 10:32:29 CET 2009 - vym@insilmaril.de
8.160 +
8.161 +- Bugfix: New map has mapcenter again
8.162 +
8.163 +-------------------------------------------------------------------
8.164 +Tue Nov 10 13:53:37 CET 2009 - vym@insilmaril.de
8.165 +
8.166 +- Bugfix: Autodetection of textformat (ASCII vs. HTML)
8.167 +- Bugfix: nextBranch failed with xLinks
8.168 +
8.169 +-------------------------------------------------------------------
8.170 +Fri Oct 30 18:58:22 CET 2009 - uwedr@suse.de
8.171 +
8.172 +- Bugfix: Selection doesn't get lost when switching maps
8.173 +
8.174 +-------------------------------------------------------------------
8.175 +Wed Oct 28 08:43:34 CET 2009 - uwedr@suse.de
8.176 +
8.177 +- Feature: Adding timestamp to branch
8.178 +
8.179 +-------------------------------------------------------------------
8.180 +Wed Oct 21 17:23:13 CEST 2009 - uwedr@suse.de
8.181 +
8.182 +- Feature: expand/collapse by one level in TreeEditor
8.183 +- Bugfix: Process like webbrowser started by vym survive vym now
8.184 +
8.185 +-------------------------------------------------------------------
8.186 +Tue Oct 6 16:29:07 CEST 2009 - uwedr@suse.de
8.187 +
8.188 +- Bugfix: Export to OpenOffice.org
8.189 +- Bugfix: BranchProp window
8.190 +
8.191 +-------------------------------------------------------------------
8.192 +Sat Aug 8 23:54:38 CEST 2009 - uwedr@suse.de
8.193 +
8.194 +- Feature: Selecting with cursor now remembers left & right of
8.195 + mapcenters. Also improved selections in deeper trees
8.196 +- Bugfix: Selecting with cursor in MapEditor
8.197 +
8.198 +-------------------------------------------------------------------
8.199 +Thu Aug 6 19:33:01 CEST 2009 - uwedr@suse.de
8.200 +
8.201 +- Bugfix: Removed the "new" in new branches to allow easier copy & paste
8.202 +
8.203 +-------------------------------------------------------------------
8.204 +Wed Jul 22 21:51:04 CEST 2009 - uwedr@suse.de
8.205 +
8.206 +- Bugfix: relinking a branch to a scrolled branch doesn't unscroll
8.207 + anymore
8.208 +- Bugfix: Importing KDE bookmarks with empty folders doesn't
8.209 + scroll these folders anymore
8.210 +-------------------------------------------------------------------
8.211 +Thu Apr 2 11:56:17 CEST 2009 - uwedr@suse.de
8.212 +
8.213 +- Feature: Added sverige translation
8.214 +
8.215 +-------------------------------------------------------------------
8.216 +Tue Mar 17 15:32:17 CET 2009 - uwedr@suse.de
8.217 +
8.218 +- Bugfix: Import/Export bookmarks works now also on KDE 4
8.219 +- Feature: Added traditional chinese translation
8.220 +
8.221 +-------------------------------------------------------------------
8.222 +Mon Dec 8 20:26:41 CET 2008 - uwedr@suse.de
8.223 +
8.224 +- Bugfix: Images linked to a scrolled branch were not hidden, if parent
8.225 + branch was scrolled
8.226 +
8.227 +-------------------------------------------------------------------
8.228 +Mon Dec 1 17:43:30 CET 2008 - uwedr@suse.de
8.229 +
8.230 +- Bugfix: After inserting XML, still write as zipped vym again
8.231 +
8.232 +-------------------------------------------------------------------
8.233 +Mon Oct 6 11:16:48 CEST 2008 - uwedr@suse.de
8.234 +
8.235 +- Bugfix: Updated chinese translation from Moligaloo
8.236 +
8.237 +-------------------------------------------------------------------
8.238 +Sun Oct 5 16:58:32 CEST 2008 - uwedr@suse.de
8.239 +
8.240 +- Bugfix: No more segfault for "delete & keep childs" on MapCenter
8.241 +
8.242 +-------------------------------------------------------------------
8.243 +Sun Jul 27 16:37:24 CEST 2008 - uwedr@suse.de
8.244 +
8.245 +- Bugfix: Animation timer didn't stop after animation was done, which
8.246 + caused high load
8.247 +
8.248 +-------------------------------------------------------------------
8.249 +Wed Jul 16 13:47:01 CEST 2008 - uwedr@suse.de
8.250 +
8.251 +- Version: 1.13.0
8.252 +- Bugfix: Deleting an animated part no longer segfaults
8.253 +
8.254 +-------------------------------------------------------------------
8.255 +Fri Jul 11 14:01:31 CEST 2008 - uwedr@suse.de
8.256 +
8.257 +- Bugfix: bnc#407600 vym fails with non-ASCI characters in path names
8.258 +
8.259 +-------------------------------------------------------------------
8.260 +Tue Jun 8 10:34:12 CEST 2008 - uwedr@suse.de
8.261 +
8.262 +- Bugfix: bnc#396365 vym cannot load maps saved with Qt 4.4
8.263 +
8.264 +-------------------------------------------------------------------
8.265 +Wed May 14 17:00:36 CEST 2008 - uwedr@suse.de
8.266 +
8.267 +- Version: 1.12.0 RC 2
8.268 +- Feature: Russian translation
8.269 +
8.270 +-------------------------------------------------------------------
8.271 +Wed May 7 10:30:21 CEST 2008 - uwedr@suse.de
8.272 +
8.273 +- Bugfix: bnc#327078
8.274 +
8.275 +-------------------------------------------------------------------
8.276 +Tue May 6 11:45:46 CEST 2008 - uwedr@suse.de
8.277 +
8.278 +- Version: 1.12.0
8.279 +
8.280 +-------------------------------------------------------------------
8.281 +Wed Apr 30 18:13:43 CEST 2008 - uwedr@suse.de
8.282 +
8.283 +- Version: 1.11.9
8.284 +- Bugfix: Some minor code cleanup
8.285 +
8.286 +-------------------------------------------------------------------
8.287 +Thu Apr 10 22:45:55 CEST 2008 - uwedr@suse.de
8.288 +
8.289 +- Version: 1.11.8
8.290 +- Feature: Copy to new map now also in branch context menu
8.291 +
8.292 +-------------------------------------------------------------------
8.293 +Thu Apr 10 17:11:14 CEST 2008 - uwedr@suse.de
8.294 +
8.295 +- Bugfix: New map is not autosaved, if no filename is known yet
8.296 +
8.297 +-------------------------------------------------------------------
8.298 +Tue Apr 8 09:59:11 CEST 2008 - uwedr@suse.de
8.299 +
8.300 +- Version: 1.11.7
8.301 +- Bugfix: Hangup when find function did not find anything
8.302 +
8.303 +-------------------------------------------------------------------
8.304 +Thu Mar 13 02:06:59 CET 2008 - uwedr@suse.de
8.305 +
8.306 +- Bugfix: vym no longer forgets that a map is zipped
8.307 +
8.308 +-------------------------------------------------------------------
8.309 +Sun Mar 9 13:36:20 CET 2008 - uwedr@suse.de
8.310 +
8.311 +- Bugfix: Segfault when pressing Home or End on MapCenter
8.312 +
8.313 +-------------------------------------------------------------------
8.314 +Wed Mar 5 17:54:12 CET 2008 - uwedr@suse.de
8.315 +
8.316 +- Bugfix: Broken paths to floatimages
8.317 +
8.318 +-------------------------------------------------------------------
8.319 +Wed Feb 27 17:07:57 CET 2008 - uwedr@suse.de
8.320 +
8.321 +- Bugfix: Fixed some issues with autosave and regulard file checks
8.322 +
8.323 +-------------------------------------------------------------------
8.324 +Mon Feb 11 12:22:58 CET 2008 - uwedr@suse.de
8.325 +
8.326 +- Version: 1.11.6
8.327 +- Feature: vym now checks regulary if map has changed on disk and
8.328 + asks for reload if necessary
8.329 +
8.330 +-------------------------------------------------------------------
8.331 +Mon Jan 21 22:52:18 CET 2008 - uwedr@suse.de
8.332 +
8.333 +- Bugfix: No more warning dialog for overwriting note, when note is
8.334 + empty
8.335 +
8.336 +-------------------------------------------------------------------
8.337 +Tue Jan 8 22:20:29 CET 2008 - uwedr@suse.de
8.338 +
8.339 +- Version: 1.11.5
8.340 +- Feature: Started to implement multiple MapCenters in one map
8.341 +
8.342 +-------------------------------------------------------------------
8.343 +Mon Jan 7 14:59:56 CET 2008 - uwedr@suse.de
8.344 +
8.345 +- Bugfix: vym.pro includes french translation now
8.346 +
8.347 +-------------------------------------------------------------------
8.348 +Mon Dec 17 16:32:48 CET 2007 - uwedr@suse.de
8.349 +
8.350 +- Bugfix: bnc#341952 corrupted positions of mainbranches after updating to
8.351 + newer vym
8.352 +-------------------------------------------------------------------
8.353 +Wed Dec 12 17:12:50 CET 2007 - uwedr@suse.de
8.354 +
8.355 +- Bugfix: Overloaded key shortcut for Alt-N (Network and Next window)
8.356 +
8.357 +-------------------------------------------------------------------
8.358 +Tue Dec 4 11:46:02 CET 2007 - uwedr@suse.de
8.359 +
8.360 +- Bugfix: Temporary hide stuff during export
8.361 +- Bugfix: Save parts of map
8.362 +
8.363 +-------------------------------------------------------------------
8.364 +Mon Dec 3 20:57:15 CET 2007 - uwedr@suse.de
8.365 +
8.366 +- Bugfix: (Maint.) Exchanged pre- and postscript in XHTML Export dialog
8.367 +
8.368 +-------------------------------------------------------------------
8.369 +Fri Nov 9 10:44:59 CET 2007 - uwedr@suse.de
8.370 +
8.371 +- Version: 1.11.3
8.372 +- Feature: Added patches for better windows support by Andrew Ng
8.373 +
8.374 +-------------------------------------------------------------------
8.375 +Tue Nov 6 22:36:38 CET 2007 - uwedr@suse.de
8.376 +
8.377 +- Version: 1.11.2
8.378 +- Feature: Split up helper functions, started to write attributes
8.379 +
8.380 +-------------------------------------------------------------------
8.381 +Tue Nov 6 14:36:38 CET 2007 - uwedr@suse.de
8.382 +
8.383 +- Version: 1.11.1
8.384 +- Bugfix: sort branches has undo/redo now
8.385 +
8.386 +-------------------------------------------------------------------
8.387 +Fri Oct 26 11:22:20 CEST 2007 - uwedr@suse.de
8.388 +
8.389 +- Bugfix: zip state is changed now, when a .xml is save as .vym
8.390 +
8.391 +-------------------------------------------------------------------
8.392 +Wed Oct 24 14:11:36 CEST 2007 - uwedr@suse.de
8.393 +
8.394 +- Feature: Improved ascii export
8.395 +- Bugfix: Present flag now does not set down arrows any longer
8.396 +
8.397 +-------------------------------------------------------------------
8.398 +Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
8.399 +
8.400 +- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
8.401 +
8.402 +-------------------------------------------------------------------
8.403 +Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
8.404 +
8.405 +- Version: 1.11.0
8.406 +- Feature: Added patches from Till Maas for better path handling to ease
8.407 + integration into various operating systems
8.408 +- Feature: Added patch from Till Maas to use xdg-open as default browser
8.409 +- Feature: Added patch from ????? to sort branches lexically
8.410 +- Feature: Added patches from Juha Ruotsalainen for compiling on win32
8.411 +
8.412 +-------------------------------------------------------------------
8.413 +Tue Oct 16 11:51:43 CEST 2007 - uwedr@suse.de
8.414 +
8.415 +- Bugfix: included <typeinfo> for compiling in beta
8.416 +
8.417 +-------------------------------------------------------------------
8.418 +Wed Oct 04 12:43:48 CEST 2007 - uwedr@suse.de
8.419 +
8.420 +- Version: 1.10.1
8.421 +- Bugfix: Missing action for editing URL in context menu
8.422 +- Bugfix: "Hide in Export" didn't work
8.423 +
8.424 +-------------------------------------------------------------------
8.425 +Mon Sep 04 15:52:22 CEST 2007 - uwedr@suse.de
8.426 +
8.427 +- Bugfix: xLinks were not loaded from previously saved maps
8.428 +- Bugfix: Find manual in /usr/share/doc/packages/vym
8.429 +- Bugfix: Updated README.txt
8.430 +
8.431 +-------------------------------------------------------------------
8.432 +Mon Aug 20 17:09:28 CEST 2007 - uwedr@suse.de
8.433 +
8.434 +- Version: 1.10.0 Release Candidate
8.435 +- Bugfix: Added missing standard flag (one of the smileys got lost)
8.436 +- Bugfix: Wrong parsing of relative positions after load of
8.437 + previously zoomed map
8.438 +
8.439 +-------------------------------------------------------------------
8.440 +Tue Jul 31 22:09:01 CEST 2007 - uwedr@suse.de
8.441 +
8.442 +- Bugfix: Smother parabel links (Alexander Rettig)
8.443 +
8.444 +-------------------------------------------------------------------
8.445 +Fri Jul 27 13:31:41 CEST 2007 - uwedr@suse.de
8.446 +
8.447 +- Version: 1.9.4
8.448 +- Feature: Restructured internal handling of XML based maps
8.449 +- Feature: Switched from QSimpleTextItem to QTextItem for Freemind support
8.450 +
8.451 +-------------------------------------------------------------------
8.452 +Mon Jul 23 14:40:38 CEST 2007 - uwedr
8.453 +
8.454 +- Version: 1.9.3
8.455 +- Feature: Import of Freemind maps
8.456 +
8.457 +-------------------------------------------------------------------
8.458 +Tue Jul 17 13:16:25 CEST 2007 - uwedr
8.459 +
8.460 +- Version: 1.9.2
8.461 +- Bugfix: Workaround for wrong XML generated by QT with in QRichText
8.462 + list items
8.463 +- Bugfix: No output from <span> tags in ASCII export any longer
8.464 +
8.465 +-------------------------------------------------------------------
8.466 +Wed Jul 11 15:49:10 CEST 2007 - uwedr
8.467 +
8.468 +- Version: 1.9.1
8.469 +- Bugfix: Don't ask for directory in XML-based exports like
8.470 + KDE-bookmarks
8.471 +
8.472 +-------------------------------------------------------------------
8.473 +Tue Jul 4 10:57:04 CEST 2007 - uwedr
8.474 +
8.475 +- Version: 1.9.0
8.476 +- Bugfix: auto-select/auto-edit new branches
8.477 +
8.478 +-------------------------------------------------------------------
8.479 +Fri Jun 29 11:12:55 CEST 2007 - uwedr
8.480 +
8.481 +- Version: 1.8.76
8.482 +- Feature: Extended fileformat with object IDs to ease export from
8.483 + tomboy to vym
8.484 +- Bugfix: Visibility of BranchProperty window is saved now
8.485 +
8.486 +-------------------------------------------------------------------
8.487 +Mon Jun 25 14:53:10 CEST 2007 - uwedr
8.488 +
8.489 +- Version: 1.8.75
8.490 +- Feature: Completed german translation
8.491 +
8.492 +-------------------------------------------------------------------
8.493 +Wed Jun 20 13:52:37 CEST 2007 - uwedr
8.494 +
8.495 +- Version: 1.8.74
8.496 +- Feature: Center on selection with "."
8.497 +- Feature: Most important exports can be scripted now
8.498 +
8.499 +-------------------------------------------------------------------
8.500 +Mon Jun 18 17:08:46 CEST 2007 - uwedr
8.501 +
8.502 +- Version: 1.8.73 - entering beta testing
8.503 +
8.504 +-------------------------------------------------------------------
8.505 +Mon June 18 17:01:16 CEST 2007 - uwe
8.506 +
8.507 +- Feature: Creating new map with selection as MapCenter
8.508 +- Feature: Simple export to CSV spreadsheet
8.509 +- Feature: Copy from past steps in history to current one
8.510 +- Bugfix: Undo/Redo dropping images into map
8.511 +- Bugfix: Undo/Redo of copy/paste steps
8.512 +- Bugfix: NoteEditor now appears on first click (not 2nd)
8.513 +- Bugfix: Disable autosave while there are redos available
8.514 +- Bugfix: After changing link color, that color is applied to all links
8.515 + now
8.516 +- Bugfix: Pasting of FIOs
8.517 +- Bugfix: No selection of branches while editing heading
8.518 +- Bugfix: geometry of selection box gets updated while setting scroll or
8.519 + hide flag
8.520 +- Bugfix: Possible segfault when redoing deleteChilds()
8.521 +
8.522 +-------------------------------------------------------------------
8.523 +Mon May 7 09:37:29 CEST 2007 - uwedr
8.524 +
8.525 +- Version: 1.8.72
8.526 +- Bugfix: autosave timeout now read from settings file
8.527 +- Bugfix: Settings for historywindow correclty read now
8.528 +- Bugfix: Closing property window toggle corresponding button
8.529 +
8.530 +-------------------------------------------------------------------
8.531 +Thu Apr 26 10:34:48 CEST 2007 - uwe
8.532 +
8.533 +- Feature: Editing of frame attributes in branch property window
8.534 +- Feature: autosave
8.535 +- Feature: number of undo/redo levels can be changed in settings
8.536 +- Feature: branch property window settings are saved
8.537 +- Bugfix: Unscroll all childs has saveState now
8.538 +- Bugfix: Invisible selection after switching mapeditor
8.539 +
8.540 +-------------------------------------------------------------------
8.541 +Tue Apr 10 15:18:39 CEST 2007 - uwedr
8.542 +
8.543 +- Version: 1.8.71
8.544 +- Feature: Added basic macros and documentation
8.545 +
8.546 +-------------------------------------------------------------------
8.547 +Sat Mar 31 10:59:55 CEST 2007 - uwe
8.548 +
8.549 +- Version: 1.8.70
8.550 +- Feature: Color of selection can be changed now
8.551 +- Feature: Pen and brush for frames can be set
8.552 +- Bugfix: For frames the links always were drawn at bottom of heading
8.553 +- Bugfix: BranchPropertyWindow updates when selection is changed
8.554 +
8.555 +-------------------------------------------------------------------
8.556 +Mon Mar 6 22:10:26 CET 2007 - uwe
8.557 +
8.558 +- Version: 1.8.69
8.559 +- Feature: Simple Editor for scripts
8.560 +- Feature: Added syntax highlighting for editor
8.561 +
8.562 +-------------------------------------------------------------------
8.563 +Tue Feb 20 22:16:09 CET 2007 - uwe
8.564 +
8.565 +- Version: 1.8.68
8.566 +- Bugfix: Crash when trying to temporary link to floatimage
8.567 +
8.568 +-------------------------------------------------------------------
8.569 +Mon Feb 17 16:32:53 CET 2007 - uwedr
8.570 +
8.571 +- Version: 1.8.67
8.572 +- Feature: Unscroll all now only affects selected subtree
8.573 +- Bugfix: Drawing error when temporary linking subtrees
8.574 +- Bugfix: Import of KDE Bookmarks
8.575 +- Bugfix: Export to KDE Bookmarks
8.576 +- Bugfix: Export to XHTML
8.577 +- Bugfix: Drag and Drop of URLs now only creates one branch
8.578 +
8.579 +-------------------------------------------------------------------
8.580 +Wed Feb 07 17:27:31 CET 2007 - uwedr
8.581 +
8.582 +- Version: 1.8.66
8.583 +- Feature: Using a new class to select objects
8.584 +- Bugfix: Remember last directory before ASCII/LaTeX export
8.585 +- Bugfix: Editing in NoteEditor now updates actions (save) again
8.586 +- Bugfix: Deleting last branch automatically unscrolls parent now
8.587 +- Bugfix: Scroll/Unscroll has undo/redo now
8.588 +
8.589 +-------------------------------------------------------------------
8.590 +Fri Jan 19 22:53:27 CET 2007 - uwe
8.591 +
8.592 +- Version: 1.8.65
8.593 +- Feature: New Frame format
8.594 +- Feature: New vym file format to support new frames
8.595 +- Bugfix: xml-parsing code simplified
8.596 +- Bugfix: Fixed pretty annoying repositioning of view after editing a
8.597 + heading. (don't call show() before positioning in heading...)
8.598 +- Bugfix: Wrong Cursors after pressing CTRL and inserting/relinking
8.599 +- Bugfix: Save PNG images with quality 100 to workaround image problems
8.600 +- Bugfix: Remember last directory before XML export
8.601 +
8.602 +-------------------------------------------------------------------
8.603 +Thu Jan 11 16:05:49 CET 2007 - uwedr
8.604 +
8.605 +- Version: 1.8.65
8.606 +- Feature: Properties dialog for branches instead of context menu entries
8.607 +
8.608 +-------------------------------------------------------------------
8.609 +Wed Jan 10 19:48:32 CET 2007 - uwe
8.610 +
8.611 +- Version: 1.8.64
8.612 +- Bugfix: move branch up/down calls scene()->update() now => much faster
8.613 +- Bugfix: Relinking of floatimages undo/redo
8.614 +
8.615 +-------------------------------------------------------------------
8.616 +Tue Jan 2 19:30:50 CET 2007 - uwedr
8.617 +
8.618 +- Version: 1.8.64
8.619 +- Bugfix: printing scales correctly again
8.620 +- Bugfix: Drag & Drop (basically) works again
8.621 +- Bugfix: Crash caused by BranchObj::getLastSelected
8.622 +- Bugfix: Signal handling by changes in TextEditor: Much faster now
8.623 +
8.624 +-------------------------------------------------------------------
8.625 +Thu Dec 21 14:13:13 CET 2006 - uwedr
8.626 +
8.627 +- Version: 1.8.63
8.628 +- Bugfix: printing is working again
8.629 +
8.630 +-------------------------------------------------------------------
8.631 +Mon Dec 11 12:31:46 CET 2006 - uwedr
8.632 +
8.633 +- Version: 1.8.61
8.634 +- Bugfix: move up/down to next subtree is working again
8.635 +
8.636 +-------------------------------------------------------------------
8.637 +Mon Dec 6 22:48:07 CET 2006 - uwe
8.638 +
8.639 +- Version: 1.8.61
8.640 +- Bugfix: Flags are working again
8.641 +- Bugfix: Floatimages have correct select box again
8.642 +
8.643 +-------------------------------------------------------------------
8.644 +Wed Nov 29 13:48:35 CET 2006 - uwedr
8.645 +
8.646 +- Version: 1.8.60
8.647 +- Bugfix: Image format is saved with floatimage
8.648 +- Feature: Only one history window for all editors. State is saved.
8.649 +- Feature: Canvas ported to QT 4.2 GraphicsView
8.650 +- Feature: Options to use AntiaAliasing and smooth pixmap
8.651 + transformations
8.652 +- Feature: Thick links use polygons now, less objects in scene
8.653 +
8.654 +-------------------------------------------------------------------
8.655 +Thu Nov 16 14:41:44 CET 2006 - uwedr
8.656 +
8.657 +- Bugfix: New recent file handling, fixes crash on Mac OS X
8.658 +
8.659 +-------------------------------------------------------------------
8.660 +Tue Nov 14 10:00:12 CET 2006 - uwedr
8.661 +
8.662 +- Feature: Modifier Modes now change cursor when CTRL is pressed
8.663 +
8.664 +-------------------------------------------------------------------
8.665 +Fri Nov 10 10:28:55 CEST 2006 - uwe
8.666 +
8.667 +- Feature: vym opens spanish documentation, if locale is es*
8.668 +- Bugfix: Position of floatimages is saved again
8.669 +- Bugfix: Position of floatimages survives adjustCanvasSize()
8.670 +- Bugfix: Adding branch to scrolled branch unscroll the former
8.671 +- Bugfix: More undo commands (removed saveStateComplete)
8.672 +
8.673 +-------------------------------------------------------------------
8.674 +Tue Oct 24 17:24:22 CEST 2006 - uwedr
8.675 +
8.676 +- Version: 1.8.58
8.677 +- Feature: More undo commands (and fixes there)
8.678 +
8.679 +-------------------------------------------------------------------
8.680 +Mon Oct 16 14:41:03 CEST 2006 - uwedr
8.681 +
8.682 +- Feature: Code simplification
8.683 +
8.684 +-------------------------------------------------------------------
8.685 +Thu Sep 14 12:01:28 CEST 2006 - uwedr
8.686 +
8.687 +- Version: 1.8.57
8.688 +- Feature: Note Editor completly based on QT4 now.
8.689 +
8.690 +-------------------------------------------------------------------
8.691 +Wed Sep 13 16:43:09 CEST 2006 - uwedr
8.692 +
8.693 +- Version: 1.8.56
8.694 +- Feature: New History window, All designer elements ported to QT4
8.695 +- Bugfix: No more hopping around of floats, when canvas is resized
8.696 + (by using relative positions for mainbranches. This might
8.697 + confuse parsing 1.8.56 documents with vym <= 1.8.1
8.698 +
8.699 +-------------------------------------------------------------------
8.700 +Wed Sep 6 09:48:12 CEST 2006 - uwedr
8.701 +
8.702 +- Bugfix: Mac - XSL stylesheets are found
8.703 +- Bugfix: Mac - fonts are scaling
8.704 +- Bugfix: Mac - hand cursor is shown correctly
8.705 +
8.706 +-------------------------------------------------------------------
8.707 +Tue Sep 5 15:38:20 CEST 2006 - uwedr
8.708 +
8.709 +- Version: 1.8.55
8.710 +- Bugfix: Undo/Redo moving floatimages
8.711 +- Bugfix: Shortcuts for scrolling branches/removing branch
8.712 +- Bugfix: update-bookmarks script is not only executed, but
8.713 + also found now...
8.714 +- Feature: Findwindow ported to QT4
8.715 +
8.716 +-------------------------------------------------------------------
8.717 +Tue Sep 5 09:55:55 CEST 2006 - uwedr
8.718 +
8.719 +- Bugfix: More undo/redo (move of floatimages, relinking of branches)
8.720 +
8.721 +-------------------------------------------------------------------
8.722 +Thu Aug 31 13:54:30 CEST 2006 - uwedr
8.723 +
8.724 +- Bugfix: More undo/redo commands
8.725 +- Bugfix: Actions updated after moving a branch now
8.726 +- Bugfix: vym refuses to start if vymTmpDir can't be created
8.727 +
8.728 +-------------------------------------------------------------------
8.729 +Wed Aug 30 14:14:56 CEST 2006 - uwedr
8.730 +
8.731 +- Version: 1.8.54
8.732 +- Bugfix: Editing headings now works both on Mac and Linux
8.733 +
8.734 +-------------------------------------------------------------------
8.735 +Mon Aug 28 13:15:35 CEST 2006 - uwe
8.736 +
8.737 +- Version: 1.8.53
8.738 +- Feature: Opening of all URLs in a subtree
8.739 +- Feature: Opening of all vymLinks in a subtree
8.740 +
8.741 +-------------------------------------------------------------------
8.742 +Tue Aug 15 13:39:42 CEST 2006 - uwedr
8.743 +
8.744 +- Version: 1.8.52
8.745 +- Feature: Changed format of configuration file a bit (new file anyway
8.746 + with introduction of QT4)
8.747 +- Feature: Toolbar Layout is saved now
8.748 +
8.749 +-------------------------------------------------------------------
8.750 +Thu Jul 27 14:28:54 CEST 2006 - uwedr
8.751 +
8.752 +- Bugfix: Floatimages internally are saved as png, preserving the alpha
8.753 + channel
8.754 +
8.755 +-------------------------------------------------------------------
8.756 +Thu Jul 13 10:39:26 CEST 2006 - uwedr
8.757 +
8.758 +- Bugfix: Fixed broken check for non-existent OO-export configuration
8.759 +
8.760 +-------------------------------------------------------------------
8.761 +Tue Jul 4 12:32:28 CEST 2006 - uwedr
8.762 +
8.763 +- Feature: Moved floats in XML Export, e.g. XHTML shows floatimages at
8.764 + beginning of export now
8.765 +
8.766 +-------------------------------------------------------------------
8.767 +Mon July 10 16:53:29 CEST 2006 - uwedr
8.768 +
8.769 +- Version: 1.8.50
8.770 +- Feature: Beginning of QT4 port
8.771 +
8.772 +-------------------------------------------------------------------
8.773 +Thu June 1 16:53:29 CEST 2006 - uwedr
8.774 +
8.775 +- Version: 1.7.18
8.776 +- Feature: Opening of tabs in Firefox or Mozilla
8.777 +- Feature: Documentation is up to date now
8.778 +- Bugfix: No more duplicate xLinks
8.779 +- Bugfix: Saving original filename of floatimages finally works
8.780 +- Bugfix: Positioning of floatimages while adjusting canvas size (also
8.781 + optimized code a bit)
8.782 +
8.783 +-------------------------------------------------------------------
8.784 +Tue May 9 10:05:52 CEST 2006 - uwedr
8.785 +
8.786 +- Version: 1.7.17
8.787 +- Bugfix: Right click e.g. on URL Flag opened URL _and_ context menu
8.788 +- Bugfix: Deleting selection works also if Delkey is disabled.
8.789 +
8.790 +-------------------------------------------------------------------
8.791 +Mon May 8 10:29:25 CEST 2006 - uwedr
8.792 +
8.793 +- Bugfix: Exclusive flags did not work properly.
8.794 +- Bugfix: Wrong icon in texteditor for text underline
8.795 +- Bugfix: Changed screenshots in docu to represent new look
8.796 +- Bugfix: Fixed z-plane of floatimage. Images did hide flags.
8.797 +
8.798 +-------------------------------------------------------------------
8.799 +Mon Apr 24 11:59:22 CEST 2006 - uwedr
8.800 +
8.801 +- Bugfix: wrong paths in XHTML export (bnc#168033), caused by wrong
8.802 + vymBaseDir
8.803 +
8.804 +-------------------------------------------------------------------
8.805 +Mon Apr 10 13:23:02 CEST 2006 - uwedr
8.806 +
8.807 +- Feature: More icons
8.808 +
8.809 +-------------------------------------------------------------------
8.810 +Fri Mar 31 14:18:38 CEST 2006 - uwe
8.811 +
8.812 +- Feature: New environment variable VYMHOME
8.813 +
8.814 +-------------------------------------------------------------------
8.815 +Thu Mar 30 11:00:21 CEST 2006 - uwedr
8.816 +
8.817 +- Version: 1.7.15
8.818 +- Feature: New icons. Icons and flags are not longer linked statically.
8.819 +
8.820 +-------------------------------------------------------------------
8.821 +Tue Mar 28 21:54:31 CEST 2006 - uwe
8.822 +
8.823 +- Version: 1.7.13
8.824 +- Feature: Konqueror can open URLs in new tabs now.
8.825 +
8.826 +-------------------------------------------------------------------
8.827 +Thu Mar 23 13:26:46 CET 2006 - uwedr
8.828 +
8.829 +- Version: 1.7.12
8.830 +- Bugfix: Problem with vymlinks pointing to higher directories (bnc#159770)
8.831 +- Bugfix: All exports support hiding of objects now
8.832 +- Bugfix: exportDir in XHTML export is correctly saved in map and
8.833 + defaults to current directory
8.834 +
8.835 +-------------------------------------------------------------------
8.836 +Wed Mar 15 11:43:02 CET 2006 - uwedr
8.837 +
8.838 +- Version: 1.7.11
8.839 +- Bugfix: Workaround QT problem, where QT writes invalid XML code by not
8.840 + escaping & in fontnames
8.841 +- Feature: Hide Export Flag lets you hide objects in exports
8.842 +- Feature: Floatimages now are basically ornamented objects. They could
8.843 + have e.g. an URL later
8.844 +- Feature: On error the XML Parser shows the line which is causing the
8.845 + error
8.846 +
8.847 +-------------------------------------------------------------------
8.848 +Wed Mar 8 13:58:40 CET 2006 - uwedr
8.849 +
8.850 +- Bugfix: Images preview in filedialog works again. Seemed to be a QT
8.851 + issue when multiple fileselections were allowed.
8.852 +
8.853 +-------------------------------------------------------------------
8.854 +Mon Mar 6 15:02:57 CET 2006 - uwedr
8.855 +
8.856 +- Feature: Added export to Taskjuggler. xslt by Matt.
8.857 +
8.858 +-------------------------------------------------------------------
8.859 +Wed Mar 1 22:29:47 CET 2006 - uwe
8.860 +
8.861 +- Bugfix: Canvas Size corrected when flag is toggled
8.862 +
8.863 +-------------------------------------------------------------------
8.864 +Wed Mar 1 15:38:11 CET 2006 - uwedr
8.865 +
8.866 +- Version: 1.7.10
8.867 +- Feature: Include Images Horizontalls
8.868 +
8.869 +-------------------------------------------------------------------
8.870 +Tue Feb 21 17:17:48 CET 2006 - uwedr
8.871 +
8.872 +- Feature: rudimentary import mmaps
8.873 +
8.874 +-------------------------------------------------------------------
8.875 +Tue Feb 14 21:10:26 CET 2006 - uwe
8.876 +
8.877 +- Version 1.7.9
8.878 +- Feature: Import KDE bookmarks
8.879 +- Feature: Own class xsltproc for doing xml transformations
8.880 +
8.881 +-------------------------------------------------------------------
8.882 +Tue Jan 31 16:54:52 CET 2006 - uwedr
8.883 +
8.884 +- Version 1.7.8
8.885 +- Bugfix: Hide Include Images Horizontally (not implemented yet)
8.886 +- Bugfix: Include Images Vertically was not read from saved file
8.887 +
8.888 +-------------------------------------------------------------------
8.889 +Tue Jan 25 16:07:53 CET 2006 - uwedr
8.890 +
8.891 +- Version 1.7.7
8.892 +- Feature: Export to Open Office 2.x (Open Document) basically works
8.893 +- Feature: Export to XHTML uses smaller icon for URLs now
8.894 +
8.895 +-------------------------------------------------------------------
8.896 +Wed Jan 18 13:29:52 CET 2006 - uwedr
8.897 +
8.898 +- Feature: Multiple File selection while loading maps and images
8.899 +
8.900 +-------------------------------------------------------------------
8.901 +Tue Jan 3 12:20:08 CET 2006 - uwe
8.902 +
8.903 +- Feature: Small optimization in zip/unzip functions
8.904 +
8.905 +-------------------------------------------------------------------
8.906 +Mon Jan 2 21:03:05 CET 2006 - uwe
8.907 +
8.908 +- Feature: FATE support for URLs
8.909 +
8.910 +-------------------------------------------------------------------
8.911 +Wed Dec 28 12:09:59 CET 2005 - uwe
8.912 +
8.913 +- Version 1.7.6
8.914 +- Feature: Added idAttr to BranchObj::saveToDir
8.915 +- Bugfix: FloatObjects now use hideLinkIfUnselected, no more drawing
8.916 + errors, if FO is selected (undefined link)
8.917 +- Bugfix: FloatImages don't get lost during save after they have been
8.918 + relinked to new parent
8.919 +- Bugfix: Editing heading of mapcenter now also corrects position
8.920 +
8.921 +-------------------------------------------------------------------
8.922 +Mon Oct 10 13:18:29 CEST 2005 - uwedr
8.923 +
8.924 +- Bugfix: Copy/Paste was currently not possible for images. Now
8.925 + completly rewrote mechanism. Instead of invisible map now XML import
8.926 + is used (Multiple clipboards should be not difficult now)
8.927 +
8.928 +-------------------------------------------------------------------
8.929 +Mon Oct 3 10:33:09 CEST 2005 - uwe
8.930 +
8.931 +- Bugfix: Added small fix from Khaled Ahmed needed for display of
8.932 + arabic languages
8.933 +
8.934 +-------------------------------------------------------------------
8.935 +Mon Sep 12 21:39:38 CEST 2005 - uwedr
8.936 +
8.937 +- Version 1.7.5
8.938 +- Feature: Currently 15 levels of undo (GUI to set value still missing)
8.939 +- Feature: Experimental LaTeX Export (without headers and opions so far)
8.940 +
8.941 +-------------------------------------------------------------------
8.942 +Sun Sep 5 10:26:15 CEST 2005 - uwedr
8.943 +
8.944 +- Version 1.7.4
8.945 +- Feature: Link of a branch can be hidden, if object is not selected
8.946 +- Bugfix: Zoomed map no longer "jumps around" when branch is selected
8.947 + or moved.
8.948 +- Bugfix: TextEditor now has grey background again, if it is empty
8.949 +- Bugfix: BranchObj no longer need to connect to TextEditor, BranchObj
8.950 + is no longer a QOBJECT
8.951 +
8.952 +-------------------------------------------------------------------
8.953 +Thu Sep 1 12:26:24 CEST 2005 - uwedr
8.954 +
8.955 +- Bugfix: Some minor changes so that translations use arguments now
8.956 + instead of several calls to tr()
8.957 +
8.958 +-------------------------------------------------------------------
8.959 +Tue Aug 30 13:38:31 CEST 2005 - uwedr
8.960 +
8.961 +- Bugfix: Fixed pasting vymlinks: Pasting a branch to a target in
8.962 + another map caused vym to go into an endless loop, if the vymlink of the
8.963 + branch pointed to the new map.
8.964 +- Bugfix: Invisible floatimages (which have a scrolled parent) no longer
8.965 + can be selected
8.966 +
8.967 +-------------------------------------------------------------------
8.968 +Fri Aug 19 09:12:49 CEST 2005 - uwedr
8.969 +
8.970 +- Feature: added debian subdirectory created by Steffen Joeris
8.971 +- Feature: added license to new aboutwindow
8.972 +
8.973 +-------------------------------------------------------------------
8.974 +Tue Aug 16 19:22:56 CEST 2005 - jhilmer
8.975 +
8.976 +- Bugfix: Fixed link handling in aboutdialog.
8.977 +
8.978 +-------------------------------------------------------------------
8.979 +Tue Aug 16 12:25:09 CEST 2005 - uwedr
8.980 +
8.981 +- Feature: Added keyboard shortcut to reset zoom factor
8.982 +- Bugfix: Added "..." to menu entries leading to another dialog
8.983 +- Bugfix: The setting option "Delete Key" is working again
8.984 +- Bugfix: A branch moved from left side to right had wrong orienation
8.985 +
8.986 +-------------------------------------------------------------------
8.987 +Tue Aug 2 09:59:24 CEST 2005 - uwedr
8.988 +
8.989 +- Bugfix: Heading sizes now correct after moving e.g. mainbranch to
8.990 + a branch
8.991 +
8.992 +-------------------------------------------------------------------
8.993 +Mon Aug 1 22:40:29 CEST 2005 - jhilmer
8.994 +
8.995 +- Bugfix: Problems with closing of note editor when text was modified.
8.996 +- Feature: Added subscript and superscript to note editor
8.997 +
8.998 +-------------------------------------------------------------------
8.999 +Thu Jul 28 11:57:38 CEST 2005
8.1000 +
8.1001 +- Version 1.7.3
8.1002 +- Bugfix: Frames didn't become invisible if scrolled
8.1003 +
8.1004 +-------------------------------------------------------------------
8.1005 +Thu Jul 28 11:57:38 CEST 2005
8.1006 +
8.1007 +- Version 1.7.2
8.1008 +- Bugfix: if selection changed before undo, undo worked on wrong
8.1009 + branch
8.1010 +- included math.h again to enable compiling with gcc4
8.1011 +
8.1012 +-------------------------------------------------------------------
8.1013 +Mi Jul 27 17:27:14 CEST 2005
8.1014 +
8.1015 +- Bugfix: if selection changed before undo, undo worked on wrong branch
8.1016 +
8.1017 +-------------------------------------------------------------------
8.1018 +Mon Jul 25 22:22:21 CEST 2005
8.1019 +
8.1020 +- Bugfix: changed MapEditor::undo and ::saveState to also save selection
8.1021 +
8.1022 +-------------------------------------------------------------------
8.1023 +Di Jul 19 16:42:31 CEST 2005
8.1024 +
8.1025 +- Version: 1.7.1
8.1026 +- Feature: Drag and Drop also for .vym and files (Jakob Hilmer)
8.1027 +- Feature: More speedup on moving/relinking branches
8.1028 +
8.1029 +-------------------------------------------------------------------
8.1030 +
8.1031 +Mi Jul 13 11:44:10 CEST 2005
8.1032 +
8.1033 +- Drag and Drop also for URLs
8.1034 +
8.1035 +-------------------------------------------------------------------
8.1036 +Di Jul 12 20:56:09 CEST 2005
8.1037 +
8.1038 +- Version: 1.7.0
8.1039 +
8.1040 +-------------------------------------------------------------------
8.1041 +Mon Jul 4 21:13:42 CEST 2005
8.1042 +
8.1043 +- Version: 1.6.9
8.1044 +- Bugfix: TextEditor doesn't get minimized in KDE any longer (KDE-bug?)
8.1045 +
8.1046 +-------------------------------------------------------------------
8.1047 +Tue Jun 14 11:43:44 CEST 2005
8.1048 +
8.1049 +- Feature: printer name is saved in vymrc now
8.1050 +- Feature: added image drag/drop (by Jakob Hilmer)
8.1051 +- Bugfix: Importing map into new map now has correct (empty) filename
8.1052 +
8.1053 +-------------------------------------------------------------------
8.1054 +2005-06-07
8.1055 +
8.1056 +- Version: 1.6.8
8.1057 +- Feature: Dramatic speedup in some operations
8.1058 + (e.g. move branch up/down) due to extended
8.1059 + undo engine
8.1060 +-------------------------------------------------------------------
8.1061 + 2005-05-27
8.1062 +
8.1063 +- Version: 1.6.7
8.1064 +- Feature:Changed default pdf-reader for Mac OSX
8.1065 +- Bugfix: xLinks stopped working in 1.6.6
8.1066 +- Bugfix: drawing error when using modModeCopy
8.1067 +- Bugfix: replaced lrint by qRound for BSD port
8.1068 +
8.1069 +-----------------------------------------------------------
8.1070 + 2005-05-23
8.1071 +
8.1072 +- Version 1.6.6
8.1073 +- Feature: Exclusive standard flags
8.1074 +
8.1075 +-----------------------------------------------------------
8.1076 +2005-05-19
8.1077 +
8.1078 +- Version: 1.6.5
8.1079 +- Feature: removing a branch and keeping its childs
8.1080 +- Feature: removing childs of a branch
8.1081 +- Feature: insert branch and make selection its child
8.1082 +- Feature: restructured branch context menu
8.1083 + in a basic version (straight line)
8.1084 +- Feature: New shortcuts for use on Mac OS X
8.1085 +- Feature: Importing directories generates vymlinks now
8.1086 +- Bugfix: Changing linkstyle now automatically redraws all
8.1087 + links again
8.1088 +- Bugfix: Paste icon is disabled if clipboard is empty
8.1089 +
8.1090 +-----------------------------------------------------------
8.1091 +2005-04-15
8.1092 +
8.1093 +- Version: 1.6.4
8.1094 +- Feature: xLinks (connection between 2 branches) works
8.1095 + in a basic version (straight line)
8.1096 +
8.1097 +-----------------------------------------------------------
8.1098 +2005-03-30
8.1099 +
8.1100 +- Version: 1.6.3
8.1101 +- Bugfix: Saving of selection to a vym part (.vyp)
8.1102 +- Bugfix: Closing the noteeditor by closing its window now
8.1103 + also toggles the responding toolbar button. &
8.1104 +
8.1105 +-----------------------------------------------------------
8.1106 +2005-03-24
8.1107 +
8.1108 +- Version: 1.6.2
8.1109 +- Feature: Introduced Modifier modes: color, link, copy
8.1110 +- Feature: Linking branches is basically possible, though it can't be
8.1111 + edited/saved yet
8.1112 +
8.1113 +-----------------------------------------------------------
8.1114 +2005-01-30
8.1115 +
8.1116 +- Version: 1.6.1
8.1117 +- Feature: Optimized moving of branches: much faster especially
8.1118 + with huge subtrees
8.1119 +- Bugfix: Segfault when loading vym part
8.1120 +- Bugfix: ugly unitialized lines, when temporary drawn link
8.1121 + was moved from a temporary parent back to canvas
8.1122 +
8.1123 +-----------------------------------------------------------
8.1124 +2004-12-14
8.1125 +
8.1126 +- Version: 1.6.0
8.1127 +- Feature: Added saving of xhtml settings in map
8.1128 +
8.1129 +-----------------------------------------------------------
8.1130 +2004-12-13
8.1131 +
8.1132 +- Version: 1.5.2
8.1133 +- Feature: Added Import of maps with two modes:
8.1134 + add/replace
8.1135 +- Feature: Added export of part of maps
8.1136 +- Feature: Added joining of paragraphs in text editor
8.1137 +- Feature: Optimized undo: Only relevant parts are saved, which
8.1138 + dramatically improves e.g. moving branches up/down in most maps
8.1139 +- Bugfix: QTextEdit generates invalid XML code, which could lead to a
8.1140 + parse error, if font name contains a \& (bnc#62283)
8.1141 +- Bugfix: Wrong order of mainbranches in Export
8.1142 +- Bugfix: zip archive was not deleted before save, which could lead to
8.1143 + much bigger files, e.g. when working on older \vym maps or deleted
8.1144 + images
8.1145 +- Bugfix: Printing in Texteditor
8.1146 +- Bugfix: Wrong URLs in xhtml output
8.1147 +- Bugfix: Segfault fixed at Cursor left/right in empty map
8.1148 +
8.1149 +-----------------------------------------------------------
8.1150 +2004-10-01
8.1151 +
8.1152 +- Version: 1.5.1
8.1153 +- Feature: More options in xhtml export: external scripts
8.1154 +
8.1155 +-----------------------------------------------------------
8.1156 +2004-09-26
8.1157 +
8.1158 +- Version: 1.5.0
8.1159 +- Public release of all changes since 1.4.1
8.1160 +- Feature: New function to replace paragraphs in note editor
8.1161 + by linebreaks, this makes pasted text much nicer
8.1162 +- Feature: New option to toggle exporting of of floatimages
8.1163 +- Feature: z-plane of floatimages can be set (manually only)
8.1164 +- Bugfix: Wrong ordering of branches, if mainbranch is exactly left of
8.1165 + center
8.1166 +
8.1167 +-----------------------------------------------------------
8.1168 +2004-09-24
8.1169 +
8.1170 +- Version: 1.4.7
8.1171 +- Feature: New Export to XHTML (by Thomas Schraitle)
8.1172 +- Bugfix: vymLink
8.1173 +- Bugfix: spaces and dots in filenames
8.1174 +- Bugfix: Error message if xsltproc is not installed
8.1175 +
8.1176 +-----------------------------------------------------------
8.1177 +2004-09-15
8.1178 +
8.1179 +- Version: 1.4.6
8.1180 +- Feature: New file format: notes are saved as part of the .xml file
8.1181 +- Feature: Note Editor supports Rich Text now.
8.1182 +- Feature: Parser now also nows {\tt standardflag} (all letters lowercase)
8.1183 +
8.1184 +-----------------------------------------------------------
8.1185 +2004-08-23
8.1186 +
8.1187 +- Version: 1.4.5
8.1188 +- Feature: Correct handling of font size in Heading
8.1189 +
8.1190 +-----------------------------------------------------------
8.1191 +2004-07-29
8.1192 +
8.1193 +- Version: 1.4.4
8.1194 +- Selecting with cursor now works between subtrees
8.1195 +- Bugfix: vymLink was set to temporary dir in 1.4.3
8.1196 +
8.1197 +-----------------------------------------------------------
8.1198 +2004-07-19
8.1199 +
8.1200 +- Version: 1.4.3
8.1201 +- Optimisation: Reduced canvas objects by only creating objects for used
8.1202 + flags
8.1203 +- Better visualization of moving branch above/below target
8.1204 +- Find Window informs with dialog, if the search failed
8.1205 +- System Flags are clickable now
8.1206 +- Reworked CSS and XST stylsheets (comments, indent, browser
8.1207 + compatibility)
8.1208 +- vymLinks are shown in statusbar
8.1209 +- current directory is save
8.1210 +- Rewritten load/save to improve multimap handling and unzipped files
8.1211 +- Bugfix: vymLinks don't get deleted when Cancel is pressed
8.1212 +- Bugfix: Fixed a bunch of bugs in XSL for HTML export
8.1213 +- Bugfix: More toolbar buttons disabled, if action not possible
8.1214 +- Bugfix: Renaming .vymfile now works
8.1215 +- Bugfix: mapChanged set when toggling flags
8.1216 +- Bugfix: CTRL-N was used twice
8.1217 +- Bugfix: Del didn't work on floatimage
8.1218 +
8.1219 +-----------------------------------------------------------
8.1220 +- Version: 1.4.2
8.1221 +- Bugfix: Float image could not be deleted
8.1222 +
8.1223 +-----------------------------------------------------------
8.1224 +2004-05-25
8.1225 +
8.1226 +- Version: 1.4.1
8.1227 +- Bugfix: Color of branch not saved
8.1228 +- Bugfix: wrong path at HTML export
8.1229 +- Bugfix: map is not save with special characters in path
8.1230 +
8.1231 +-----------------------------------------------------------
8.1232 +2004-05-17
8.1233 +
8.1234 +- Version: 1.4.0
8.1235 +- Ask for confirmation before opening
8.1236 + a map in multiple editors
8.1237 +- Save state of note editor (visible/minimized)
8.1238 +- Export to HTML
8.1239 +- Author and Comment is saved in map
8.1240 +- Stats are shown in Edit MapInfo
8.1241 +- Changes for OS X port (QCursor, QContextMenuEvent)
8.1242 +- Bugfix: Fonts from note editor are save now
8.1243 +- Bugfix: invisible image when parent is scrolled
8.1244 +- Bugfix: Segfault pressing "enter" for floatimage
8.1245 +- Bugfix: Images can't be outside of exported area
8.1246 + anymore.
8.1247 +- Bugfix: Filenames with blanks
8.1248 +- Bugfix: Old maplink is shown when editing maplink
8.1249 +- Bugfix: always show cursor while editing heading
8.1250 +
8.1251 +-----------------------------------------------------------
8.1252 +2004-04-16
8.1253 +
8.1254 +- Version: 1.3.5
8.1255 +- Export map to dir
8.1256 +- Export to any of QTs image formats
8.1257 +- Also right side of selection is always visible now.
8.1258 +
8.1259 +-----------------------------------------------------------
8.1260 +2004-04-07
8.1261 +
8.1262 +- Version: 1.3.4
8.1263 +- Load last maps in file menu
8.1264 +- save last image path for loading
8.1265 +- Also export standard flags to dir.
8.1266 +
8.1267 +-----------------------------------------------------------
8.1268 +2004-03-26
8.1269 +
8.1270 +- Version: 1.3.3
8.1271 +- Enabled <br> in headings as manual linebreak
8.1272 +- Heading can be copied to URL
8.1273 +- Bugfix: GIFs are automatically converted to PNG now
8.1274 +
8.1275 +-----------------------------------------------------------
8.1276 +2004-03-26
8.1277 +
8.1278 +- Version: 1.3.2
8.1279 +- Add and move branches above/below selection, Texteditor copy all,
8.1280 +
8.1281 +-----------------------------------------------------------
8.1282 +2004-03-25
8.1283 +
8.1284 +- Version: 1.3.1
8.1285 +- Export to directory, changed naming in .vym
8.1286 +
8.1287 +-----------------------------------------------------------
8.1288 +2004-03-23
8.1289 +
8.1290 +- Version: 1.3.0
8.1291 +- Bugfix: Check if map can be saved at all
8.1292 +
8.1293 +-----------------------------------------------------------
8.1294 +2004-03-22
8.1295 +
8.1296 +- Version: 1.2.12
8.1297 +- Select image format before saving image
8.1298 +
8.1299 +-----------------------------------------------------------
8.1300 +2004-03-18
8.1301 +
8.1302 +- Version: 1.2.11
8.1303 +- Selecting mainbranches by up/down
8.1304 +- Export ASCII (experimental)
8.1305 +- Each map can be saved individually at quit
8.1306 +- Bugfix: Opening VymLink crashes QT
8.1307 +- Bugfix: 50\% less objects on canvas
8.1308 +- Bugfix: Ignoring LANG, now always written as UTF8
8.1309 +
8.1310 +-----------------------------------------------------------
8.1311 +2004-03-16
8.1312 +
8.1313 +- Version: 1.2.10
8.1314 +- Sort Mainbranches by angle to y-axis
8.1315 +- Import directory structure
8.1316 +- Bugfix: Set FrameType of MapCenter while loading map
8.1317 +
8.1318 +-----------------------------------------------------------
8.1319 +2004-03-12
8.1320 +
8.1321 +- Version: 1.2.9
8.1322 +- Jump to another vym map
8.1323 +- Mainbranches are alwas ordered clockwise
8.1324 +
8.1325 +-----------------------------------------------------------
8.1326 +2004-03-03
8.1327 +
8.1328 +- Version: 1.2.8
8.1329 +- Change frame types in context menu
8.1330 +
8.1331 +-----------------------------------------------------------
8.1332 +2004-02-25
8.1333 +
8.1334 +- Version: 1.2.7
8.1335 +- Copy / Paste and save Floatimages
8.1336 +
8.1337 +-----------------------------------------------------------
8.1338 +2004-02-24
8.1339 +
8.1340 +- Version: 1.2.6
8.1341 +- Closing vym in KDE now asks for save, too
8.1342 +- Context menu for branches
8.1343 +- Selection is saved in .vym file
8.1344 +
8.1345 +-----------------------------------------------------------
8.1346 +2004-02-18
8.1347 +
8.1348 +- Version: 1.2.5
8.1349 +- URLs to external links can be added
8.1350 +- All actions are deactived if not possible
8.1351 +
8.1352 +-----------------------------------------------------------
8.1353 +2004-02-16
8.1354 +
8.1355 +- Version: 1.2.4
8.1356 +- Images: Can be loaded, saved, relinked to other parents
8.1357 +
8.1358 +-----------------------------------------------------------
8.1359 +2004-01-27
8.1360 +
8.1361 +- Version: 1.2.3
8.1362 +- Zoom: Reset and finer steps shrinking/enlarging
8.1363 +
8.1364 +-----------------------------------------------------------
8.1365 +2004-01-27
8.1366 +
8.1367 +- Version: 1.2.2
8.1368 +- Editing of links (style and color)
8.1369 +
8.1370 +-----------------------------------------------------------
8.1371 +2004-01-27
8.1372 +
8.1373 +- Version: 1.2.1
8.1374 +- Bugfix: LineEdit when adding branch has correct position again.
8.1375 +
8.1376 +-----------------------------------------------------------
8.1377 +2004-01-23
8.1378 +
8.1379 +- Version: 1.2.0
8.1380 +- Scrolled parts are automatically unscrolled when selected and scrolled
8.1381 + again later.
8.1382 +- Bugfix: Save flag is updated when multiple maps are opened
8.1383 +- Bugfix: Moving of branches is faster and more accurat when adding to
8.1384 + mapcenter
8.1385 +
8.1386 +-----------------------------------------------------------
8.1387 +2003-12-04
8.1388 +
8.1389 +- Version: 1.1.7
8.1390 +- Bugfix: Remember filename of note in noteeditor
8.1391 +
8.1392 +-----------------------------------------------------------
8.1393 +2003-12-02
8.1394 +
8.1395 +- Version: 1.1.6
8.1396 +- Find Text also in Notes.
8.1397 +
8.1398 +-----------------------------------------------------------
8.1399 +2003-11-07
8.1400 +
8.1401 +- Version: 1.1.5
8.1402 +- Bugfix: Correct setting and positioning when relinking branches
8.1403 +
8.1404 +-----------------------------------------------------------
8.1405 +2003-11-03
8.1406 +
8.1407 +- Version: 1.1.4
8.1408 +- Scroll mode added (folding of subtrees).
8.1409 +- Bugfix: Wrong position of linedit in zoomed view
8.1410 +
8.1411 +-----------------------------------------------------------
8.1412 +2003-10-09
8.1413 +
8.1414 +- Version: 1.1.3
8.1415 +- Added clear button in find window, bugfixes
8.1416 +
8.1417 +-----------------------------------------------------------
8.1418 +2003-10-07
8.1419 +
8.1420 +- Version: 1.1.2
8.1421 +- Links can be colored with color of heading
8.1422 +
8.1423 +-----------------------------------------------------------
8.1424 +2003-09-26
8.1425 +
8.1426 +- Version: 1.1.1
8.1427 +- Improved visualization of linking to new branch
8.1428 +
8.1429 +-----------------------------------------------------------
8.1430 +2003-09-25
8.1431 +
8.1432 +- Version: 1.1.0
8.1433 +- Find Function
8.1434 +- Selection always stays in view
8.1435 +
8.1436 +-----------------------------------------------------------
8.1437 +2003-09-18
8.1438 +
8.1439 +- Version: 1.0.1
8.1440 +- Find function scrolls to result now
8.1441 +- Bugfix: Adding branch with midmouse
8.1442 +- Bugfix: multiple repositioning of map, when noteeditor was changed
8.1443 + (speedup)
8.1444 +- New Linestyles (still hardcoded)
8.1445 +
8.1446 +-----------------------------------------------------------
8.1447 +2003-09-16
8.1448 +
8.1449 +- Version: 1.0.0
8.1450 +- First public stable release
8.1451 +
8.1452 +-----------------------------------------------------------
8.1453 +- Version: 0.9.0
8.1454 +- added quick color picker (CTRL + Left Mouse) ?
8.1455 +
8.1456 +-----------------------------------------------------------
8.1457 +- Version: 0.8.0
8.1458 +- added automatic canvas resizer, removed manual resizing of canvas
8.1459 +- added settings option to paste text into new branch
8.1460 +- simplified code
8.1461 +- Added heart flag
8.1462 +- Choose and switch between fixed and variable width fonts
8.1463 +- note editor
8.1464 +- Fixed segfault caused by undo and a call of updateNoteFlag of note
8.1465 + editor
8.1466 +- Added settings menu to configure autoselect and autoedit mode
8.1467 +- autoedit and autoselect mode
8.1468 +- Fixed ugly display problem with QT Palette (Klaas Freitag)
8.1469 +- Reduced temporary directories from 4 to 1
8.1470 +- Added wordwrap in printing of notes
8.1471 +- New toolbar buttons in texteditor
8.1472 +- Set background color
8.1473 +- Fixed bug: Flags in toolbar not updated when selecting map center
8.1474 +
8.1475 +-----------------------------------------------------------
8.1476 +- Version: 0.7.0
8.1477 +- No more segfault, when an object is deleted while being edited
8.1478 +- Keep focus constant when zooming in/out
8.1479 +- Export as png graphic
8.1480 +- Keep Center of map where it is while zooming
8.1481 +- Added Standard Flags (Smiley, Hook, Stopsign, ...)
8.1482 +- MDI: Multi Document Interface enables working on several maps
8.1483 + simultanously
8.1484 +- Enabled creating a new map via argument on commandline
8.1485 +- Changed file extension from .mmap to .vym
8.1486 +- noteeditor changes color, if empty or nothing is selected
8.1487 +- Changes in NoteEditor window are recognized by main window, too, thus
8.1488 + preventing loosing data when quitting the program.
8.1489 +
8.1490 +-----------------------------------------------------------
8.1491 +- Version: 0.6.0
8.1492 +- New rendering engine: Faster, no flickering
8.1493 +
8.1494 +-----------------------------------------------------------
8.1495 +- Version: 0.5.0
8.1496 +- Changed printing to use maximum space on paper
8.1497 +- Note editor is hidden, too, when mapeditor is minimized
8.1498 +- New (compressed) file format
8.1499 +
8.1500 +-----------------------------------------------------------
8.1501 +- Version: 0.4.0
8.1502 +- Size of map is saved
8.1503 +- Multi Line Headings
8.1504 +- Reworked Rendering Engine: Much faster now.
8.1505 +- Reworked Undo: Much faster now.
8.1506 +- Enabled moving of map center
8.1507 +- Multi-line headings
8.1508 +
8.1509 +-----------------------------------------------------------
8.1510 +- Version: 0.3.0
8.1511 +- Introduced Undo
8.1512 +- Fixed some bugs
8.1513 +
8.1514 +-----------------------------------------------------------
8.1515 +- Version: 0.2.0
8.1516 +- Moving view of map improved:
8.1517 +- New handling (acrobat reader style)
8.1518 +- New mousepointer
8.1519 +- Several tools to color a map
8.1520 +
8.1521 +-----------------------------------------------------------
8.1522 +- Version: 0.1.0
8.1523 +- Inital version, basic map layout
8.1524 +- Data is stored in XML
9.1 --- a/vymmodel.cpp Thu Mar 18 11:55:59 2010 +0000
9.2 +++ b/vymmodel.cpp Mon Mar 22 15:37:23 2010 +0000
9.3 @@ -2542,7 +2542,6 @@
9.4 }
9.5
9.6 void VymModel::deleteSelection() //FIXME-2 xLinks in a deleted subtree are not restored on undo
9.7 -//FIXME-1 delete MCO, UNDO, => crash (see 1.12.4 from 29.7.2009)
9.8 {
9.9 BranchItem *selbi=getSelectedBranch();
9.10
10.1 --- a/xml-vym.cpp Thu Mar 18 11:55:59 2010 +0000
10.2 +++ b/xml-vym.cpp Mon Mar 22 15:37:23 2010 +0000
10.3 @@ -141,7 +141,6 @@
10.4 // Treat the found mapcenter as a branch
10.5 // in an existing map
10.6 BranchItem *bi=model->getSelectedBranch();
10.7 - cout << "xml-vym bi="<<bi->getHeadingStd()<<" loadMode="<<loadMode<<endl;
10.8 if (bi)
10.9 {
10.10 lastBranch=bi;