]> git.lyx.org Git - lyx.git/blob - Status.15x
d6c935e6be48a5339063ef6b9214a47a3b8f6d58
[lyx.git] / Status.15x
1 Debugging spree:
2 ----------------
3
4 Prizes (donated by Michael):
5
6   #1: LyX-labeled Tick Tock Wall Clock
7   #2: LyX-labeled Coffee and Tea Mug
8   #3: LyX-labeled Mousepad
9
10
11 **********************************************************************
12
13 BUGS:
14 -----
15
16 GENERAL
17
18 * Check FIXME, TODO, and #warning in the LyX code
19
20 * Resolve compiler warnings
21
22 * Watch for bugzilla.lyx.org entries
23
24    * Open bugs: http://tinyurl.com/y7hdzc
25
26      (unconfirmed/new/assigned/reopened + no enhancement + no 1.6.0 target + not 'fixedintrunk')
27
28    * Uncommitted patches: http://tinyurl.com/uvxat
29
30      (unconfirmed/new/assigned/reopened + no 1.6.0 target + keyword 'patch')
31
32
33 *******************************************
34 * PLEASE ADD NEW BUGS TO BUGZILLA.LYX.ORG *
35 *    THE DAYS OF THIS FILE ARE COUNTED    *
36 ******************************************* 
37
38
39 ICONS:
40
41 * make all icons of the same size(s)
42
43
44 FILE
45
46 * agu-dtd is used as the default document class, which is not a good 
47   idea in 99% of all cases
48
49 * When having at least one file in the session you get the following error
50   messages on Linux on startup:
51     QPainter::begin: Cannot paint on a null pixmap
52     QPainter::end: Painter not active, aborted
53   This does not happen if the session is empty.
54
55
56 SPELL CHECKING (Joost 4/11/06)
57
58 * Words with umlauts or accents do not arrive as a whole word in the spell
59   checker.
60   PARTIALLY FIXED (Georg 2006-12-10): pspell should work (untested), ispell
61   works if lyxrc.isp_use_input_encoding == true, aspell works on linux,
62   cygwin and native windows (it is not clear yet whether it works on OS X).
63   ispell (if lyxrc.isp_use_input_encoding == false) does not work yet.
64   
65
66 TABLE OF CONTENTS
67
68 * In TOC, the buttons "Up", "Down", "Promote", and "Demote" are not
69   self-explaining. Why don't we group them in two pairs: Section Up/Down, Level
70   Up/Down? The arrangement of the buttons may also give some hint to the user.
71
72 * open Tutorial; click on TOC: TOC dialog has no contents 
73    (only with --enable-stdlib-debug, has been seen on qt 4.2.2, gcc 4.1.2,
74     openSuse 10.1/x32 and 10.2/x64, but is probably not OS/qt specific, but
75     dependant on the compiler)
76     
77 * open two documents with a toc (Intro, Tutorial), open TOC dialog, 
78   click on a item, switch to the other doc without closing the TOC dialog, 
79   click on the TOC button -> crash
80
81
82 DIALOGS
83
84 * If you try to view a document as postscript that cannot be typeset because
85   of LaTeX errors and export to LaTeX afterwards you will get the old error
86   list again, although the export succeded.
87
88 * Dialogs do not get focus (e.g. when clicking on an inset).
89
90
91 MATH CONTROL PANEL
92
93 * In the math control panel, there is no icon for the "Fractions" button.
94
95 * In the math control panel, the buttons are too small.
96   The reason is probably that qt resizes the icons so that they fit into the
97   button, leaving some margin. This leads to different scales for each icon.
98   qt3 did not resize the icons. Can this be set in qt4, too? MG: Why don't we 
99   enlarge the buttons?
100
101
102 OTHER PANELS
103
104 * The visual table size selection on the "Insert Table" dialog has gone
105   (Joost 3/11/06).
106
107 * The UI for bullet selection in the documents settings looks weird
108   (Joost 4/11/06):
109   There is a big listbox just to select one of the four levels.
110   Isn't this supposed to be a drop-down list or something like that?
111
112 * The bullet selection widget shows the bullets in 5 columns (instead of 6)
113   for me, and hence does not fit into the window.
114   (JSpitzm 2006-11-06)
115
116
117 MULTIPLE WINDOWS / DOCUMENTS
118
119 * There are cursor problems when the same document is opened in two windows
120   (Joost 4/11/06).
121
122   Information from Abdel:
123   Yes, this is the famous dEPM bug (delete Empty Paragraph Mechanism).
124   There are two ways to fix that:
125   1) the correct way: fix the dEPM to not invalidate the cursor.
126   2) the easy way: disable the cursor on focus out event and re-enable it at
127   focus in event and jump the saved position (at focus out).
128
129 * Middle button paste does not work across windows. (Bo 12/15/06)
130
131
132 MENUS
133
134 * Some oddities with View menu on MAC (Bennett 3/11/06): DVI does not appear
135   in the menu, even though a converter and viewer are defined in Preferences.
136   It turned out that this was a user error: a configuration file of 1.4 was
137   used without the document flag.
138   This should definitely be documented somewhere before the final release,
139   because many users will copy their old config files.
140
141
142 EDITING
143
144 * edit->text style->capitalize/lower/upper case doesn't work due to change
145   tracking-related changes.
146
147
148 CHANGE TRACKING
149
150 * No change bar is given in LaTeX output if (only) the par break has changed
151
152 * In tables, cut & paste (complete cells) do not support change tracking
153
154 * When accepting or rejecting changes, paragraphs with deleted par breaks are
155   not merged (in top-level pars & in nested text insets)
156
157 * When running "find & replace", the cursor is not moved forward, such 
158   that LyX always offers to replace the same string
159
160 * LyX crashes if you want to accept/reject an end-of-par character only
161
162 * accept/reject change are presently broken, because redoParagraph() and 
163   updateLabels() aren't invoked properly
164
165
166 LAYOUT
167
168 * environments when using czech translation doesnt work: e.g.
169   itemize("Polozka") -> ERROR (layoutSelected): layout not found! (P. Sanda)
170
171
172 PAINTING & PERFORMANCE
173
174 * END_LABEL_* handling in RowPainer::paintLast() is broken. In regular text,
175   label boxes are not completely visible (because we shrinked the margin on 
176   screen?). Inside of insets, they don't work at all. 
177
178 * Too much painting 2 (Edwin 3/11/2006): There is also a lot of painting going
179   on when selecting text. When selecting a word the whole screen is repainted.
180   PARTLY FIXED (Abdel 2006-11-20): there's a full repaint only when the mouse is
181   released. More to come in this area.
182
183 * Too much painting 1 (Edwin 3/11/2006): when i click in the workarea (to put
184   the cursor in another part of the text) the screen is repainted *twice*
185   whereas it seems to me that no repainting is necessary at all.
186   PARTLY FIXED (Abdel 2006-11-20): except for math insets.
187
188 * Too much painting 3 (Edwin 3/11/2006): the screen is repainted even when the
189   selection does not change (moving the mouse with the left button pushed down 
190   always triggers a repaint).
191   PARTLY FIXED (Abdel 2006-11-20): When within the main text inset only the
192   current line is repainted.
193
194 * The cursor is not L-shaped for foreign languages
195
196 * Slowness on MAC 1 (Bennett 3/11/06):
197   There seems to be a fraction of a second lag between when I press a key and
198   when the letter appears on screen -- but the time lag doesn't obviously vary
199   with the amount of text on the screen (as was the case previously). Right now,
200   the speed of normal text entry makes LyX-1.5 usable on my
201   not-fast-but-still-not-outdated computer. (Not sure how it would be on my
202   slow-but-still-usable laptop.)
203
204 * Slowness on MAC 2 (Bennett 3/11/06):
205   Speed is still an issue typing in insets: noticeable lag between typing and
206   text appearing on screen. This does not seem to be compounded by having nested
207   insets, and it seems to be compounded only a little by the amount of text in
208   the inset. (This is especially a problem in math environments.)
209   PARTLY FIXED (Abdel 2006-11-20): except for math insets.
210
211 * Slowness on MAC 3 (Bennett 3/11/06): Some operations that with 1.4 are
212   pretty much instantaneous (inserting a footnote, dragging the mouse, switching
213   to LyX from another application, opening dialogs, etc.) take quite a long time
214   to complete in 1.5.
215
216 * Some math symbols are not displayed (from Enrico Forestieri)
217   I noticed that some math symbols are not shown on screen. This seems
218   to be platform dependent. The following is a table illustrating the
219   situation on three different platforms. Here "no" means that the
220   symbol is not shown on screen (the symbol is invisible but occupies
221   space: it is as a sort of \phantom), and "yes" that it is shown.
222   ---------------------------------------
223   Symbol         Linux   Solaris   Cygwin
224   ---------------------------------------
225   \Omega          no       no        no
226   \int            yes      yes       no
227   \oint           yes      yes       no
228   \otimes         no       no        no
229   \nleqslant      no       no        no
230   \spadesuit(*)   yes      no        yes
231   ---------------------------------------
232   (*) On solaris, a square is shown on screen instead of nothing.
233  - Further comments from Georg: This is probably a qt4 font drawing problem,
234    since \Omega works fine in 1.4.3, and my debugging results showed that the
235    correct font is found and used (cmr10).
236  - Solved problem with \int and \oint on Windows (Enrico 2006-12-06).
237
238
239 MAC OS X
240
241 * Many issues with toolbars on MAC (Bennett 3/11/06):
242   Most obvious of which are that icons are spaced too widely and that changes in
243   the visibility of the toolbars with the GUI do not stick after the screen is
244   redrawn).
245
246 * Many issue with dialogs on MAC (Bennett 3/11/06):
247   Most obviously: the Preferences dialog -- which can only be accessed now via
248   keyboard command, not from the menu -- appears initially too small and must be
249   resized; not possible to select buttons with the keyboard).
250
251   The prefs dialog size should be better now. See below (JSpitzm-2006-11-07).
252
253 * Menu bar disappears on MAC (instead of being disabled) when dialogs appear.
254
255
256 WONT FIX (for 1.5.0)
257
258 * There should be a close button on the tabs (Joost 3/11/06).
259   There is now a Qt feature request:
260   http://www.trolltech.com/developer/task-tracker/index_html?id=137891&method=entry
261
262 * TODO toolbar popup menu, currently disabled (Peter 9/11/06)  
263
264 * When content (sections/captions) is changed, the toc/lof/lot is not properly 
265   updated.
266   Abdel 2006-11-17: This one is not as simple as it seems as it involves a
267   TocBackend update at each keystroke. Unless we manage to update a specific
268   TocItem, this will be a WONTFIX for 1.5.0.
269
270   
271 **********************************************************************
272
273 CREDITS:
274 --------
275
276 * Performance on Windows is bad. On my system, scrolling the User Guide takes
277   10 seconds with LyX 1.4 and more than 30 seconds with LyX 1.5. 
278
279   FIXED (Abdel 04/11/06): This was due to spurious message in QLPainter.C,
280
281 * When I have the same document in two windows, only the last selected paragraph
282   in one of the windows gets updated.
283
284   FIXED (Abdel 04/11/06): This was due my singlePar optimization. With my last
285   commit, the optimization is enabled only if the WorkArea has the focus.
286
287 * No icon for "note-next" in the "review" toolbar.
288
289   ADDED (JSpitzm 2006-11-04).
290
291 * Branches gui broken (buttons do nothing).
292
293   FIXED (JSpitzm 2006-11-04).
294
295 * The title bar does not contain the document name when a new window is opened
296   (Joost 4/11/06).
297
298   FIXED (Abdel 05/11/06): This was due to "last_title" being a static variable
299   in LyXView::updateWindowTitle() and also due to a potential bug in Qt:
300   an update command to the window title seems to be ignored up until the window
301   is shown.
302
303 * src/frontends/qt4/ui/QCitationUi.ui:70 "&Selected citations:" should be
304   "&Selected Citations:".
305
306   FIXED (MGerz 2006-11-05)
307
308 * In the "Math Delimiters" dialog, there is no need to repeat the term "Size"
309   for all values in the selection box; the label is already named "Size"
310
311   FIXED (MGerz 2006-11-05)
312
313 * If you open Document>Settings... or Tools>Preferences... for the first time,
314   the dialog is much too small to show its content; if you invoke it the second
315   time, everything is fine.
316
317   This happens with qt 4.2.1 only, it does not happen with 4.1.4/4.1.5!
318
319   FIXED (JSpitzm-2006-11-06): force updateGeometry() after the panelstack has 
320   been created (with Qt >= 4.2 only). A brute method, but it works.
321
322 * All label and button texts in the Qt4 dialogs are not translated.
323
324   FIXED (MGerz 2006-11-07)
325
326 * Some English menu items don't have a '&' character. (box, date, paste...)
327
328   FIXED (MGerz 2006-11-07). I added shortcut whereever possible.
329
330 * When changing the toolbar settings in the right-button context menu of a 
331   visible toolbar, the modified settings are not considered for session management
332   
333   REPLACED with a new entry, popup disabled (Peter 2006-11-09)
334
335 * Toolbars always show on the top of the screen, even though they are set to
336   "bottom" in the ui file (Joost 3/11/06).
337
338   FIXED: use the defaul.ui value only when there is no valid position stored 
339          (1st start of lyx)  (Peter 7/11/2006)
340
341 * Window positions are not remembered correctly. Each time a window is openend
342   window again it has moved towards the bottom of the screen. (Joost 3/11/06)
343
344   FIXED (Peter 8/11/2006)
345
346 * Special handling of [[...]] in text messages is disabled in messages.C
347   FIXED (Georg 2006-11-12)
348
349 * broken signal/slot connection:
350   Object::connect: No such signal LengthCombo::selectionChanged(LyXLength::UNIT)
351   Object::connect:  (sender name:   'unitCO')
352   Object::connect:  (receiver name: 'QVSpaceUi')
353
354   FIXED (JSpitzm 2006-11-12)
355
356 * Cursor is still not visible on MAC Bennett (3/11/06).
357   FIXED (Abdel 2006-11-13)
358
359 * crash on Windows/Mac
360   1. new document
361   2. insert List/TOC->Bibtex Bilio
362   3. add a bibliography
363   4. View Source ->crash
364   FIXED (Peter 2006-11-14)
365
366 * In the TOC dialog, switching between the different TOC types (TOC, Table,
367   Float, etc.) is broken.
368   FIXED (Ugras)
369
370 * In the TOC dialog, the slider for altering the display level is
371   non-functional (not implemented).
372   FIXED (Ugras 2006-11-17)
373
374 * The correct list is not selected when right-clicking on a LOF or
375   LOT inset.
376   FIXED (Ugras 2006-11-17)
377
378 * When selecting a type which *is* already selected, the content in the 
379   browser window vanishes
380   FIXED (Ugras 2006-11-17)
381
382 * TOC crashes (simply make a few sections, subsections, sections; then add TOC
383   before all sections and click on the left button)
384   FIXED (Abdel, sometimes in november 2006).
385
386 * Items in the TOC cannot be moved using drag & drop (Joost 4/11/06).
387   WONTFIX (Abdel 2006-11-17): at least not for 1.5.0, this is just candy anyway.
388
389 * M-x is broken (does not bring up the minibuffer).
390   FIXED (Bo, 2006-11-18): set toolbar flag in display function.
391
392 * open a file; mark with the mouse and scroll; assert will fail:
393   FIXED (Abdel 2006-11-20): side effect of updateMetrics() cleanup.
394   
395 * Selection highlighting is broken. Test case: two paragraphs with "Hello"
396   and "World"; move cursor past "Wor", press Shift+Up 
397   FIXED (Abdel 2006-11-20): side effect of updateMetrics() cleanup.
398   
399 * Mac Crash (Bennett 3/11/06):
400   On launch from GUI (by double-clicking on the LyX icon). As I reported before,
401   this happens only when using the GUI; I can successfully start LyX from the
402   Terminal, with or without gdb. Hence the only debug information I get is this,
403   printed out in Console.app when I try launching from the GUI (note that the
404   number changes everytime):
405
406   Wrong command line option `-psn_0_182321153'. Exiting.
407
408   Hint from Andreas Vox: LyX must accept any option starting with '-psn' and
409   pass it oon to the Qt initialisation. On Mac this gives the app a link to the
410   Window system.
411   FIXED (Abdel 2006-11-25): Arguments are now passed to QApplication.
412   
413 * In the math control panel, "Detach panel" is broken (only 1 button is
414   visible in the detached panel).
415   FIXED (Edwin/Ugras 2006-11-XX)
416   
417 * Command completion in the minibuffer shows a huge blank area below the proposed
418   commands. Clicking in that empty area crashes LyX.
419   FIXED (????)
420  
421 * Copy/paste using middle mouse button inserts musical notes.
422   FIXED (Abdel 2006-11): Confirmed by Michael who couldn't reproduce on SuSE Linux 9.3)
423
424 * new document; insert note; place cursor in front of the note; activate change tracking;
425   press delete => assertion failed
426   FIXED (JMarc 2006-11)
427
428 * new document; insert note; insert "hello" into note; place the cursor at the beginning of the note;
429   activate change tracking; press backspace => seg fault
430   FIXED (Michael 2006-11-25)
431
432 * Mac Crash On quit (Bennett).
433   FIXED (Peter 2006-11-20)
434
435 * Drawing oddities on MAC (Bennett 3/11/06):
436   Lines occasionally overlapping vertically, math characters not properly
437   aligned vertically.
438   FIXED (JMarc 2006-11).
439
440 * Icons in the toolbars do not have the correct size, they are stretched a few
441   pixels compared to 1.4. This makes the images look jagged and the initial
442   window size has also become to small to show the whole toolbar
443   (Joost 4/11/06). See also the math panel buttons entry above.
444   FIXED (Peter, 2006-11-28)
445
446 * The -geometry option doesn't work on Windows (it did in 1.4.x)
447   c:\> lyx-qt4.exe -geometry 800x600+100+30
448   Wrong command line option `-geometry'. Exiting.
449   FIXED (Peter, 2006-11-29)
450
451 * When I "Save as..." in /tmp, I get a Backup error popup about non writable 
452   /tmp, which is obviously not true.  The file is there, and if I try to Save
453   as again, I get the overwrite popup warning twice: once in English, once 
454   in French. (J. P. Chretien)
455   FIXED (Michael (found the problem), Georg (fix), 2006-11-30)
456
457 * It is ridiculous that you have to call configure with --with-frontend=qt4.
458   The existance of config/qt.m4 does not make much sense either.
459   The first one is FIXED, the second WONTFIX (JMarc 07-12-2006)
460
461 * Open de_Intro.lyx => The footnote text in the title section exceeds the
462   footnote frame
463   FIXED (Enrico 2006-12-09). This was due to wrong metrics for small caps.
464
465 * Spell checking cannot be invoked a second time.
466   FIXED (Georg 2006-12-10). Abdel accidentally committed some test code in
467   revision 14970 which I reverted.
468
469 * The first time the spell checker is started, an empty window shown instead
470   of the first misspelled word.
471   FIXED (Georg 2006-12-10). This bug had the same resaon as the previous one.
472
473 * Create a new document; enter a few chars; press return; click on the previous paragraph 
474   with mouse to change the focus: lyx crashes. (happens on Win XP SP2, 
475   MSVC 2005 Prof., Scons) 
476   FIXED (JSpitzm 2006-12-11)
477
478 * open lyx, create a new document, enter a few chars, quit, click cancel, lyx
479   still quits.
480   FIXED (Enrico 2006-12-12)
481
482 * Non-ascii filenames do not work at all and result in an assertion or garbage.
483   FIXED (Georg 2006-12-12).
484
485 * LyX tries to delete /tmp if it is called with invalid arguments
486   FIXED (Enrico 2006-12-13)
487
488 * Start lyx, open a document, scroll down, open a new window, move 
489   the cursor back, lyx crashes because par::rows() is cleared when the
490   new window is created.
491   FIXED (Bo 2006-12-13)
492
493 * Start lyx, open a doc, open another window for the same
494   document. Now, from window A, click at paragraph X, scroll down to paragraph Y,
495   switch to window B, click, switch back to window A. When mouse moves, editXY()
496   finds the correct pit for paragraph Y, when click, editXY() finds paragraph X
497   and scroll back to it. (Bo, 12/14/2006)
498   FIXED (Abdel 2006-12-15)
499
500 * In the citation dialog, the shortcut for "&Find" does not work
501   FIXED (JSpitzm 2006-12-17)
502
503 * Graphics dialog: The order of fields is broken (when using <TAB> to jump from
504   one field to another)
505   FIXED (JSpitzm 2006-12-18)
506
507 * Mysterious *.po entry:
508
509   #: src/frontends/qt4/ui/QViewSourceUi.ui:31
510   msgid ""
511   "<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body style=\" "
512   "white-space: pre-wrap; font-family:Sans Serif; font-size:13pt; font-"
513   "weight:400; font-style:normal; text-decoration:none;\"><p style=\"-qt-"
514   "paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; "
515   "margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>"
516   msgstr ""
517   FIXED (JSpitzm 2006-12-19)
518
519 * Loading de_Userguide.lyx results in two parse errors:
520   Paragraph ended in line 21206
521   Missing \end_layout.
522   Paragraph ended in line 21301
523   Missing \end_layout.
524   I don't know if that is a lyx2lyx or LyX problem. LyX 1.4 can read the file.
525   FIXED (Georg 2006-12-17). It turned out that it was a math parser problem
526   (bug 3034). It was introduced by the conversion of mathed to unicode,
527   because two methods Parser::tokenize() with different semantics existed.
528
529 * In the splash screen, the LyX version number is printed with a very, very
530   small font size such that it becomes almost invisible on Windows.
531   FIXED (Enrico 2006-12-21)
532
533 * Change Tools->Preferences->User interface->User interface to something like
534   "kornel.default.ui"; save prefs; exit LyX; restart LyX; => crash; 
535   in the preferences file, there is an entry \bind_file "/Something/kornel.default"
536
537   In QPrefsDialog.C:1736, function PrefUserInterface::select_ui() calls
538         form_->controller().browseUI(qstring_to_ucs4(uiFileED->text())))
539   which in turn calls
540         ControlPrefs.C:118
541         browseLibFile(lyx::from_ascii("ui"), file, lyx::from_ascii("ui"),
542                 _("Choose UI file"), FileFilterList(_("LyX UI files (*.ui)")));
543   In this function, the extension is removed, because it is the default ("ui" in 
544   this case). This behaviour applies to
545     ControlPrefs::browsebind,  ControlPrefs::browseUI
546     ControlPrefs::browsekbmap, ControlPrefs::browsedict
547   Setting the default extension here to something invalid, is a hack, but works.
548   (Invalid may be e.g. "*")
549   FIXED (Enrico and Georg 2006-12-21)
550
551 * When loading a LyX file from a Windows directory with a German Umlaut, I get the 
552   following error:
553
554     Assertion triggered in __thiscall lyx::support::FileName::FileName(const class 
555     std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)
556     by failing check "empty() || absolutePath(name_)" in file C:\...\src\support\filename.C:47
557
558   If I rename the directory (no Umlaut), I can load the file without a problem.
559   FIXED (Enrico and Georg 2006-12-21)
560
561 * when opening an already opened document (or a document with newer backup),
562   the mouse pointer turns into a clock, although it waits for confirmation
563   FIXED (Enrico 2006-12-21)
564
565 * The style name in the BibTeX Bibliography panel (near the Browse... button)
566   disappears after closing and reopening the panel.
567   FIXED (Enrico 2006-12-22)
568
569 * Create a new document; enter a few chars; press return; from the 
570   environments combo box on the top left corner select anything, e.g., 'Part'; 
571   try to enter text => you can't! 
572   MG: This must be a GUI problem; when using keyboard shortcuts (Alt-P-...),
573   the problem does not occur; it does not matter whether the cursor is in the last line
574   JSpitzm: The problem is that the workarea doesn't get focus after the combo selection.
575
576   FIXED (Abdel 2006-12-24): centralWidget() was not the WorkArea due to the new TabBar
577   support.
578
579 * On Windows (using scons/MSVC): Create an empty bibtex file, called 
580   'lit.bib'. Create a new LyX document 'lit.lyx' in the same directory
581   that has a bibliography inset pointing to lit.bib.
582   Now, if lit.[lyx|bib] are stored in a path with ASCII characters only,
583   class FileName is used as follows:
584     FileName::FileName(string const &): C:/foo/lit.lyx.emergency
585     FileName::FileName(string const &): C:/foo/#lit.lyx#
586     FileName::FileName(string const &): C:/foo/
587     FileName::FileName(string const &): C:/foo/lit.bib
588     FileName::FileName(string const &): C:/lyx-trunk/build-msvc/bin
589     FileName::FileName(string const &): C:/foo/lit.lyx,v
590     FileName::FileName(string const &): C:/foo/RCS/lit.lyx,v
591     FileName::FileName(string const &): C:/foo//CVS/Entries
592     FileName::FileName(string const &): C:/foo/lit.lyx
593   However, if the path contains a German Umlaut ("bäh"), LyX crashes:
594     FileName::FileName(string const &): C:/bäh/lit.lyx.emergency
595     FileName::FileName(string const &): C:/bäh/#lit.lyx#
596     FileName::FileName(string const &): C:/bäh/
597     FileName::FileName(string const &): C:/bäh/lit.bib
598     FileName::FileName(string const &): lit.bib
599     Assertion triggered in __thiscall lyx::support::FileName::FileName(const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &) by failing check "empty() || absolutePath(name_)" in fil
600 e C:\cygwin\home\ms\lyx-trunk\src\support\filename.C:48
601   Odd, isn't it?
602   FIXED (Enrico (found problem) and Georg (fix) 2006-12-27)
603
604 * open a document full of marginal notes (other insets should also work),
605   select multiple insets from the begining twice, lyx crashed with
606     QLayout::addChildWidget: lyx::frontend::QCommandBuffer "" in wrong parent; moved to correct parent
607     Assertion triggered in void lyx::LyXText::dispatch(lyx::LCursor&, lyx::FuncRequest&) by failing check "cur.text() == this" in file src/text3.C:323
608     Abort
609   FIXED (Bo 2006-12-27)
610
611 * insert->note->lyx note, enter a few chars, collapse the note. Copy the note
612   several times (three lines?), use mouse to select. Lyx crashes with
613   Assertion triggered in void lyx::LyXText::dispatch(lyx::LCursor&, lyx::FuncRequest&) by failing check "cur.text() == this" in file src/text3.C:323
614   NOTE: this is unrelated to the button face-lift patch.
615
616   FIXED (Bo 2006-12-27)
617
618 * Open "de_Intro.lyx"; mark first word ("Einführung"); invoke "ert-insert" => seg fault
619   FIXED (Abdel 2006-30-12)
620   
621 * The items in the treeview are editable
622   FIXED (Peter 2006-30-12)
623
624 * Open de_UserGuide.lyx; go to the end of the document; click into the footnote (with the mouse -
625   this is important for the test case); add a character into the note 
626   => the complete footnote is expanded but only the current line is repainted
627   FIXED (Abdel 2006-12-29): following Paragraph and LyXText metrics cleanup.
628
629 * Spellchecker: The cursor does not go to the currently checked word (or
630   maybe it goes, but the screen is not updated so that one does not see the
631   word). http://bugzilla.lyx.org/show_bug.cgi?id=3064
632   FIXED (Abdel 2007-01-05):
633
634 * If you open Edit>Text Style... for the first time, the choice text for
635   "Never Toggled>Size" doesn't fit in the selection box (note that in German,
636   texts are a bit longer than in English). Interestingly, if you invoke the
637   dialog a second time, its button sizes are adjusted to their content.
638   This happens with qt >= 4.2 only, it does not happen with 4.1.4/4.1.5!
639
640   FIXED (2007-01-07 JSpitzm). I forgot to commit the ui changes last time.
641
642 * open an empty document; click on TOC (TOC dialog has no contents); touch TOC slider
643   => seg fault
644
645   FIXED (2007-01-07 JSpitzm). The slider is properly disabled now.
646
647 * If you open the graphics dialog for the first time, the "extra options"
648   tab is displayed. This is annyoing, of course the first tab with the
649   filename should be the default.
650
651   FIXED (2007-01-07 JSpitzm).
652
653 * Resolve compiler warnings
654   src/frontends/qt4/QPrefsDialog.C:944: warning: unused parameter 'nr'
655   FIXED (2007-01-07 Bo)
656
657 * Preview fails due to graphics converter bug:
658
659   File "C:/Dokumente und Einstellungen/itsme/Lokale Einstellungen/Temp/lyx_tmpdir1584a02224/lyxconvert0.py", line 14, in <module>
660      ...
661   IOError: [Errno 2] No such file or directory: 'C:/dokumente und einstellungen/itsme/Ver\xc3\xb6ffentlichungen/figures/myfigure.pdf'
662
663   There is a problem with a German Umlaut (ö= \xc3\xb6) 
664   FIXED (Enrico 2007-01-08)