]> git.lyx.org Git - lyx.git/blobdiff - Status.15x
* src/tex2lyx/text.C
[lyx.git] / Status.15x
index 5733303f4690f7d863d5e9adca2c41525baa1083..92c51d6ec49f859595897d3321e843bb2c33be0f 100644 (file)
@@ -24,15 +24,10 @@ GENERAL
 
 * Resolve compiler warnings
 
-* LyX tries to delete /tmp if it is called with invalid arguments
-
 
 FILE
 
-* When I "Save as..." in /tmp, I get a Backup error popup about non writable 
-  /tmp, which is obviously not true.  The file is there, and if I try to Save
-  as again, I get the overwrite popup warning twice: once in English, once 
-  in French. (J. P. Chretien)
+* LyX tries to delete /tmp if it is called with invalid arguments
 
 * Loading de_Userguide.lyx results in two parse errors:
   Paragraph ended in line 21206
@@ -43,6 +38,26 @@ FILE
 
 * Non-ascii filenames do not work at all and result in an assertion or garbage.
 
+* open lyx, create a new document, enter a few chars, quit, click cancel, lyx
+  still quits.
+
+* Change Tools->Preferences->User interface->User interface to something like
+  "kornel.default.ui"; save prefs; exit LyX; restart LyX; => crash; 
+  in the preferences file, there is an entry \bind_file "/Something/kornel.default"
+
+  In QPrefsDialog.C:1736, function PrefUserInterface::select_ui() calls
+       form_->controller().browseUI(qstring_to_ucs4(uiFileED->text())))
+  which in turn calls
+       ControlPrefs.C:118
+       browseLibFile(lyx::from_ascii("ui"), file, lyx::from_ascii("ui"),
+               _("Choose UI file"), FileFilterList(_("LyX UI files (*.ui)")));
+  In this function, the extension is removed, because it is the default ("ui" in 
+  this case). This behaviour applies to
+    ControlPrefs::browsebind,  ControlPrefs::browseUI
+    ControlPrefs::browsekbmap, ControlPrefs::browsedict
+  Setting the default extension here to something invalid, is a hack, but works.
+  (Invalid may be e.g. "*")
+
 
 SPELL CHECKING (Joost 4/11/06)
 
@@ -63,12 +78,6 @@ TABLE OF CONTENTS
 
 * The items in the treeview are editable
 
-* When content (sections/captions) is changed, the toc/lof/lot is not properly 
-  updated.
-  Abdel 2006-11-17: This one is not as simple as it seems as it involves a
-  TocBackend update at each keystroke. Unless we manage to update a specific
-  TocItem, this will be a WONTFIX for 1.5.0.
-
 
 DIALOGS
 
@@ -107,6 +116,10 @@ OTHER PANELS
   for me, and hence does not fit into the window.
   (JSpitzm 2006-11-06)
 
+* The style name in the BibTeX Bibliography panel (near the Browse... button)
+  disappears after closing and reopening the panel.
+  (Enrico 2006-12-01)
+
 
 MULTIPLE WINDOWS / DOCUMENTS
 
@@ -120,17 +133,14 @@ MULTIPLE WINDOWS / DOCUMENTS
   2) the easy way: disable the cursor on focus out event and re-enable it at
   focus in event and jump the saved position (at focus out).
 
-* There should be a close button on the tabs (Joost 3/11/06).
-  There is now a Qt feature request:
-  http://www.trolltech.com/developer/task-tracker/index_html?id=137891&method=entry
-
 
 TOOLBARS & MINIBUFFER
 
 * When toolbars are hidden, they pop up again after clicking on the document
   area (Joost 4/11/06).
+  Comment by Bo: Can not reproduce, details please.
 
-* TODO toolbar popup menu, currently disabled (Peter 9/11/06)  
+* Toolbar tooltips are no longer shown
 
 
 MENUS
@@ -142,12 +152,19 @@ MENUS
   This should definitely be documented somewhere before the final release,
   because many users will copy their old config files.
 
+* Tooltips for fields are no longer shown
+
 
 EDITING
 
 * edit->text style->capitalize/lower/upper case doesn't work due to change
   tracking-related changes.
 
+* insert->note->lyx note, enter a few chars, collapse the note. Copy the note
+  several times (three lines?), use mouse to select. Lyx crashes with
+  Assertion triggered in void lyx::LyXText::dispatch(lyx::LCursor&, lyx::FuncRequest&) by failing check "cur.text() == this" in file src/text3.C:143
+  NOTE: this is unrelated to the button face-lift patch.
+
 
 CHANGE TRACKING
 
@@ -172,10 +189,12 @@ LAYOUT
 
 PAINTING & PERFORMANCE
 
+* In the splash screen, the LyX version number is printed with a very, very
+  small font size such that it becomes almost invisible on Windows.
+
 * END_LABEL_* handling in RowPainer::paintLast() is broken. In regular text,
   label boxes are not completely visible (because we shrinked the margin on 
-  screen?). Inside of insets, they don't work at all. Should we remove this
-  feature completely as the overall benefit for the user is marginal?
+  screen?). Inside of insets, they don't work at all. 
 
 * Too much painting 2 (Edwin 3/11/2006): There is also a lot of painting going
   on when selecting text. When selecting a word the whole screen is repainted.
@@ -232,9 +251,11 @@ PAINTING & PERFORMANCE
   \spadesuit(*)   yes      no        yes
   ---------------------------------------
   (*) On solaris, a square is shown on screen instead of nothing.
- Further comments from Georg: This is probably a qt4 font drawing problem,
- since \Omega works fine in 1.4.3, and my debugging results showed that the
- correct font is found and used (cmr10).
+ - Further comments from Georg: This is probably a qt4 font drawing problem,
+   since \Omega works fine in 1.4.3, and my debugging results showed that the
+   correct font is found and used (cmr10).
+ - Solved problem with \int and \oint on Windows (Enrico 2006-12-06).
+
 
 
 BUILDING
@@ -260,6 +281,20 @@ MAC OS X
 * Menu bar disappears on MAC (instead of being disabled) when dialogs appear.
 
 
+WONT FIX (for 1.5.0)
+
+* There should be a close button on the tabs (Joost 3/11/06).
+  There is now a Qt feature request:
+  http://www.trolltech.com/developer/task-tracker/index_html?id=137891&method=entry
+
+* TODO toolbar popup menu, currently disabled (Peter 9/11/06)  
+
+* When content (sections/captions) is changed, the toc/lof/lot is not properly 
+  updated.
+  Abdel 2006-11-17: This one is not as simple as it seems as it involves a
+  TocBackend update at each keystroke. Unless we manage to update a specific
+  TocItem, this will be a WONTFIX for 1.5.0.
+
 
 **********************************************************************
 
@@ -443,3 +478,15 @@ CREDITS:
   window size has also become to small to show the whole toolbar
   (Joost 4/11/06). See also the math panel buttons entry above.
   FIXED (Peter, 2006-11-28)
+
+* The -geometry option doesn't work on Windows (it did in 1.4.x)
+  c:\> lyx-qt4.exe -geometry 800x600+100+30
+  Wrong command line option `-geometry'. Exiting.
+  FIXED (Peter, 2006-11-29)
+
+* When I "Save as..." in /tmp, I get a Backup error popup about non writable 
+  /tmp, which is obviously not true.  The file is there, and if I try to Save
+  as again, I get the overwrite popup warning twice: once in English, once 
+  in French. (J. P. Chretien)
+  FIXED (Michael (found the problem), Georg (fix), 2006-11-30)
+