mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
A few modifications for next version.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@254 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d32a38cf85
commit
2f65de9f7d
11
ANNOUNCE
11
ANNOUNCE
@ -1,4 +1,4 @@
|
||||
Public release of LyX version 1.0.4
|
||||
Public release of LyX version 1.1.1
|
||||
===================================
|
||||
|
||||
What is LyX?
|
||||
@ -9,7 +9,7 @@ word processors, LyX encourages writing based on the structure of your
|
||||
documents, not their appearance, It lets you concentrate on writing,
|
||||
leaving details of visual layout to the software.
|
||||
|
||||
With the familiar face of a WSYWIG word processor, LyX produces high
|
||||
With the familiar face of a WISYWIG word processor, LyX produces high
|
||||
quality, professional output -- using LaTeX, an industrial
|
||||
strength typesetting engine. No knowledge of LaTeX is required to
|
||||
use LyX; however, there is also a "TeX mode" which allows you to enter
|
||||
@ -39,13 +39,6 @@ A very incomplete feature list:
|
||||
- extensive documentation, including a tutorial
|
||||
- version control using RCS
|
||||
|
||||
What's new compared to LyX version 0.12.0?
|
||||
------------------------------------------
|
||||
|
||||
Most importantly, import of LaTeX documents is possible if you have
|
||||
Perl installed. Other than that, some new features, and lots of bug
|
||||
fixes. See WHATSNEW
|
||||
|
||||
How stable is LyX?
|
||||
------------------
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
1999-10-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
|
||||
OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
|
||||
README and ANNOUNCE a bit for the next release. More work is
|
||||
needed, of course.
|
||||
|
||||
* src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
|
||||
unbreakable if we are in freespacing mode (LyX-Code), but not in
|
||||
latex mode.
|
||||
|
8
INSTALL
8
INSTALL
@ -34,7 +34,7 @@ You will need to have both an Xforms library and Xpm library to compile
|
||||
LyX. It is imperative that you have the correct versions of these
|
||||
libraries, and their associated header files.
|
||||
|
||||
As of LyX version 1.0.0, you will need to have Xforms library and header
|
||||
As of LyX version 1.1.1, you will need to have Xforms library and header
|
||||
version 0.81, 0.86, or 0.88. Version 0.88 is a stable release and the
|
||||
recommended version. On some systems, such as linux ELF, there are shared
|
||||
library versions of the Xforms library, which require an installation step
|
||||
@ -57,6 +57,12 @@ libXpm can be found at:
|
||||
http://www.funet.fi/pub/Linux/sunsite/X11/libs/!INDEX.html
|
||||
(or similar locations at other sunsites like sunsite.unc.edu)
|
||||
|
||||
You will also need a recent C++ compiler, where recent means that the
|
||||
compilers knows a bit about the C++ standard. Compilers that are known
|
||||
to compile LyX are gcc 2.8.1 and 2.95.x, the various versions of egcs
|
||||
and Digital C++ version 6.1. Please tell us your experience with other
|
||||
compilers.
|
||||
|
||||
If you compile LyX with gcc, you should not need to have libg++ installed
|
||||
on most systems. However, see the note in the section `Problems'.
|
||||
|
||||
|
@ -10,7 +10,7 @@ modified by Arnd Hanses <Arnd.H.Hanses@rz.ruhr-uni-bochum.de>
|
||||
|
||||
- For general information on LyX please refer to the generic
|
||||
README and README.OS2. For generic compilation instructions
|
||||
refer to INSTALL. WHATSNEW also contains important information.
|
||||
refer to INSTALL. NEWS also contains important information.
|
||||
|
||||
Thanks to all contributors to this piece of documentation,
|
||||
namely Mika Kristian Laitio <lamikr@cc.jyu.fi>.
|
||||
@ -426,7 +426,7 @@ Note3: As distributed, LyX expects to find
|
||||
|
||||
4) If updating make a backup of %HOME%\.lyx\lyxrc.defaults as it will
|
||||
be changed.
|
||||
Read README and WHATSNEW about updating and run
|
||||
Read README and NEWS about updating and run
|
||||
Options;Reconfigure as indicated.
|
||||
|
||||
5) Configure LyX for your system by executing
|
||||
@ -586,4 +586,4 @@ executable size far exceeds 70M unstripped due to template codes,
|
||||
for example.)
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -4,8 +4,8 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
|
||||
development/lyx.spec
|
||||
SUBDIRS = intl po src lib
|
||||
|
||||
EXTRA_DIST = ANNOUNCE CHANGES INSTALL.OS2 INSTALL.autoconf README.OS2 \
|
||||
UPGRADING WHATSNEW acconfig.h lyx.man \
|
||||
EXTRA_DIST = ANNOUNCE OLD-CHANGES INSTALL.OS2 INSTALL.autoconf README.OS2 \
|
||||
UPGRADING NEWS acconfig.h lyx.man \
|
||||
config development forms images
|
||||
ETAGS_ARGS = --c++
|
||||
man_MANS = lyx.1
|
||||
@ -21,4 +21,4 @@ dist-hook:
|
||||
rpmdist: dist
|
||||
ln -s images/lyx.xpm . ; \
|
||||
rpm -ta ${PACKAGE}-${VERSION}.tar.gz ; \
|
||||
rm lyx.xpm
|
||||
rm lyx.xpm
|
||||
|
@ -1,3 +1,27 @@
|
||||
What's new in LyX version 1.1.1?
|
||||
--------------------------------
|
||||
|
||||
LyX 1.1.1 marks an important change in our development scheme. While
|
||||
it does not have many new features, there have been many internal
|
||||
changes, many of which have been backported from our old development
|
||||
branch (which is now extinct). So while on the surface this version is
|
||||
very similar to version 1.0.4, many things happened under the hood. As
|
||||
a consequence of this: expect that some new bugs have crept in.
|
||||
|
||||
User visible changes in lyx 1.0.1:
|
||||
|
||||
- New export to HTML feature
|
||||
|
||||
- All the popups should be more resistant to resize actions.
|
||||
|
||||
- normal spaces are automatically made unbreakable if we are in
|
||||
a freespacing mode (LyX-Code), but not in latex mode. The rule used
|
||||
to be that spaces where changed when in typewriter font.
|
||||
|
||||
- the default encoding of a new document is now latin1, since it seems
|
||||
to be a reasonable default for many people. Note that you can
|
||||
override this default with the "Save layout as default" feature.
|
||||
|
||||
What's new in 1.0.4 compared to LyX version 1.0.3?
|
||||
--------------------------------------------------
|
||||
|
@ -1,5 +1,7 @@
|
||||
since 1.0.4
|
||||
- New feature: "File->Export->As HTML..." using tth (Asger)
|
||||
This files documents changes in LyX until version 1.0.4. Please read the
|
||||
file NEWS for information on new features in this LyX version. More details
|
||||
can be found in ChangeLog
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
since 1.0.4pre8
|
||||
- small fix to qoutes in DocBook. (Jose)
|
Loading…
Reference in New Issue
Block a user