]> git.lyx.org Git - features.git/log
features.git
10 years agoUse a different naming scheme, per Enrico's suggestion.
Richard Heck [Wed, 4 Jun 2014 16:46:42 +0000 (12:46 -0400)]
Use a different naming scheme, per Enrico's suggestion.
(cherry picked from commit 533a05e0b8e3433cdea2c239700904406b9b683e)

10 years agoFlush stream more often to help figure out where the mystery crash
Richard Heck [Tue, 3 Jun 2014 17:35:18 +0000 (13:35 -0400)]
Flush stream more often to help figure out where the mystery crash
originates.
(cherry picked from commit 5536b0c7fef6115d82437285fd3e6b17ae9ccc39)

10 years agoUpdate ANNOUNCE file.
Richard Heck [Tue, 3 Jun 2014 15:59:55 +0000 (11:59 -0400)]
Update ANNOUNCE file.

10 years ago* sk.po
Kornel Benko [Wed, 4 Jun 2014 10:29:08 +0000 (12:29 +0200)]
* sk.po

10 years agoMake TextMetrics::editXY more robust
Jean-Marc Lasgouttes [Tue, 27 May 2014 13:14:14 +0000 (15:14 +0200)]
Make TextMetrics::editXY more robust

This fixes a crash in examples/fa/splash.lyx when selecting text
representing menu entries. This happens because menu names are in LTR
English, while the inset itself is in RTL.

The problem is that the current code relies on the fact that
 1. getColumnNearX and checkInsetHit share the same idea about cursor
    position.
 2. pos and pos + 1 are in general consecutive on screen.

It seems that 1. is wrong here (for reasons I did not try to
understand); the second assumption is definitely false with
bi-directional text. This makes editXY very fragile.

The new code should be more robust in this respect. The logic is:
 * if checkInsetHit finds an inset, use its position,
 * otherwise, ask getColumnNearX for the cursor position.

Fixes: #9142
10 years agode.po: update
Juergen Spitzmueller [Wed, 4 Jun 2014 08:39:14 +0000 (10:39 +0200)]
de.po: update

10 years agofr.po: updates for 2.1.1 from Jean-Pierre
Uwe Stöhr [Wed, 4 Jun 2014 00:52:44 +0000 (02:52 +0200)]
fr.po: updates for 2.1.1 from Jean-Pierre

10 years agoPer a suggestion of JMarc's, first write the saved file to a
Richard Heck [Tue, 3 Jun 2014 14:42:07 +0000 (10:42 -0400)]
Per a suggestion of JMarc's, first write the saved file to a
temporary name, then move it to its real location if we succeed.
This prevents our over-writing the existing file with a corrupt
one.
(cherry picked from commit 10364082c8351b0f4a258699742370195aadde6b)

10 years agoCopy over changes to lyx2lyx made in master. Unfortunately, some of
Richard Heck [Thu, 29 May 2014 22:17:08 +0000 (18:17 -0400)]
Copy over changes to lyx2lyx made in master. Unfortunately, some of
these got committed to stable and some did not, and now it is all but
impossible (I've tried) to do this by cherry-picking.

10 years agoFix reversion of box insets.
Enrico Forestieri [Thu, 29 May 2014 08:44:02 +0000 (10:44 +0200)]
Fix reversion of box insets.
(cherry picked from commit da75d3194824c87e2b2fc92fa4644e080aeaf962)

10 years agoDo not corrupt documents without newline at EOF
Georg Baum [Thu, 29 May 2014 11:15:07 +0000 (13:15 +0200)]
Do not corrupt documents without newline at EOF

trim_eol() assumes that a line always ends either with \n, \r, or \r\n.
This assumption is always valid except for the last line of a document, since it
may miss the trailing newline. LyX does not create such documents, bu they may
result from automatic creation tools, and LyX can read them, so lyx2lyx should
be able to read them as well.
(cherry picked from commit c75c6e446a8bc0dbaabaf156c0abfd622c050129)

Fix the fix

MAC-style (pre-OS X) line ends were not recognized anymore
(cherry picked from commit 55af9cb006563032e35fcc8bc5c8c1284c0344da)

10 years agoAvoid processing multiple times the same paragraph when converting latex arguments.
Enrico Forestieri [Thu, 29 May 2014 09:05:34 +0000 (11:05 +0200)]
Avoid processing multiple times the same paragraph when converting latex arguments.
(cherry picked from commit 00802019771bd1b9779d3b39899089abfc38201f)

10 years agoFix an off-by-one error in the reversion of beamer documents.
Enrico Forestieri [Thu, 29 May 2014 08:55:30 +0000 (10:55 +0200)]
Fix an off-by-one error in the reversion of beamer documents.
(cherry picked from commit dbd4d781dcbe73d347a76fed9ca51faf2841e133)

10 years agoFix indentation of paragraphs after an environment.
Enrico Forestieri [Wed, 28 May 2014 20:16:40 +0000 (22:16 +0200)]
Fix indentation of paragraphs after an environment.

When deciding whether a paragraph should be indented or not, LyX
only takes into account default layouts. This is wrong, because
an environment could be nested into another one and thus a following
paragraph would not be "default". With this patch all paragraphs
after an environment are correctly indented, independently of
whether their layouts are "default" or not.
The latex output (which was modeled following the previous wrong
assumption) is also correspondingly adapted.

No status line needed as this is the completion of previous patches.

10 years agoFix another glitch with on-screen indentation.
Enrico Forestieri [Sat, 24 May 2014 00:12:56 +0000 (02:12 +0200)]
Fix another glitch with on-screen indentation.

If a new paragraph is created just before a nested environment,
the indentation of the nested environment is not computed
correctly because the parindent of the previous layout would
also be erroneously taken into account. This would cause the
nested environment to move back and forth when something is
added to the new paragraph.

A proper status line covering this change is already present.

10 years agoImprove the fix for #9131. We were previously counting passes
Richard Heck [Fri, 23 May 2014 15:19:14 +0000 (11:19 -0400)]
Improve the fix for #9131. We were previously counting passes
through this routine, which means: one for every character, more
or less. So long strings would hit the "recursion limit". But what
we are worried about is an infinite loop caused by misues of macros,
so that is what we need to count.

10 years agoFix bug #9131 for stable branch. The real problem lies
Richard Heck [Fri, 23 May 2014 14:59:12 +0000 (10:59 -0400)]
Fix bug #9131 for stable branch. The real problem lies
elsewhere, but it will require major surgery and, more
importantly, a file format change.

10 years agoFix another crash similar to #9030
Georg Baum [Thu, 22 May 2014 20:04:09 +0000 (22:04 +0200)]
Fix another crash similar to #9030

This one occured after the fix for bug #9030 if the cursor is in a math inset
and the edit menu is opened.

10 years agoFix wrong indentation on screen.
Enrico Forestieri [Wed, 21 May 2014 21:59:53 +0000 (23:59 +0200)]
Fix wrong indentation on screen.

LyX fails to indent on screen a standard paragraph when it is
nested into an environment. The fix is a one-liner but the diff
is larger because it also fixes a previous wrong indentantion
in the source ;)

No status line needed because this is an extension of f5a246b1.

10 years ago* Additional.lyx - note for windows git users.
Pavel Sanda [Wed, 21 May 2014 18:06:52 +0000 (11:06 -0700)]
* Additional.lyx - note for windows git users.

https://www.mail-archive.com/lyx-users%40lists.lyx.org/msg98988.html

10 years agoOutput arguments required by arguments with default or preset arg
Juergen Spitzmueller [Wed, 21 May 2014 11:12:14 +0000 (13:12 +0200)]
Output arguments required by arguments with default or preset arg

Fixes: #9128
10 years agoFix nesting in some beamer reversion methods.
Juergen Spitzmueller [Wed, 21 May 2014 09:37:51 +0000 (11:37 +0200)]
Fix nesting in some beamer reversion methods.

Patch by Enrico

10 years agoFix reversion of beamer overprint when a nested paragraph has an argument
Juergen Spitzmueller [Wed, 21 May 2014 09:36:47 +0000 (11:36 +0200)]
Fix reversion of beamer overprint when a nested paragraph has an argument

10 years agoUgly fix for bug #9102
Georg Baum [Mon, 19 May 2014 19:50:34 +0000 (21:50 +0200)]
Ugly fix for bug #9102

The real problem is the encoding of latex_language: It is hardcoded to latin1,
but InsetListig uses the currently active encoding. Therefore, we cannot tell
whether any given character wil be encodable or not, and we should not prevent
non-ACII characters.
In the future, we need to make the encoding of latex_language dynamic, so that
it always represents the currently active encoding. Then, we could do the
correct check both for listings and ERT. For now, I simply disabled the
encoding check for listings, which also means that bug 9012 might occur in
other cases for listings, but this is less important than bug 9102.

10 years agoFix crash when right-clicking into an inset with more paragraphs than the main text.
Juergen Spitzmueller [Sun, 18 May 2014 16:08:43 +0000 (18:08 +0200)]
Fix crash when right-clicking into an inset with more paragraphs than the main text.

Fixes: #9123.
10 years agoAdd limits to searches in convert_TeX_brace_to_Argument.
Richard Heck [Thu, 15 May 2014 13:35:05 +0000 (09:35 -0400)]
Add limits to searches in convert_TeX_brace_to_Argument.
(cherry picked from commit eb26d85dc9622012b52c58b5cebb2921cf27f8dd)

10 years agoAdapt output to the on-screen representation.
Enrico Forestieri [Sat, 17 May 2014 20:05:07 +0000 (22:05 +0200)]
Adapt output to the on-screen representation.

LyX assumes that a standard paragraph following a layout with
NextNoIndent==false has to be indented on screen, so output the
necessary blank line to make it so also in the output.

10 years agoFix an on-screen representation glitch.
Enrico Forestieri [Fri, 16 May 2014 19:58:21 +0000 (21:58 +0200)]
Fix an on-screen representation glitch.

If a layout has NextNoIndent set to true, the following paragraph
is not indented on screen. LyX checks the previous layout for that
style parameter to decide whether to indent or not. Of course,
what matters is the latex output and the on-screen representation
should match this output. Now, when a layout has NextNoIndent==true,
the latex output is correctly not indented, while the on-screen
representation may fail to match this output. This can occur when,
for example, a standard paragraph is nested in the previous layout,
because LyX would check the property of the nested layout instead
of the container layout. Thus, LyX should check the property of a
previous layout at the same depth for correctly deciding whether
a paragraph has to be indented or not.
See also http://www.lyx.org/trac/ticket/9055#comment:12 for an
example document where the previous scenario actually occurs.

10 years agoFix bug #9112: There is a test here that seems intended to catch the
Richard Heck [Thu, 8 May 2014 22:19:55 +0000 (18:19 -0400)]
Fix bug #9112: There is a test here that seems intended to catch the
case where there are unbalanced braces, but it comes too late. In that
case, we try to check cmd[docstring::npos] and crash.
(cherry picked from commit 6b0a8fbc9614433e7db4e6f994fd62886da8b8eb)

10 years agoBeamer block conversion: consider ERT arguments with leading/trailing blanks
Juergen Spitzmueller [Thu, 8 May 2014 17:52:01 +0000 (19:52 +0200)]
Beamer block conversion: consider ERT arguments with leading/trailing blanks

Should also go to branch.

10 years agoMonolingualization
Juergen Spitzmueller [Thu, 8 May 2014 06:36:38 +0000 (08:36 +0200)]
Monolingualization

10 years agoFix problem with drawing of math backround with selections.
Enrico Forestieri [Wed, 7 May 2014 18:18:14 +0000 (14:18 -0400)]
Fix problem with drawing of math backround with selections.
(cherry picked from commit 3e681bea4fa3f0d24016187d9778ab8344b93592)

10 years agoStabilize mouse selection in mathed
Juergen Spitzmueller [Tue, 6 May 2014 14:12:45 +0000 (16:12 +0200)]
Stabilize mouse selection in mathed

Fixes: #9074
10 years agoTurn an error message into a Debug::LOCALE warning
Jean-Marc Lasgouttes [Tue, 6 May 2014 12:29:42 +0000 (14:29 +0200)]
Turn an error message into a Debug::LOCALE warning

10 years agoFix View Source size
Juergen Spitzmueller [Fri, 2 May 2014 09:03:32 +0000 (11:03 +0200)]
Fix View Source size

Fixes: #9084.
10 years agoForgot status
Georg Baum [Thu, 1 May 2014 11:53:17 +0000 (13:53 +0200)]
Forgot status

10 years agoFix table rotate conversion to 2.0 format
Georg Baum [Thu, 1 May 2014 11:48:44 +0000 (13:48 +0200)]
Fix table rotate conversion to 2.0 format

The old code did create invalid documents, since the space between the rotate
flag dn the previous flag was removed.

10 years agoStatus update
Juergen Spitzmueller [Wed, 30 Apr 2014 14:06:27 +0000 (16:06 +0200)]
Status update

10 years agolyx_pot.py: Do not strip blanks in HelpText.
Juergen Spitzmueller [Tue, 22 Apr 2014 08:35:20 +0000 (10:35 +0200)]
lyx_pot.py: Do not strip blanks in HelpText.

This fixes a thinko introduced in [c5ef7cfc/lyxgit]

Fixes: #9054.
10 years agoDo not write an empty default_otf_view_format.
Juergen Spitzmueller [Mon, 28 Apr 2014 12:59:03 +0000 (14:59 +0200)]
Do not write an empty default_otf_view_format.

Fixes: #9100.
10 years agostatus.21x: move an entry to the correct position
Uwe Stöhr [Tue, 29 Apr 2014 20:27:51 +0000 (22:27 +0200)]
status.21x: move an entry to the correct position

10 years agoCREDITS: add Min Ding and Roy Xia
Uwe Stöhr [Mon, 28 Apr 2014 20:55:09 +0000 (22:55 +0200)]
CREDITS: add Min Ding and Roy Xia

10 years agoMerge branch '2.1.x' of git.lyx.org:lyx into 2.1.x
Uwe Stöhr [Mon, 28 Apr 2014 20:27:19 +0000 (22:27 +0200)]
Merge branch '2.1.x' of git.lyx.org:lyx into 2.1.x

10 years agozh_CN.po: updates from Min Ding
Uwe Stöhr [Mon, 28 Apr 2014 20:26:59 +0000 (22:26 +0200)]
zh_CN.po: updates from Min Ding

10 years agoFix lyx2lyx math package defaults (bug #9069)
Georg Baum [Sun, 27 Apr 2014 16:09:29 +0000 (18:09 +0200)]
Fix lyx2lyx math package defaults (bug #9069)

lyx2lyx sets all new math packages to off when converting from old formats.
This is correct if any command which would cause an automatic package loading
exists in the document. However, it is wrong if no command exists: This leads
to problems if later a command is added (bug #9069), which is especially
annoying for templates.
The fix consists of two parts:
1) convert_use_package() considers now the used commands like
   revert_use_package(), and uses them to decide whether to set the package to
   auto or off.
2) convert_undertilde() and revert_undertilde() use a slightly adjusted copy of
   convert_use_package() and revert_use_package(), so that the bug is also
   fixed for undertilde. We cannot use the latter functions directly, because
   of "\usepackage undertilde" vs. "\use_undertilde".

10 years agoFix math package conversion to 2.0 format
Georg Baum [Sun, 27 Apr 2014 16:08:24 +0000 (18:08 +0200)]
Fix math package conversion to 2.0 format

When doing the lyx2lyx round trip of the 2.0.8 user guide from format
413 -> 474 -> 413 you get an invalid document, because the math packages
mhchem and undertilde are incorrectly converted.
It turned out that the old reversion code did only work for particular
package oderings. The new one works for abitrary sorted packages.

10 years agoFix data loss in user guide conversion to 2.0.x
Georg Baum [Sun, 27 Apr 2014 16:06:34 +0000 (18:06 +0200)]
Fix data loss in user guide conversion to 2.0.x

When doing the lyx2lyx round trip of the 2.0.8 user guide from format
413 -> 474 -> 413 you do not get a zero diff. The most important problem is
caused by the conversion of the argument insets to the old syntax: This
conversion adds an additional empty line (harmless), and it destroys the
document structure if the first inset in e.g. a subsection is not an argument
inset, but e.g. an index or label inset.
The fix is quite easy: Ensure that the paragraph begin is set to the first
argument inset.

10 years agoFix warning in lyx2lyx 2.0<->2.1 round trip
Georg Baum [Sun, 27 Apr 2014 16:04:40 +0000 (18:04 +0200)]
Fix warning in lyx2lyx 2.0<->2.1 round trip

revert_justification() issues a warning if the \justification parameter does
not exist, and LyX itself always writes it unconditionally as well, so add it
also in lyx2lyx when converting old documents.
Currently this does not have any user visible effect, but it decouples the
default value of BufferParams::justification from the conversion of old
documents: Now it is possible to set the default to false in LyX, and old
documents will still be converted correctly.

10 years agoREADME.localization: add info
Uwe Stöhr [Sun, 27 Apr 2014 15:27:35 +0000 (17:27 +0200)]
README.localization: add info

10 years agoFrench doc files: translations by Jean-Pierre
Uwe Stöhr [Sun, 27 Apr 2014 15:26:27 +0000 (17:26 +0200)]
French doc files: translations by Jean-Pierre

10 years agoFix conversion of beamer block titles that end with a non-ERT inset.
Juergen Spitzmueller [Sun, 27 Apr 2014 07:44:43 +0000 (09:44 +0200)]
Fix conversion of beamer block titles that end with a non-ERT inset.

10 years agoFix failure to detect quoted flex insets in conversion to layout
Richard Heck [Fri, 25 Apr 2014 21:17:10 +0000 (17:17 -0400)]
Fix failure to detect quoted flex insets in conversion to layout
48. Also, simplify this code.
(cherry picked from commit 7e1541dd49c4c85fb43f6ff72b6f2e7f4efb5c9a)

10 years agoUpdate it.po
Enrico Forestieri [Wed, 23 Apr 2014 23:07:29 +0000 (01:07 +0200)]
Update it.po

10 years agoUpdate it.po
Enrico Forestieri [Wed, 23 Apr 2014 23:05:13 +0000 (01:05 +0200)]
Update it.po

10 years agoTypo
Scott Kostyshak [Tue, 22 Apr 2014 18:36:14 +0000 (14:36 -0400)]
Typo

10 years agoDo not spellcheck "code" in logical markup module
Scott Kostyshak [Tue, 22 Apr 2014 07:28:49 +0000 (03:28 -0400)]
Do not spellcheck "code" in logical markup module

10 years agoBibtopic requires styles files to be passed via argument
Juergen Spitzmueller [Tue, 22 Apr 2014 07:32:48 +0000 (09:32 +0200)]
Bibtopic requires styles files to be passed via argument

Fixes: #9060
10 years agode.po: update
Juergen Spitzmueller [Mon, 21 Apr 2014 10:19:29 +0000 (12:19 +0200)]
de.po: update

10 years agoRespect group integrity when removing stuff from the Undo stack.
Jean-Marc Lasgouttes [Mon, 7 Apr 2014 14:46:47 +0000 (16:46 +0200)]
Respect group integrity when removing stuff from the Undo stack.

Fixes: #9079
10 years ago* layouttranslations.review zh_CN checked.
Pavel Sanda [Sat, 19 Apr 2014 17:29:53 +0000 (10:29 -0700)]
* layouttranslations.review zh_CN checked.

https://www.mail-archive.com/lyx-users@lists.lyx.org/msg98644.html

10 years agoFix man page, patch from Prannoy Pilligundla.
Pavel Sanda [Sat, 19 Apr 2014 17:24:49 +0000 (10:24 -0700)]
Fix man page, patch from Prannoy Pilligundla.

10 years agoUpdate update-po script for new gmo generation.
Richard Heck [Sat, 19 Apr 2014 16:03:59 +0000 (12:03 -0400)]
Update update-po script for new gmo generation.

10 years agoRemerge strings.
Richard Heck [Sat, 19 Apr 2014 15:59:16 +0000 (11:59 -0400)]
Remerge strings.

10 years ago* sk.po
Kornel Benko [Sat, 19 Apr 2014 07:44:41 +0000 (09:44 +0200)]
* sk.po

10 years agoApparently, documentation changes were already in current master,
Richard Heck [Fri, 18 Apr 2014 15:16:52 +0000 (11:16 -0400)]
Apparently, documentation changes were already in current master,
so the previous set of commits over-wrote some of what was there.
This restores the status quo ante.

10 years agoMerge branch '2.1.1-staging' into 2.1.x
Richard Heck [Fri, 18 Apr 2014 15:08:31 +0000 (11:08 -0400)]
Merge branch '2.1.1-staging' into 2.1.x

Conflicts:
lib/doc/es/EmbeddedObjects.lyx
lib/doc/es/UserGuide.lyx
lib/doc/fr/EmbeddedObjects.lyx
lib/doc/ja/EmbeddedObjects.lyx
lib/doc/ja/Intro.lyx
lib/doc/ja/Math.lyx
lib/doc/ja/Tutorial.lyx
lib/doc/ja/UserGuide.lyx
po/ja.po
src/mathed/InsetMathNest.cpp

10 years agoUserGuide.lyx: describe the last missing new feature of LyX 2.1
Uwe Stöhr [Wed, 26 Mar 2014 04:29:04 +0000 (05:29 +0100)]
UserGuide.lyx: describe the last missing new feature of LyX 2.1

10 years agoUserGuide.lyx: update appendix C (lyX preferences)
Uwe Stöhr [Mon, 24 Mar 2014 00:10:53 +0000 (01:10 +0100)]
UserGuide.lyx: update appendix C (lyX preferences)

the only missing thing is the feature of the default length unit in the Language settings

10 years agoUserGuide.lyx: update appendix B for LyX 2.1.0
Uwe Stöhr [Sun, 23 Mar 2014 19:57:06 +0000 (20:57 +0100)]
UserGuide.lyx: update appendix B for LyX 2.1.0

10 years agoja.po: update by Koji
Uwe Stöhr [Sun, 23 Mar 2014 14:11:09 +0000 (15:11 +0100)]
ja.po: update by Koji

10 years agoJapanese doc files: update form Koji for LyX 2.1
Uwe Stöhr [Sun, 23 Mar 2014 01:53:39 +0000 (02:53 +0100)]
Japanese doc files: update form Koji for LyX 2.1

10 years agoCmake build: Assign package name dynamically
Kornel Benko [Tue, 8 Apr 2014 09:33:26 +0000 (11:33 +0200)]
Cmake build: Assign package name dynamically

This enables to install different lyx-versions simultaneously via
the package manager.

10 years agoDo not substract cursors pos from two different cells (fix assertion while doing...
Juergen Spitzmueller [Mon, 31 Mar 2014 16:33:53 +0000 (18:33 +0200)]
Do not substract cursors pos from two different cells (fix assertion while doing adv search)

Fixes: #7944.(cherry picked from commit f6138ed02f47b8bbe65d3245f9e92686dc24296c)
10 years agoFix oversight in autotools packaging selection
Jean-Marc Lasgouttes [Thu, 27 Mar 2014 12:51:25 +0000 (13:51 +0100)]
Fix oversight in autotools packaging selection

The only consequence of this thinko is that the lyx.desktop and the svg icons were installed on Mac OS and Windows platform, whereas they are useless.

10 years agoIf this test fails, then we are about to crash, because we are about
Richard Heck [Fri, 28 Mar 2014 18:47:54 +0000 (14:47 -0400)]
If this test fails, then we are about to crash, because we are about
to try to access whichever thing we did not find. So do an emergency
close of this Buffer.
(cherry picked from commit 5e557e7f7688e4af5bbecc49f3f7dda80afde44e)

10 years agoTypos in algorithm module.
Richard Heck [Wed, 26 Mar 2014 19:53:15 +0000 (15:53 -0400)]
Typos in algorithm module.
(cherry picked from commit 9d77d373fcaa147c37378ca26899eac042e1c8ac)

10 years agoDo not store Languages objects in completion words lists
Jean-Marc Lasgouttes [Fri, 21 Mar 2014 11:24:47 +0000 (12:24 +0100)]
Do not store Languages objects in completion words lists

In the current code each paragraph contains a map<Language,
WordList*>, which means that it contains a full copy of the language
object. Since these objects contain translation tables nowadays, this
is a very bad idea.

This patch simply replaces the Language key by a string.

When loading the Userguide on linux/x86_64, the total memory
consumption decreases from 36.27MB to 31.50MB.

10 years agoIn Paragraph::changeCase, correctly track the font of the changed characters (fix...
Juergen Spitzmueller [Mon, 24 Mar 2014 08:15:00 +0000 (09:15 +0100)]
In Paragraph::changeCase, correctly track the font of the changed characters (fix crash)

Fixes: #7943
10 years agoDo not allow the manual insertion of a directory (without filename) into the import...
Juergen Spitzmueller [Sun, 23 Mar 2014 12:31:21 +0000 (13:31 +0100)]
Do not allow the manual insertion of a directory (without filename) into the import dialog and thus prevent an assertion.

Fixes: #7437(cherry picked from commit afd897029917a083fbeb84cccd4e6cb0a21db7ed)
10 years agostdmenus.inc: add move rows/columns feature to Edit menu
Uwe Stöhr [Sun, 23 Mar 2014 14:25:59 +0000 (15:25 +0100)]
stdmenus.inc: add move rows/columns feature to Edit menu

fixes bug #9047

10 years agoFix problem with python and change of PATH
Benjamin Piwowarski [Fri, 14 Mar 2014 10:48:40 +0000 (11:48 +0100)]
Fix problem with python and change of PATH

- waits that lyxrc has been read before finding python
- when the PATH changes, resets the value
- updated status.21x

10 years agostyle
Juergen Spitzmueller [Sat, 22 Mar 2014 11:22:41 +0000 (12:22 +0100)]
style

10 years agoFix assertion when ChkTeX hit math.
Juergen Spitzmueller [Sat, 22 Mar 2014 11:09:18 +0000 (12:09 +0100)]
Fix assertion when ChkTeX hit math.

The problem here was that we used texted-only methods (via paragraph()), which triggered the assertion as soon as we were inside math.

Fixes: #8798
10 years agoDo not crash when entering math in ct mode with merge dialog open.
Juergen Spitzmueller [Sun, 23 Mar 2014 08:52:32 +0000 (09:52 +0100)]
Do not crash when entering math in ct mode with merge dialog open.

Fixes: #7685.
10 years ago\lyxdeleted uses an ulem command.
Juergen Spitzmueller [Sat, 22 Mar 2014 11:27:46 +0000 (12:27 +0100)]
\lyxdeleted uses an ulem command.

Therefore we need to put \cite and \ref into \mboxes, as in our native ulem commands.

Fixes: #8806.
10 years agoulem commands can be nested.
Juergen Spitzmueller [Sat, 22 Mar 2014 11:25:25 +0000 (12:25 +0100)]
ulem commands can be nested.

10 years agoFix selection drawing after mouse-double/triple in mathed
Juergen Spitzmueller [Fri, 21 Mar 2014 09:20:12 +0000 (10:20 +0100)]
Fix selection drawing after mouse-double/triple in mathed

Fixes: #8829
10 years agoInsetListings: Rewrite C-ism in C++ and fix terminator bug.
Juergen Spitzmueller [Sat, 22 Mar 2014 11:02:21 +0000 (12:02 +0100)]
InsetListings: Rewrite C-ism in C++ and fix terminator bug.

The rewriting is completely done by JMarc. The terminator bug fix has been added to that by me.

Fixes: #8985
10 years agoFocus on buffer after section select in Outliner
Scott Kostyshak [Fri, 21 Mar 2014 23:34:46 +0000 (19:34 -0400)]
Focus on buffer after section select in Outliner

10 years agoFix section-select when issued from outliner
Juergen Spitzmueller [Fri, 21 Mar 2014 09:21:18 +0000 (10:21 +0100)]
Fix section-select when issued from outliner

Fixes: #8936
10 years agoEmbeddedObjects.lyx, UserGuide.lyx: describe feature to move table rows/columns
Uwe Stöhr [Sun, 23 Mar 2014 04:23:15 +0000 (05:23 +0100)]
EmbeddedObjects.lyx, UserGuide.lyx: describe feature to move table rows/columns

the Japanese docs will be updated later because Koji is currently working on it

10 years agoPrefCompletionUi.ui: change label and add tooltip for word length settings
Uwe Stöhr [Sun, 23 Mar 2014 01:59:06 +0000 (02:59 +0100)]
PrefCompletionUi.ui: change label and add tooltip for word length settings

as discussed on the list with Richard

10 years agoStart 2.1.1 development.
Richard Heck [Fri, 18 Apr 2014 14:27:10 +0000 (10:27 -0400)]
Start 2.1.1 development.

10 years agoThis is LyX 2.1.0. 2.1.0
Vincent van Ravesteijn [Sun, 13 Apr 2014 14:31:16 +0000 (16:31 +0200)]
This is LyX 2.1.0.

10 years agoUpdate po/gmo files
Vincent van Ravesteijn [Sun, 13 Apr 2014 17:22:32 +0000 (19:22 +0200)]
Update po/gmo files

10 years ago* ja.po: Fix Graph strings
Vincent van Ravesteijn [Sun, 13 Apr 2014 17:17:27 +0000 (19:17 +0200)]
* ja.po: Fix Graph strings

10 years ago* doc/ja: Updates from Koji Yokota
Vincent van Ravesteijn [Sun, 13 Apr 2014 16:36:43 +0000 (18:36 +0200)]
* doc/ja: Updates from Koji Yokota

10 years ago* ja.po: Update from Koji Yokota
Vincent van Ravesteijn [Sun, 13 Apr 2014 16:07:27 +0000 (18:07 +0200)]
* ja.po: Update from Koji Yokota

10 years agoINSTALL: Update INSTALL
Vincent van Ravesteijn [Sun, 13 Apr 2014 14:10:57 +0000 (16:10 +0200)]
INSTALL: Update INSTALL

- adjust the supported versions for autotools
- add a note about the adviced Qt version
- remove gettext as a hard requirement and adjust the note

10 years agoRevert "Update INSTALL"
Vincent van Ravesteijn [Sat, 12 Apr 2014 12:01:11 +0000 (14:01 +0200)]
Revert "Update INSTALL"

This reverts commit 30d1cf47c18bf938e6be3e3fd45a3115cff435c1.