mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Add on to fix for #2757
- Treat BibTeX errors as errors so the LaTeX Errors dialog is shown.
- Add RELEASE-NOTES (updated from cba432f1
).
This commit is contained in:
parent
8adb877198
commit
744b2e304b
@ -47,7 +47,6 @@ The following metadata files have been added to the tarball in 2.2:
|
|||||||
Changes with respect to external programs and libraries in 2.2:
|
Changes with respect to external programs and libraries in 2.2:
|
||||||
--------------------------------------------------------
|
--------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
- LyX is not yet supposed to work with Qt5. It is advised to compile and
|
- LyX is not yet supposed to work with Qt5. It is advised to compile and
|
||||||
run LyX against Qt 4.8.x. On Windows, Qt 4.8.5 suffers from a bug that
|
run LyX against Qt 4.8.x. On Windows, Qt 4.8.5 suffers from a bug that
|
||||||
breaks the use of shortcuts, so on Windows Qt 4.8.4 is advised.
|
breaks the use of shortcuts, so on Windows Qt 4.8.4 is advised.
|
||||||
@ -67,3 +66,8 @@ Known issues in version 2.2.0
|
|||||||
Caveats when upgrading from earlier versions to 2.2.x
|
Caveats when upgrading from earlier versions to 2.2.x
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
|
||||||
|
- BibTeX errors are now processed and cause LyX to show the errors dialog.
|
||||||
|
Before, these errors were ignored, which means that it may happen that
|
||||||
|
documents that compiled without error with a previous version now
|
||||||
|
compile with error. However, because now in 2.2.x users can click on
|
||||||
|
the "Show Output Anyway" button, the document can still be viewed.
|
||||||
|
@ -140,10 +140,7 @@ public:
|
|||||||
///
|
///
|
||||||
NONZERO_ERROR = 32768, // the command exited with nonzero status
|
NONZERO_ERROR = 32768, // the command exited with nonzero status
|
||||||
///
|
///
|
||||||
//FIXME: BIBTEX_ERROR has been removed from ERRORS for now, since users were irritated
|
ERRORS = TEX_ERROR + LATEX_ERROR + NONZERO_ERROR + BIBTEX_ERROR,
|
||||||
// about those errors which prevented compilation of previously compiling documents.
|
|
||||||
// Think about a "gentle" transfer to BibTeX error reporting.
|
|
||||||
ERRORS = TEX_ERROR + LATEX_ERROR + NONZERO_ERROR,
|
|
||||||
///
|
///
|
||||||
WARNINGS = TEX_WARNING + LATEX_WARNING + PACKAGE_WARNING
|
WARNINGS = TEX_WARNING + LATEX_WARNING + PACKAGE_WARNING
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user