]> git.lyx.org Git - features.git/log
features.git
2 years agoInclude docbook_copy.py in released tarball.
Pavel Sanda [Mon, 27 Sep 2021 20:07:07 +0000 (22:07 +0200)]
Include docbook_copy.py in released tarball.

2 years agoMake rectangles have pointy corners
Jean-Marc Lasgouttes [Mon, 27 Sep 2021 15:46:38 +0000 (17:46 +0200)]
Make rectangles have pointy corners

This only makes a difference in HiDpi mode.

Adaptation of the patch proposed by Daniel.

Fix for bug #12336.

2 years agoFixup 6bbd88ac: compilation fix for Qt4
Jean-Marc Lasgouttes [Mon, 27 Sep 2021 11:56:04 +0000 (13:56 +0200)]
Fixup 6bbd88ac: compilation fix for Qt4

2 years agoWhitespace
Jean-Marc Lasgouttes [Mon, 27 Sep 2021 09:53:46 +0000 (11:53 +0200)]
Whitespace

2 years agoDocBook copy: add links to bug reports.
Thibaut Cuvelier [Sun, 26 Sep 2021 23:46:01 +0000 (01:46 +0200)]
DocBook copy: add links to bug reports.

2 years agoDocBook copy: don't error if the file was already copied.
Thibaut Cuvelier [Sun, 26 Sep 2021 23:15:16 +0000 (01:15 +0200)]
DocBook copy: don't error if the file was already copied.

2 years agoDocBook copy: large refactoring to improve readability.
Thibaut Cuvelier [Sun, 26 Sep 2021 22:42:08 +0000 (00:42 +0200)]
DocBook copy: large refactoring to improve readability.

2 years agoDocBook: make LilyPond work more reliably.
Thibaut Cuvelier [Sun, 26 Sep 2021 22:39:10 +0000 (00:39 +0200)]
DocBook: make LilyPond work more reliably.

2 years agoDocBook: redirect LilyPond output to main LyX output to ease debugging.
Thibaut Cuvelier [Sun, 26 Sep 2021 19:13:17 +0000 (21:13 +0200)]
DocBook: redirect LilyPond output to main LyX output to ease debugging.

2 years agoDocBook: work around bug in LilyPond.
Thibaut Cuvelier [Sun, 26 Sep 2021 19:00:59 +0000 (21:00 +0200)]
DocBook: work around bug in LilyPond.

https://lists.gnu.org/archive/html/bug-lilypond/2021-09/msg00039.html

2 years agoDocBook: missing multicol test.
Thibaut Cuvelier [Sun, 26 Sep 2021 17:10:22 +0000 (19:10 +0200)]
DocBook: missing multicol test.

2 years agoDocBook: add the new script as DocBook copier.
Thibaut Cuvelier [Sun, 26 Sep 2021 17:10:13 +0000 (19:10 +0200)]
DocBook: add the new script as DocBook copier.

2 years agoDocBook: add script to start LilyPond on the generated file.
Thibaut Cuvelier [Sun, 26 Sep 2021 16:15:09 +0000 (18:15 +0200)]
DocBook: add script to start LilyPond on the generated file.

Not yet used anywhere in the code for now (see next commit).

2 years agoUnused code.
Thibaut Cuvelier [Sun, 26 Sep 2021 15:27:41 +0000 (17:27 +0200)]
Unused code.

2 years agoTypo.
Thibaut Cuvelier [Sun, 26 Sep 2021 15:25:28 +0000 (17:25 +0200)]
Typo.

2 years agoFix warning.
Jean-Marc Lasgouttes [Fri, 24 Sep 2021 16:45:08 +0000 (18:45 +0200)]
Fix warning.

2 years agoImprove (modestly) the performance of font metrics caches
Jean-Marc Lasgouttes [Fri, 24 Sep 2021 14:57:05 +0000 (16:57 +0200)]
Improve (modestly) the performance of font metrics caches

This fixes two performance issues and improves the performance of
TextMetrics::redoParagraph by 15% in a workload that uses the cache a
lot. The difference will be much less when the cache is not used much.

1/ repetion of the hash code computation

The code
  if (cache.contains(key))
   result = cache[key]:
is not efficient, since qHash(key) has to be computed twice.
To fix this a new Cache::object_str() method is added, which allows
  if (auto * obj = cache.object(key))
   result = *obj;

2/ code of has code computation

Instead of using a verbose string that is complicated to build as
key, new key structs BreakAtKey and TextLayoutKey are introduced,
along with the relevant qHash() implementation.

2 years agoFix bug #12373
Enrico Forestieri [Fri, 24 Sep 2021 08:15:58 +0000 (10:15 +0200)]
Fix bug #12373

Do not perform any autocorrection in the presence of a selection.

2 years agoAmend dca39815: Fix a few warnings in Floating.
Kornel Benko [Fri, 24 Sep 2021 08:08:02 +0000 (10:08 +0200)]
Amend dca39815: Fix a few warnings in Floating.

2 years agoFix a few warnings in Floating.
Thibaut Cuvelier [Thu, 23 Sep 2021 23:19:28 +0000 (01:19 +0200)]
Fix a few warnings in Floating.

2 years agoDocBook: add a LilyPond test.
Thibaut Cuvelier [Thu, 23 Sep 2021 22:43:32 +0000 (00:43 +0200)]
DocBook: add a LilyPond test.

2 years agoAmend 4fd6edf3
Thibaut Cuvelier [Thu, 23 Sep 2021 21:40:21 +0000 (23:40 +0200)]
Amend 4fd6edf3

Escape paths in the generated RC file.

2 years agoFind LilyPond on Windows too.
Thibaut Cuvelier [Thu, 23 Sep 2021 00:59:39 +0000 (02:59 +0200)]
Find LilyPond on Windows too.

The main problem is that, while lilypond.exe exists, there is not lilypond-book.exe: the previous calls always failed, even though the file was there, just not called the right way.

2 years agoCmake build: Unify use of sanitizer
Kornel Benko [Tue, 21 Sep 2021 09:27:13 +0000 (11:27 +0200)]
Cmake build: Unify use of sanitizer

The configuration variable is LYX_DEBUG_SANITIZE
which can have following values:
"NONE"
"ADDRESS" Use address sanitizer (previously used with the variable LYX_ASAN)
"UNSPECIFIED" Use unspecified sanitizer

2 years agoDocBook: add inner tags for layouts.
Thibaut Cuvelier [Mon, 20 Sep 2021 23:21:13 +0000 (01:21 +0200)]
DocBook: add inner tags for layouts.

This makes it possible to implement LilyPond as prescribed in https://lilypond.org/doc/v2.22/Documentation/usage/docbook.

2 years agoXML: add a check for a typical case in the xml name space.
Thibaut Cuvelier [Mon, 20 Sep 2021 23:18:10 +0000 (01:18 +0200)]
XML: add a check for a typical case in the xml name space.

IGNORE is a typical placeholder for tags that should not be output, along with NONE. At some point, we should check if both are required, or if NONE is enough…

2 years agoDocBook: start implementing LilyPond.
Thibaut Cuvelier [Mon, 20 Sep 2021 01:19:20 +0000 (03:19 +0200)]
DocBook: start implementing LilyPond.

All the changes that can be achieved without C++ code changes.

2 years agoComplete the FontTag typeinfo
Kornel Benko [Mon, 20 Sep 2021 09:52:16 +0000 (11:52 +0200)]
Complete the FontTag typeinfo

2 years agoDocBook: add more flexibility for floats.
Thibaut Cuvelier [Sun, 19 Sep 2021 22:06:20 +0000 (00:06 +0200)]
DocBook: add more flexibility for floats.

Intended to fix #12371.

2 years agoKill warning for uncovered code path.
Thibaut Cuvelier [Sun, 19 Sep 2021 18:10:51 +0000 (20:10 +0200)]
Kill warning for uncovered code path.

2 years ago#12247 disable Qt5 modifier hack for Qt-5.12 version or newer
Stephan Witt [Mon, 23 Aug 2021 12:44:36 +0000 (14:44 +0200)]
#12247 disable Qt5 modifier hack for Qt-5.12 version or newer

Initially Qt5 modifier handling was broken. Therefore a workaround was introduced.
This workaround broke the LyX modifier handling with swap of Command-Control-key disabled.
The change disables the hack to get the correct behavior in LyX.

2 years agoUpdate sk.po
Kornel Benko [Sat, 21 Aug 2021 19:29:25 +0000 (21:29 +0200)]
Update sk.po

2 years agode.po
Juergen Spitzmueller [Sat, 21 Aug 2021 13:28:16 +0000 (15:28 +0200)]
de.po

2 years agoFix debug output
Juergen Spitzmueller [Sat, 21 Aug 2021 13:19:30 +0000 (15:19 +0200)]
Fix debug output

2 years agoCorrect tooltip
Juergen Spitzmueller [Sat, 21 Aug 2021 13:19:07 +0000 (15:19 +0200)]
Correct tooltip

as advised by Scott

2 years agoRecheck whole buffer after word has been added to/removed from document dic.
Juergen Spitzmueller [Sat, 21 Aug 2021 13:18:30 +0000 (15:18 +0200)]
Recheck whole buffer after word has been added to/removed from document dic.

2 years agoxhtml Toc rendering seems bit too dense now.
Pavel Sanda [Mon, 2 Aug 2021 13:25:36 +0000 (15:25 +0200)]
xhtml Toc rendering seems bit too dense now.

2 years agoUpdate sk.po
Kornel Benko [Thu, 22 Jul 2021 15:04:25 +0000 (17:04 +0200)]
Update sk.po

2 years agoGive the user visible feedback when reconfiguring.
Pavel Sanda [Thu, 22 Jul 2021 12:30:08 +0000 (14:30 +0200)]
Give the user visible feedback when reconfiguring.

2 years agoCount the width of pilcrows indicating changed end-of-par
Jean-Marc Lasgouttes [Wed, 21 Jul 2021 09:24:45 +0000 (11:24 +0200)]
Count the width of pilcrows indicating changed end-of-par

This is related to #10357. The case of real end-of-par markers is
taken into account, but not "change" markers, which have been
introduced in 2.4.

2 years agoStandard proof layout does not have an end label
Jean-Marc Lasgouttes [Mon, 19 Jul 2021 10:36:34 +0000 (12:36 +0200)]
Standard proof layout does not have an end label

Most proof environment have a qed box at the end, but not this one.
This only changes screen rendering.

2 years agofind: auto-wrap by default
Scott Kostyshak [Wed, 2 Jun 2021 03:59:57 +0000 (23:59 -0400)]
find: auto-wrap by default

For ML discussion on this change of default, see here:

  https://www.mail-archive.com/search?l=mid&q=20210602042644.g3s42nbeevdujzb5%40tallinn

2 years agofind: give status message when auto-wrapping
Scott Kostyshak [Wed, 2 Jun 2021 03:59:50 +0000 (23:59 -0400)]
find: give status message when auto-wrapping

When auto-wrap is enabled, it is sometimes informative to know
when the search wraps.

A status message is consistent with LibreOffice and Vim.

2 years agorefactor: keep meaning of a variable consistent
Scott Kostyshak [Wed, 2 Jun 2021 03:59:40 +0000 (23:59 -0400)]
refactor: keep meaning of a variable consistent

We now use a new variable, "wrap", to track if a wrap should be
done, which is true either if "auto_wrap" is true or if the user
chooses to wrap in the dialog.

This preserves the meaning of the "auto_wrap" variable and also
removes the confusion of why the previous code of

  if (!auto_wrap) {
    ...
  }
  if (auto_wrap) {

did not use an "else" instead of the second "if".

No change in functionality.

2 years agoCorrect moc compiler version extractor regex for patch level greater 9.
Stephan Witt [Fri, 16 Jul 2021 16:12:33 +0000 (18:12 +0200)]
Correct moc compiler version extractor regex for patch level greater 9.

2 years agoUse a central typedef for vectors of WordLangTuple.
Stephan Witt [Fri, 16 Jul 2021 14:39:05 +0000 (16:39 +0200)]
Use a central typedef for vectors of WordLangTuple.

2 years agoCare for included hunspell library.
Stephan Witt [Fri, 16 Jul 2021 14:35:30 +0000 (16:35 +0200)]
Care for included hunspell library.

2 years agoWhitespace
Jean-Marc Lasgouttes [Tue, 13 Jul 2021 09:15:13 +0000 (11:15 +0200)]
Whitespace

2 years agoRevert "Add a move constructor to Inset"
Jean-Marc Lasgouttes [Mon, 12 Jul 2021 10:38:16 +0000 (12:38 +0200)]
Revert "Add a move constructor to Inset"

It does not compile :-p

This reverts commit 874928f4a4370d8b7b8092df33f4436a0f52e7f7.

2 years agoAdd a move constructor to Inset
Jean-Marc Lasgouttes [Mon, 12 Jul 2021 09:55:19 +0000 (11:55 +0200)]
Add a move constructor to Inset

Does not change much, but Coverity complains about it. Let's see if
this allows Inset's child classes to grow their own move constructor.

Also some whitespace.

2 years ago* lib/RELEASE-NOTES
Pavel Sanda [Sun, 11 Jul 2021 16:16:42 +0000 (18:16 +0200)]
* lib/RELEASE-NOTES

2 years agoProperly distribute metainfo.
Pavel Sanda [Sun, 11 Jul 2021 16:08:03 +0000 (18:08 +0200)]
Properly distribute metainfo.

2 years agoUpdate metainfo to newer format.
Pavel Sanda [Sun, 11 Jul 2021 02:15:55 +0000 (04:15 +0200)]
Update metainfo to newer format.

Used appstream form:
https://www.freedesktop.org/software/appstream/metainfocreator/#/guiapp

2 years agoRework display of numbers in margins of hull insets
Jean-Marc Lasgouttes [Thu, 1 Jul 2021 16:35:16 +0000 (18:35 +0200)]
Rework display of numbers in margins of hull insets

This requires the introduction of the booleans selected_left and
selected_right in PainterInfo. These tell whether the selection
continues at the left/right of the inset.

This information allows to

1/ paint equation number in the right color: either current text color
   or selection text color.

2/ before that, paint a small background rectangle of the correct color.

This allows to avoid painting a large rectangle of an arbitrary color
that was the cause of the bug.

Fixes bug #12319.

2 years agoReformat mangled filenames for (xhtml) export to have them sorted.
Pavel Sanda [Fri, 9 Jul 2021 12:32:36 +0000 (14:32 +0200)]
Reformat mangled filenames for (xhtml) export to have them sorted.

2 years ago Add hint about the need of Acrobat DC
jpc [Tue, 6 Jul 2021 16:51:30 +0000 (18:51 +0200)]
       Add hint about the need of Acrobat DC

3 years agoAlways remove selection after cursor up/down
Jean-Marc Lasgouttes [Tue, 29 Jun 2021 10:43:59 +0000 (12:43 +0200)]
Always remove selection after cursor up/down

When the cursor cannot move on cursor up/down, at least the selection
should be cleared (when not selecting).

To detect this, the method Cursor::upDownInText has been modified to
return true when cursor is at top/bottom of inset, but there is some
room above/below.

Moreover, introduce the functions LFUN_FINISHED_UP/DOWN, which is
dispatched at upper cursor level as long as no local movement is
possible. This allows to handle differently the original char moving
action and its consequences.

Fixes part of bug #12310.

3 years agoAlways remove selection after cursor left/right
Jean-Marc Lasgouttes [Fri, 18 Jun 2021 11:53:37 +0000 (13:53 +0200)]
Always remove selection after cursor left/right

Example: when a selection is set, a `Left' cursor movement would not
reset selection when the cursor was at the beginning of buffer.

To fix this, it is necessary, when cursor is in top-level text, to
avoid the mechnanism (undispatched cursor) that sends the action to the
upper level (necessary when the cursor leaves an inset).

The change is mechanical and is done for : char-backward,
char-forward, char-left, char-right, word-left, word-right, word-left,
word-right. It might be possible to factor this code a bit, but there
is no evident solution.

char-up/down are *not* handled at this point.

Fixes part of bug #12310.

3 years ago Update French translation of Linguistics manual
jpc [Mon, 28 Jun 2021 09:01:30 +0000 (11:01 +0200)]
       Update French translation of Linguistics manual

3 years ago Update fr.po
jpc [Mon, 28 Jun 2021 09:00:11 +0000 (11:00 +0200)]
         Update fr.po

3 years ago Update fr.po
jpc [Sat, 26 Jun 2021 16:24:56 +0000 (18:24 +0200)]
        Update fr.po

3 years agoFix reference to subequation documentation, #12316
Scott Kostyshak [Wed, 23 Jun 2021 01:18:18 +0000 (21:18 -0400)]
Fix reference to subequation documentation, #12316

The example file was incorporated into the Math manual at 3aa01442.

3 years agoUpdate Credits entry
Juergen Spitzmueller [Tue, 22 Jun 2021 05:48:15 +0000 (07:48 +0200)]
Update Credits entry

3 years agoctests-costs-benefits: add a "benefit" row
Scott Kostyshak [Mon, 21 Jun 2021 16:57:38 +0000 (12:57 -0400)]
ctests-costs-benefits: add a "benefit" row

The "benefit" row gives the amount of days in-between when an issue
is found because of the ctests and when an issue is reported by
someone not using the ctests. In the example of the ps2pdf flag, the
issue was reported just a couple of weeks after we found it with the
ctests, indicating that the ctests were not that helpful in this
case.

3 years agoctests: log a reported issue (the ps2pdf flag)
Scott Kostyshak [Mon, 21 Jun 2021 16:56:37 +0000 (12:56 -0400)]
ctests: log a reported issue (the ps2pdf flag)

We are still not sure how to fix things to make them more easy for
the user.

3 years agoctests: log a fixed LaTeX package issue (noweb)
Scott Kostyshak [Sun, 20 Jun 2021 04:05:42 +0000 (00:05 -0400)]
ctests: log a fixed LaTeX package issue (noweb)

3 years agoprevent Qt6 from defining UNICODE (Qt6.1.1 and upwards)
Eugene Chornyi [Sat, 19 Jun 2021 08:48:49 +0000 (10:48 +0200)]
prevent Qt6 from defining UNICODE (Qt6.1.1 and upwards)

3 years agoUse specialized WINAPI functions for specialized arguments
Eugene Chornyi [Sat, 19 Jun 2021 08:48:15 +0000 (10:48 +0200)]
Use specialized WINAPI functions for specialized arguments

3 years ago#12305 Correct typo in library name QtDBus - fatal error with case sensitive file...
Stephan Witt [Wed, 16 Jun 2021 05:45:20 +0000 (07:45 +0200)]
#12305 Correct typo in library name QtDBus - fatal error with case sensitive file systems

3 years agoFix configure with Qt 6.1
Enrico Forestieri [Tue, 15 Jun 2021 09:40:27 +0000 (11:40 +0200)]
Fix configure with Qt 6.1

Since Qt 6.1 the moc, rcc, and uic compilers are not installed
in the bin dir anymore. We ask qmake for their location and
record them with full path so that it is not necessary thinkering
with the PATH variable.

3 years agoImprove test in Geometry::covers
Jean-Marc Lasgouttes [Wed, 9 Jun 2021 13:59:28 +0000 (15:59 +0200)]
Improve test in Geometry::covers

Horizontally, the old code would count an extra pixel on the right.

The vertical test is not changed, and should be eventually audited.

Fixes bug #10468.

3 years agoAllow line inset to draw a vertical line.
Jean-Marc Lasgouttes [Mon, 14 Jun 2021 13:36:45 +0000 (15:36 +0200)]
Allow line inset to draw a vertical line.

Qpainter::drawline cannot draw a line which is thicker than it is long.
Draw a rectangle instead.

Fix bug #12307.

3 years ago Remove spurious parentheses due to \thanks code
jpc [Mon, 14 Jun 2021 13:29:11 +0000 (15:29 +0200)]
     Remove spurious parentheses due to \thanks code

         The LyX foonote inset was exported as a broken \thanks command
         Replaced by a LyX note

3 years agoCmake tests: Correct BATCH_compare-test test.
Kornel Benko [Sun, 13 Jun 2021 17:45:37 +0000 (19:45 +0200)]
Cmake tests: Correct BATCH_compare-test test.

Change due to recent addition of docbook settings in lyx-files.

3 years agoCmake tests: Correct BATCH_outline-beamer test
Kornel Benko [Sun, 13 Jun 2021 14:32:59 +0000 (16:32 +0200)]
Cmake tests: Correct BATCH_outline-beamer test

(Because the created tex-file got extra line)

3 years agoPowerdot.lyx: note the TL21 required ps2pdf flag
Scott Kostyshak [Sun, 13 Jun 2021 02:59:39 +0000 (22:59 -0400)]
Powerdot.lyx: note the TL21 required ps2pdf flag

See 70b89e70 and #12303.

3 years agoPowerdot.lyx: update format for next commit
Scott Kostyshak [Sun, 13 Jun 2021 02:58:45 +0000 (22:58 -0400)]
Powerdot.lyx: update format for next commit

3 years agoCleanup: fix comments, move declarations around
Jean-Marc Lasgouttes [Wed, 9 Jun 2021 13:49:01 +0000 (15:49 +0200)]
Cleanup: fix comments, move declarations around

3 years agoFixup f3a0e8ff: forgot to test in main dispatch
Jean-Marc Lasgouttes [Tue, 8 Jun 2021 11:55:37 +0000 (13:55 +0200)]
Fixup f3a0e8ff: forgot to test in main dispatch

I would probably have seen this missing bit if not for the bug fixed
since then at c9146e5b.

Fixes (again) bug #12074

3 years agoUpdate Russian documentation
Yuriy Skalko [Tue, 8 Jun 2021 11:58:44 +0000 (14:58 +0300)]
Update Russian documentation

3 years ago Fix LyX version number and translation info
jpc [Sat, 5 Jun 2021 16:15:19 +0000 (18:15 +0200)]
  Fix LyX version number and translation info

3 years ago Fix LyX version number
jpc [Sat, 5 Jun 2021 16:13:07 +0000 (18:13 +0200)]
          Fix LyX version number

3 years ago Fix inputencoding in French manuals
jpc [Fri, 4 Jun 2021 13:24:47 +0000 (15:24 +0200)]
           Fix inputencoding in French manuals

3 years agoFindAdv: Added handling of Thai characters
Kornel Benko [Fri, 4 Jun 2021 12:48:57 +0000 (14:48 +0200)]
FindAdv: Added handling of Thai characters

3 years ago Update French EmbeddedObjects manual for 2.4.0
jpc [Fri, 4 Jun 2021 11:34:33 +0000 (13:34 +0200)]
        Update French EmbeddedObjects manual for 2.4.0

3 years ago Minor fixes and a couple of enhancements for EmbeddedObjects manual
jpc [Fri, 4 Jun 2021 11:31:54 +0000 (13:31 +0200)]
        Minor fixes and a couple of enhancements for EmbeddedObjects manual

3 years agoAmend 357bc257, Typo: correct reference of script
Kornel Benko [Fri, 4 Jun 2021 08:51:48 +0000 (10:51 +0200)]
Amend 357bc257, Typo: correct reference of script

3 years agopt_BR.po: fix escaping of \alpha
Scott Kostyshak [Fri, 4 Jun 2021 03:33:41 +0000 (23:33 -0400)]
pt_BR.po: fix escaping of \alpha

3 years agoNoweb.lyx: correct reference of script
Scott Kostyshak [Thu, 3 Jun 2021 16:40:56 +0000 (12:40 -0400)]
Noweb.lyx: correct reference of script

Thanks to Kornel.

3 years agoUpdate lib/doc/LFUNs.lyx
Pavel Sanda [Thu, 3 Jun 2021 13:08:29 +0000 (15:08 +0200)]
Update lib/doc/LFUNs.lyx

3 years agoRevert part of 3f03f0a447e, whitespace on eolns is necessary.
Pavel Sanda [Thu, 3 Jun 2021 13:06:43 +0000 (15:06 +0200)]
Revert part of 3f03f0a447e, whitespace on eolns is necessary.

3 years agoNoweb.lyx: fix a few mistakes from old lyx2lyx
Scott Kostyshak [Thu, 3 Jun 2021 00:03:48 +0000 (20:03 -0400)]
Noweb.lyx: fix a few mistakes from old lyx2lyx

In fb034884 I made some manual changes to documents that weren't
correctly converted by lyx2lyx (from ERT to Chunk insets) but I left
a "@" inside a chunk, which ended it prematurely and caused
incorrect output.

This current commit also cleans up a few other things in the
document.

Thanks to Kornel for catching this.

3 years agoNoweb.lyx: update format for subsequent changes
Scott Kostyshak [Wed, 2 Jun 2021 23:55:40 +0000 (19:55 -0400)]
Noweb.lyx: update format for subsequent changes

3 years agopt_BR.po: update from Georger
Juergen Spitzmueller [Wed, 2 Jun 2021 15:49:48 +0000 (17:49 +0200)]
pt_BR.po: update from Georger

3 years ago Mark pieces of text as French + typos in fr.po
jpc [Tue, 1 Jun 2021 16:33:35 +0000 (18:33 +0200)]
       Mark pieces of text as French + typos in fr.po

3 years agoFixup 7e7f9eba: we only need one hasLimits() method
Jean-Marc Lasgouttes [Tue, 1 Jun 2021 14:12:46 +0000 (16:12 +0200)]
Fixup 7e7f9eba: we only need one hasLimits() method

Related to bug #12295.

3 years agoMathML: use the right has_limits_ in InsetMathScripts.
Thibaut Cuvelier [Mon, 31 May 2021 21:25:11 +0000 (23:25 +0200)]
MathML: use the right has_limits_ in InsetMathScripts.

Fixes #12295. Details in the ticket.

3 years ago Solve shortcut conflict
jpc [Mon, 31 May 2021 16:19:45 +0000 (18:19 +0200)]
        Solve shortcut conflict

3 years agoPrevent insets in table cells from expanding artificially to max width
Jean-Marc Lasgouttes [Tue, 14 Jul 2020 21:28:43 +0000 (23:28 +0200)]
Prevent insets in table cells from expanding artificially to max width

This replaces ad-hoc hacks and does a better job by propagating the
the tightness recursively.

Fixes bug #9363.

3 years agoCmake export tests: Select "-dALLOWPSTRANSPARENCY" flag for ps2pdf converter
Kornel Benko [Sun, 30 May 2021 18:24:42 +0000 (20:24 +0200)]
Cmake export tests: Select "-dALLOWPSTRANSPARENCY" flag for ps2pdf converter

Add parameter "-dALLOWPSTRANSPARENCY" for call to ps2pdf.
Used only in test environment.
The fix is proposed by Scott.

Here his comment:
        "Interestingly, the flag fixes the English Powerdot tests but not the
        French ones."