X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChangeLog;h=e254a32727e219af020a1c0915e955667f78ad34;hb=cb52251ccff29d6cbfa13ab90a96be566e3f41ac;hp=5a603c44032421282cfbf35b98ae3fb3198eecc3;hpb=6a10fbcc39c528b32e816033fcb78d27787c37be;p=lyx.git diff --git a/src/ChangeLog b/src/ChangeLog index 5a603c4403..e254a32727 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,242 @@ +2001-11-26 John Levon + + * vspace.C: initialise lyxgluelength on failure + +2001-11-28 Allan Rae + + * text.C (paintLastRow): g++-2.95.3 and others don't like variable + declaration & definition that looks like a function declaration. + +2001-11-27 Jean-Marc Lasgouttes + + * BufferView2.C (copy): + (copyEnvironment): do not clear the selection when doing a copy. + + * text.C (paintFirstRow): compilation fix + +2001-11-27 Ben Stanley + + * tabular.C (Latex): correct line count when writing latex. + +2001-11-27 John Levon + + * paragraph_pimpl.h: + * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX" + bug a bit + +2001-11-26 John Levon + + * text.C: + * LColor.h: + * LColor.C: change vfillline->added_space + + * text.C: add markers and text for added space + + * vspace.C: fix comment + +2001-11-28 André Pönitz + + * paragraph.C: whitespace changes + * files form the 26th: change *::pos_type into lyx::pos_type + +2001-11-27 Dekel Tsur + + * buffer.C (parseSingleLyXformat2Token): Set the language to the + language of the document when inserting error insets. + +2001-11-26 André Pönitz + + * BufferView_pimpl.[Ch]: + * CutAndPaste.C: + * buffer.[Ch]: + * lyxcursor.[Ch]: + * lyxfind.C: + * lyxfunc.C: + * lyxrow.[Ch]: + * paragraph.[Ch]: + * paragraph_pimpl.[Ch]: + * sp_spell.C: + * text.C: + * text2.C: reduce header dependencies, introduce type for positions + +2001-11-23 John Levon + + * : change to use Alert.h + +2001-11-25 Dekel Tsur + + * buffer.C (parseSingleLyXformat2Token): Insert an error inset + when encountering an unknown token. + (readLyXformat2): Show an error message if there were unknown tokens. + +2001-11-22 John Levon + + * BufferView2.C: + * BufferView_pimpl.C: + * buffer.C: + * paragraph.h: + * text.C: + * text2.C: use par->isInset() + +2001-11-23 John Levon + + * paragraph_pimpl.h: + * paragraph_pimpl.C: cleanup + +2001-11-22 Jean-Marc Lasgouttes + + * text2.C (removeRow): + * text.C (setHeightOfRow): remove useless (and costly) call to + getRow. + +2001-11-20 Allan Rae + + * paragraph.C (insertFromMinibuffer): Fix for inset related crashes. + Now need Inset*::checkInsertChar() to return true for appropriate + cases so that the characters in the minibuffer will actually be + inserted. + +2001-11-15 Lars Gullik Bjønnes + + * text.C: change the order of the includes. + (workWidth): initialize it at once. + (workWidth): make maxw unsigned + (setHeightOfRow): remove unused variable (inset) + (selectSelectedWord): remove unused variable (inset) + (paintRowText): fix drawing of hfill characters, and clean up a bit. + +2001-11-14 Jean-Marc Lasgouttes + + * lyxserver.C (emergencyCleanup): do not try to close pipes if + server is not running. + (openConnection): + (closeConnection): add debug info when server is disabled. + + * ColorHandler.C (getGCForeground): send debug message to GUI + channel. + + * lyxrc.C: do not include lyxserver.h and tex-strings.h. + + * kbmap.C (bind): modify because return conventions of + kb_sequence::parse have changed. + + * kbsequence.C (parse): only ignore spaces and not any stupid + control character. This avoids tests like s[i] <= ' ', which are + guaranteed to fail with 8bit characters and signed chars. + Change return code to string::npos when there have been no error + (0 was a bad idea when error is at first character) + +2001-11-13 Jean-Marc Lasgouttes + + * text.C (selectNextWordToSpellcheck): do not test explicitely for + insets which are part of a word. Paragraph::isLetter takes care of + that now. Use Paragraph::isInset to identify insets. + (selectSelectedWord): do not test for hyphenation break. + + * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so + that protected spaces are considered as spaces. + + * paragraph.C (isLetter): cleanup the code for ispell extras; use + Inset::isLetter. + +2001-11-12 John Levon + + * lyxserver.h: + * lyxserver.C: fix it. and small cleanup. + +2001-11-07 John Levon + + * BufferView_pimpl.C: use inline helpers + + * LaTeXFeatures.h: + * LaTeXFeatures.C: fix typos + + * Spacing.h: + * Spacing.C: move spacing_string into class + + * ToolbarDefaults.C: move stuff into namespace anon + + * layout.h: update enum + + * lyxfunc.C: use better debug + + * minibuffer.h: fix typo + + * debug.h: + * debug.C: + * WorkArea.C: add and use Debug::WORKAREA + + * lyxtext.h: + * text.C: + * text2.C: code re-organisation, inline helpers + +2001-11-09 Michael A. Koziarski + + * Layout.C: replaced a few cases of std::vector.size() == 0 with + std::vector.empty(). + +2001-11-09 Allan Rae + + * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about + '\n's after tables. Tabular and ERT inset work now makes this no + longer necessary. + +2001-11-07 John Levon + + * minibuffer.h: + * minibuffer.C: fix crash, improve drop-down completion + +2001-11-06 John Levon + + * lyxserver.h: + * lyxserver.C: invalidate fd's when doing endPipe() + +2001-11-08 José Matos + + * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break. + (simpleDocBookOnePar): removed code made obsolete by the new inset code. + + * paragraph.h: + * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar. + +2001-11-07 José Matos + + * buffer.h: + * buffer.C (sgmlError): linuxDocError renamed, and made public, added + const qualifier. + + * buffer.C (sgmlOpenTag): + * buffer.C (sgmlCloseTag): removed debug info. + + * buffer.h (sgmlOpenTag): + * buffer.h (sgmlCloseTag): made public. + +2001-11-07 Jean-Marc Lasgouttes + + * buffer.C (saveParamsAsDefaults): + * lyx_cb.C (MenuLayoutSave): remove + + * LyXAction.C (init): + * commandtags.h: + * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT. + +2001-11-06 Jean-Marc Lasgouttes + + * buffer.C (setPaperStuff): removed from here... + + * bufferparams.C (setPaperStuff): ... and moved there. + +2001-11-03 John Levon + + * minibuffer.h: + * minibuffer.C: + * XFormsView.C: add support for drop-down completion + +2001-11-03 Dekel Tsur + + * paragraph.C (TeXOnePar): Correct placement of \selectlanguage + commands. + 2001-10-31 Jean-Marc Lasgouttes * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is @@ -7,6 +246,15 @@ * lyx_main.C: change ref to known bugs +2001-10-30 Kayvan A. Sylvan + + * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead + to work around older babel problems. + +2001-10-28 Kayvan A. Sylvan + + * LaTeXFeatures.[hC]: Now uses skak.sty for chess material. + 2001-10-24 Juergen Vigna * tabular-old.C (ReadOld): below variable changes reflected.