mirmon 2.10 -- 15 augustus 2014
o Probe only one site-url with "mirmon -get url site-url".
----------------------------------------------------------------------
mirmon 2.9 -- 13 augustus 2013
o Added a LICENSE file, requested by fedora packagers.
From the web page: http://www.brain-dump.org/projects/dvtm/
dvtm-0.13 released (15.11.2014)
------------------------------
Changes include:
* rewritten copy mode as an external process
Upon MOD+e dvtm pipes the whole screen buffer content to $EDITOR.
Whatever the editor writes to stdout will be stored in an internal
dvtm register for later pasting with MOD+p.
This only works if your editor of choice is usable as a filter i.e:
echo Hello World | $EDITOR - | cat
An alternative editor to use can be set with the environment variable
$DVTM_EDITOR. Instructions for the intended usage together with vis
can be found at:
http://lists.suckless.org/dev/1411/23973.html
* tagging concept working the same as in dwm. Current key bindings are
as follows:
Mod-F[1..n]
Mod-v-[1..n]
View all windows with nth tag.
Mod-0 View all windows with any tag.
Mod-v-Tab
Toggles to the previously selected tags.
Mod-V-[1..n]
Add/remove all windows with nth tag to/from the view.
Mod-t-[1..n]
Apply nth tag to focused window.
Mod-T-[1..n]
Add/remove nth tag to/from focused window.
The default configuration sets up five different tags (1-5).
* rudimentarily sanitize $SHELL such that SHELL=dvtm dvtm is no longer
a fork bomb.
* more flexible key binding configuration including the possibility
to specify key bindings involving 3 subsequent symbols.
* unified drawing of minimized windows always on the last screen line.
Previously the arrangement of those minimized windows was done by the
individual layouts.
* use of pselect(2) instead of select(2) in order to fix a race condition.
* cleanups and comments for the terminal emulation code (vt.[ch]).
This is also in preparation for eventual use in vis.
Support for italic attributes and terminfo entries ({r,s}itm).
Recognize '\033];title\007' as title changing sequence.
* build system (i.e config.mk) should now respect $TERMINFO and $PREFIX
if set. By default _POSIX_C_SOURCE=200809L and _XOPEN_SOURCE=700 is
used, if you get compile errors change them to match whatever your
system needs to expose the required interfaces.
* Solaris and AIX support (with some tweaks to config.mk)
All in all a lot of code was changed, comments, patches and a thorough
review is always welcome!
As a kind of social experiment I also pushed a mirror of the repository
to github:
https://github.com/martanne/dvtm
dvtm-0.12 released (05.07.2014)
------------------------------
Changes include:
* fixes to the redraw logic
* new copymode key bindings CTRL+u (page-up), CTRL+d (page-down), CTRL+c (quit)
* a new layout included in the source tarball but not enabled by default:
vstack where all windows have the full screen width
* cleanups to the build system and manual page
The tagging branch[1] has also been rebased. Special thanks to Mark Edgar
for his patches.
dvtm-0.11 released (08.03.2014)
------------------------------
Changes since the 0.10 release include:
* keybindings can be defined without any modifier key as result
config.def.h was reindented. Sorry for the resulting merge
conflicts.
* scroll up and down is now also bound to Shift-Page{Up,Down}
* the window border is no longer drawn if there exists only 1 window.
This means when you start dvtm without any command you will just
get a normal shell prompt without any decoration. This might be
useful for people who use a terminal without builtin scrollback
buffer support.
* MOD+Tab switches to the previously focused window
* Upon terminal resize the whole screen is completely redrawn. This
fixes an issue with the optimized redraw logic introduced in the
last release when attaching to an existing session with dtach or
abduco.
* the lock functionality (MOD-X) has been removed, use a session
management tool like abduco to detach from your controlling
terminal and logout properly using the existing system mechanism.
dvtm-0.10 released (28.12.2013)
------------------------------
This is mostly a bugfix release with
* improved redraw logic to reduce cursor flickering
* better non blocking input handling
* a couple of fixes to dvtm.info terminfo description (kbs, rs1)
* various other fixes (fd leakage, misuse of strncpy, handling of I/O errors)
as there were changes to dvtm.info make sure to install the new version.
Furthermore I've rebased the tagging branch, which provides the same tagging
facilities that we know and love from dwm, on top of master:
- Add LICENSE= x11
(upstream)
- Update cstream 2.7.5 to 3.1.1
3.1.1:
-----
-n <nbytes_to_stream> was not clear to use numbers > 2 GB. I didn't
notice since it worked fine if you used suffixes "K/M/G" as long as
the number was < 2 G. Sorry about that.
3.1.0:
------
O_DIRECT supported for input.
3.0.0:
------
IPV6 support for IPV6 day 2011.
The IPV6 support shouldn't break anything after hostname lookup
succeeds. Issues might be building on older platforms if I screwed up
the autoconf mechanism to not compile it in.
Having said that, assorted little code cleanups are in this release,
too. They shouldn't break anything but non-IPV6 things were touched.
Aftermath for 2.7.4 - 2.7.6:
----------------------------
ATTENTION:
I'm afraid that support for the '-B <size_of_buffer>' was clobbered in
2.7.4 or whereabouts. This one allowed you do have a reader do
multiple reads before the writer could write or vice versa.
Change reverted in 2.7.6.
2.7.4 and 2.7.5 do not have working -B.
2.8.0:
------
Support platforms that do not have open(2) with O_DIRECT.
Such as MacOS X.
2.7.6:
------
Revert 2.7.3 which broke -B
* Enhancements:
* Expand path to logfile to easier debugging on failures.
Pull #33 [marvin2k]
* Enhancements:
* Add default cert store and custom certs from `SSL_CERT_FILE` if present.
This increases compatibility with Ruby 1.8.7.
* Bugfixes:
* Specify Accept-Encoding to make sure a raw file content is downloaded.
Pull #30. [knu]
* Internal:
* Improve examples and use them as test harness.
Version 470 was released on 6 Oct 2014.
These are the differences between version 458 and version 470:
* Don't overwrite history file; just append to it. This behaves better when
multiple sessions are running less simultaneously and using the same history
file.
* New command ESC-G goes to end of currently buffered data in a pipe.
* In more-compatible mode, make the -p option apply to every file opened, not
just the first one.
* In more-compatible mode, change the -e option to work like -E, not -EF.
* Treat multiple CRs before LF are like one CR (all the CRs are hidden).
* Allow "extra" string in lesskey file to append to a multi-char command (like
a search pattern), without executing the command.
* Ignore -u/-U setting while viewing help file, so that underline and bold
chars are displayed correctly.
* Improve detection of "binary" files in UTF-8 mode.
* Fix bug with ++ commands.
* Fix bugs and improve performance in ampersand filtering.
* Automate construction of Unicode tables from Unicode database.
20141124: Bumped up version number to 1.1.6
20141124: Properly quote backslashes for tcsh
20141124: Detect ambiguous long options properly
Thanks to Klaus Wulff <dinw.klswlff@dfgh.net>
20141123: Create test harnass and tests
20141122: Update translations (sync with util-linux (git 20141120))
20141120: Update manual page (sync with util-linux (git 20141120))
20141120: Minor code changes (sync with util-linux (git 20141120))
2014-10-12 tim <gyunaev@ulduzsoft.com>
- Version 7.1 released
- Added support for creating kchmviewer as a portable app
- Fixed a crash when indexing (in search) certain malformed HTML files
- Fixed parsing CHM files whose filenames contained URL-encoded characters
2014-03-26 tim <gyunaev@ulduzsoft.com>
- Version 6.1 released
- Keyboard usability improved thanks to the Giuseppe "Cowo" Corbelli.
- The focus is now moved to the content page once the link is clicked, so the keyboard navigation is available immediately. You can switch the focus back by pressing Ctrl+(1-4).
- Added extended keyboard shortcuts for FindNext and FindPrevious; F3 still works.
- Navigation tab window activation (Contents, Search, Index, Bookmarks) now automatically focus the proper element.
- The items in the navigation page now reacts on onItemActivated, and hence act on <Return> key and follow the DE policy (such as respecting KDE single click).
- Upon successful search, the focus moves to the results list.
- Titles are now space-trimmed.
- Fixed binary TOC parser check which led to crashes for some CHM files.
- Fixed incorrect settings file storage name when the CHM file contains multiple dots.
- Fixed the Ctrl+click and Shift+click when the release event was intercepted by other applications (i.e. GoldenDict)
- 'Esc' closes the search dialog and restores focus in the content window.
Changelog:
Installation
The Linux and Mac packages can be installed in parallel to LibreOffice 4.2, but not run simultaneously - documents will be opened in the version you've started first.
The Windows package will update a previously installed version of LibreOffice.
General
Impress Remote feature is not enabled for new installations by default anymore. Go to Tools -> Options -> LibreOffice Impress -> General and check [x] Enable remote control to enable it.
Calc
Sorting behaviour now defaults to old style again
New Features
An in-progress list of features for this version is available here.
Reported Bugs
A list of annoying bugs still contained in this version is available from Bugzilla.
The full list of reported bugs is here.
List of fixed bugs
Bugs fixed against 4.3.3 final (RC2):
bnc#624546 fix slide pane cut/copy/paste in outline view [Marco Cecchetti]
bnc#636128 fix cherry-pick mis-merge [Miklos Vajna, Stephan Bergmann]
bnc#800714 SwTxtFrm::FormatAdjust: still call SplitFrm if we have columns [Miklos Vajna]
bnc#821804 fix docx redline import [Luboš Luňák]
bnc#825305 RTF import: fix paragraph spacing handling in tables [Miklos Vajna]
bnc#893791 XLS export: external sheet references on Linux/OSX [Andras Timar]
coverity#1222238 various untrusted loop bounds [Caolán McNamara]
coverity#1242573 various untrusted loop bounds [Caolán McNamara]
coverity#1242582 various untrusted loop bounds [Caolán McNamara]
coverity#1242606 various untrusted loop bounds [Caolán McNamara]
coverity#1242624 various untrusted loop bounds [Caolán McNamara]
coverity#1242704 various untrusted loop bounds [Caolán McNamara]
coverity#1242717 various untrusted loop bounds [Caolán McNamara]
coverity#1242724 various untrusted loop bounds [Caolán McNamara]
coverity#1242778 various untrusted loop bounds [Caolán McNamara]
coverity#1242908 various untrusted loop bounds [Caolán McNamara]
fdo#37960 fix shift+click to select multiple drawings [Andras Timar]
fdo#44736 RTF import: fix paragraph spacing handling in tables [Miklos Vajna]
fdo#46757 fix word count with recorded changes [Caolán McNamara]
fdo#54361 chart background in XLSX is transparent instead of white. [Muthu Subramanian]
fdo#55546 center ellipsis tooltips that don't fit on screen [Caolán McNamara]
fdo#60904 allow export of VBAProject [Caolán McNamara]
fdo#62682 crash on second export of svg [Caolán McNamara]
fdo#65823 crash on negative position in redlined word [Caolán McNamara]
fdo#68347 fix word count with recorded changes [Caolán McNamara]
fdo#71248 excel VBA: ActiveDocument is not tracking currently selected Doc [Justin Luth]
fdo#71781 : CMIS: Default Alfresco 4 URL not working [Julien Nabet]
fdo#72587 make template dialog Modal [Caolán McNamara]
fdo#74014 broadcast changes after TextToColumn [Eike Rathke]
fdo#74441 [Accessiblity] Don't expose 0 for empty cells in Calc [Niklas Johansson]
fdo#75359 SIFR: Line Spacing 1.5 icon missing (4.3) [Yousuf Philips]
fdo#77319 set spinbox value AFTER adjusting no. of decimal places [Katarina Behrens]
fdo#79602 sw: fix text formatting of proportional line space < 100% [Michael Stahl]
fdo#80284 avoid broadcasting during cell delete & shift. [Kohei Yoshida]
fdo#80846 broadcast changes before EndUndo(). [Kohei Yoshida]
fdo#81264 accessiblitiy focus not tracked for cells in Calc [Niklas Johansson]
fdo#81486 custom property with the same name as Document Property not imported [Charu Tyagi]
fdo#81633 add a hidden configuration option to toggle ref update on sort. [Kohei Yoshida]
fdo#82047 correctly adjust references in range names on row deletion. [Kohei Yoshida]
fdo#82076 RTF import: handle footnote in table cell [Miklos Vajna]
fdo#82270 grabbing focus can invalidate the entries [Caolán McNamara]
fdo#82430 MSVC build: disable a few more cases of SSE2 in externals [Michael Stahl]
fdo#82858 RTF export: fix "none" line style of TextFrames [Miklos Vajna]
fdo#82859 RTF import: don't try to set CustomShapeGeometry on a TextFrame [Miklos Vajna]
fdo#83464 RTF import: \plain should reset \rtlch and \hich as well [Miklos Vajna]
fdo#83733 fix slide pane cut/copy/paste in outline view [Marco Cecchetti]
fdo#83901 ROW() and COLUMN() to be properly recalculated on cell move. [Kohei Yoshida]
fdo#84073 change ODBC/JDBC escapes to lowercase [Julien Nabet]
fdo#84417 restore focus window after preview [Caolán McNamara]
fdo#84649 crash on negative position in redlined word [Caolán McNamara]
fdo#84658 on reexec, cancel modification before resetting IsModification state [Lionel Elie Mamane]
fdo#84679 RTF import: fix paragraph spacing handling in tables [Miklos Vajna]
fdo#84729 buffer cache grows to over 9000 unused entries [Caolán McNamara]
fdo#84885 chart wizard dialog cut off [Caolán McNamara]
fdo#85179 RTF filter: import image border [Miklos Vajna]
fdo#85215 ensure that formula broadcasting works after sort. [Kohei Yoshida]
fdo#85282 correct adjustment of range reference on delete & shift. [Kohei Yoshida]
fdo#85403 broadcast changes after TextToColumn [Eike Rathke]
fdo#85707 NOT BETWEEN query not working (in query design view) when LibreOffice user interface is in Spanish [Adolfo Jayme Barrientos]
fdo#85812 RTF import: fix run type in new groups [Michael Stahl]
i#63015 always default to WinAnsiEncoding... [Herbert Dürr]
i#84870 SwTxtFrm::FormatAdjust: still call SplitFrm if we have columns [Miklos Vajna]
rhbz#1146169 a11y frames label dies before frame [Caolán McNamara]
+ when NRCS is active, suppress ISO Latin-1 from menu to avoid
confusion with British NRCS.
+ do not highlight ISO Latin-1 for NRCS, since it is a 96-character
set, not applicable to NRCS.
+ expand menu 11.6.6 to demonstrate bce with top-level menus 1 and 2
in addition to the existing menu 8.
+ correct description for DA response 24; it denotes VT320.
+ add highlighting information for VT320 Portuguese NRC mapping.
+ add highlighting information for VT220 DEC Supplemental NRC mapping.
+ clear screen just before resetting SCS in menu #3 character sets,
in case a VT100 emulator does not simply ignore VT220 G2/G3
selections when it does not implement them.
+ add check for maximum operating level before deciding whether
to send a DECSCL to set it to VT100-level.
+ save/restore color enable-flag for menu 11.6 in a couple of places
so that the ISO-6429 tests do not reset it unexpectedly.
+ amend the REP test to not reset colors if it happens to be run via
the menu entry for BCE-related tests.
siag builds with guile 1.6, but not 1.8. Because 1.6 will be dropped
from pkgsrc soonish as unreasonably old, disable guile support. (siag
itself is no longer maintained and thus a candidate for eventual
removal if it causes trouble.)
siag has an included scheme (SIOD), so is still functional without guile.
Changelog:
From: https://wiki.documentfoundation.org/Releases/4.3.3/RC2
General
Impress Remote feature is not enabled for new installations by default anymore. Go to Tools -> Options -> LibreOffice Impress -> General and check [x] Enable remote control to enable it.
List of fixed bugs
Bugs fixed against 4.3.3 RC1:
fdo#83588 revert "center slide after changing zoom" [Caolán McNamara]
fdo#84809 crash when button is too short for text [Caolán McNamara]
fdo#84810 avoid calc crash when using Paste Special - Link [Matthew J. Francis]
fdo#85032 max len property of -1 -> crash [Caolán McNamara]
From: https://wiki.documentfoundation.org/Releases/4.3.3/RC1
List of fixed bugs
Bugs fixed against 4.3.2 final (rc2):
bnc#580834 HTML import: Embed images if source URL is a local file. [Matúš Kukan]
bnc#584721 invisible text because of wrong color (white) [Zolnai Tamás]
bnc#591147 OOXML import: Import video file too. [Matúš Kukan]
bnc#592918 display data description in pivot table. [Kohei Yoshida]
bnc#657899 paragraph vertical spacing differs from PowerPoint [Tor Lillqvist]
bnc#887307 ODF files not showing up on Windows search [Andras Timar]
bnc#891663 handle docx's w:anchor layoutInCell attribute [Luboš Luňák, Andras Timar]
bnc#892610 OOXML import: Improve chart number formats. [Matúš Kukan]
bnc#897769 OOXML import: Import border lines using reference too. [Matúš Kukan]
coverity#1242906 unused value [Caolán McNamara]
fdo#37691 related: \shptxt ... \jpegblip [Caolán McNamara]
fdo#46037 related $(workdirurl) was always empty [Stephan Bergmann]
fdo#52076 unittest [Lionel Elie Mamane]
fdo#53920 switch back tab at RefButton closure time [Laurent Balland-Poirier]
fdo#63483 support for modify passwd in Impress and Draw [Katarina Behrens]
fdo#63905 IsDraw doesn't mean the app/page is Draw [Caolán McNamara]
fdo#65281 empty/Not empty doesn't work in columns with date format [David Ostrovsky]
fdo#66496 don't crash on loading specific .docx [Caolán McNamara]
fdo#66701 don't double destroy the HASH when PDF signing. [Michael Meeks]
fdo#66706 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#70607 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#73608 related: don't crash on missing table styles [Caolán McNamara]
fdo#76565 allow pasting into input fields [Jan-Marek Glogowski]
fdo#77813 related $(workdirurl) was always empty [Stephan Bergmann]
fdo#78907 file crashed while saving. [PriyankaGaikwad]
fdo#79129 crash in oox::drawingml::LayoutNode::setupShape [Caolán McNamara]
fdo#79130 crash in DomainMapper_Impl::CloseFieldCommand [Caolán McNamara]
fdo#79131 crash in EnhancedCustomShapeTypeNames::Get [Caolán McNamara]
fdo#79269 fix ODF import of style:footer-first [Michael Stahl]
fdo#79301 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#79535 LO writer crash while Opening some document. [Tushar Bende]
fdo#79604 sw: fix clicking on hyper-links in Draw objects [Michael Stahl]
fdo#80101 inserting non-chart as chart -> unhandled exception [Caolán McNamara]
fdo#80927 css.office.Quickstart should be single-instance service. [Matúš Kukan, Andras Timar]
fdo#81039 crash on adding new macro library [Caolán McNamara]
fdo#81181 upgrade libgltf to 0.0.2 [Zolnai Tamás]
fdo#81264 calc is not accessible to screen readers if sheet is modified [a11y] [Niklas Johansson]
fdo#81357 no fallback for special codes without country [Eike Rathke]
fdo#81592 use 24-bit color depth, not 256 colors when converting an EPS-file. [Björgvin Ragnarsson]
fdo#81635 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#81750 MM: correctly convert inline-edit fields [Jan-Marek Glogowski]
fdo#82043 instead of the bold font, use a higher multiplifier (4.3 backport) [Yousuf Philips]
fdo#82144 fix unpacking of additional tarballs [David Tardon]
fdo#82259 support version 2 ttf fonts and mac font family name encodings [Caolán McNamara]
fdo#82430 MSVC build: avoid using SSE2 instructions in some externals [Michael Stahl]
fdo#82552 we only check pAlphaW on one branch [Caolán McNamara]
fdo#82895 file crashed while saving. [PriyankaGaikwad]
fdo#82994 changed filterlabel of .ac3-files [Daniel Sikeler]
fdo#83141 avoid accessing 1 character after a string [Matthew J. Francis]
fdo#83292 add stub locale data for Catalan (Valencian) [Andras Timar]
fdo#83619 retain dropdown part after customization [Maxim Monastirsky]
fdo#83764 ensure that the row position is below MAXROW. [Kohei Yoshida]
fdo#83848 add GetAddressConvention to RefButton [Laurent Balland-Poirier]
fdo#84008 kill c++11 code from collada2gltf [Zolnai Tamás]
fdo#84009 be sure to update the sheet index when moving the sort range. [Kohei Yoshida]
fdo#84057 localized string is truncated [Caolán McNamara]
fdo#84260 : Wrong CRC Costa Rica currency symbol [Julien Nabet, Eike Rathke]
fdo#84261 unexpected exception -> clang builds terminate [Caolán McNamara]
fdo#84283 : Export to PDF with footnotes in tables crash [Julien Nabet]
fdo#84315 quick fix for sw too [Lionel Elie Mamane, Matúš Kukan]
fdo#84536 RTF import: don't try to rotate TextFrames [Miklos Vajna]
fdo#84588 loop in TableInfo::getNextNode [Caolán McNamara]
fdo#84757 1~ instead of ~1 and 10~ instead of 1~0 [Caolán McNamara]
i#101245 don't even attempt to unload libqstart_gtklo.so again [Stephan Bergmann]
List of fixed bugs
Bugs fixed against 4.3.2 final (rc2):
bnc#580834 HTML import: Embed images if source URL is a local file. [Matúš Kukan]
bnc#584721 invisible text because of wrong color (white) [Zolnai Tamás]
bnc#591147 OOXML import: Import video file too. [Matúš Kukan]
bnc#592918 display data description in pivot table. [Kohei Yoshida]
bnc#657899 paragraph vertical spacing differs from PowerPoint [Tor Lillqvist]
bnc#887307 ODF files not showing up on Windows search [Andras Timar]
bnc#891663 handle docx's w:anchor layoutInCell attribute [Luboš Luňák, Andras Timar]
bnc#892610 OOXML import: Improve chart number formats. [Matúš Kukan]
bnc#897769 OOXML import: Import border lines using reference too. [Matúš Kukan]
coverity#1242906 unused value [Caolán McNamara]
fdo#37691 related: \shptxt ... \jpegblip [Caolán McNamara]
fdo#46037 related $(workdirurl) was always empty [Stephan Bergmann]
fdo#52076 unittest [Lionel Elie Mamane]
fdo#53920 switch back tab at RefButton closure time [Laurent Balland-Poirier]
fdo#63483 support for modify passwd in Impress and Draw [Katarina Behrens]
fdo#63905 IsDraw doesn't mean the app/page is Draw [Caolán McNamara]
fdo#65281 empty/Not empty doesn't work in columns with date format [David Ostrovsky]
fdo#66496 don't crash on loading specific .docx [Caolán McNamara]
fdo#66701 don't double destroy the HASH when PDF signing. [Michael Meeks]
fdo#66706 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#70607 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#73608 related: don't crash on missing table styles [Caolán McNamara]
fdo#76565 allow pasting into input fields [Jan-Marek Glogowski]
fdo#77813 related $(workdirurl) was always empty [Stephan Bergmann]
fdo#78907 file crashed while saving. [PriyankaGaikwad]
fdo#79129 crash in oox::drawingml::LayoutNode::setupShape [Caolán McNamara]
fdo#79130 crash in DomainMapper_Impl::CloseFieldCommand [Caolán McNamara]
fdo#79131 crash in EnhancedCustomShapeTypeNames::Get [Caolán McNamara]
fdo#79269 fix ODF import of style:footer-first [Michael Stahl]
fdo#79301 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#79535 LO writer crash while Opening some document. [Tushar Bende]
fdo#79604 sw: fix clicking on hyper-links in Draw objects [Michael Stahl]
fdo#80101 inserting non-chart as chart -> unhandled exception [Caolán McNamara]
fdo#80927 css.office.Quickstart should be single-instance service. [Matúš Kukan, Andras Timar]
fdo#81039 crash on adding new macro library [Caolán McNamara]
fdo#81181 upgrade libgltf to 0.0.2 [Zolnai Tamás]
fdo#81264 calc is not accessible to screen readers if sheet is modified [a11y] [Niklas Johansson]
fdo#81357 no fallback for special codes without country [Eike Rathke]
fdo#81592 use 24-bit color depth, not 256 colors when converting an EPS-file. [Björgvin Ragnarsson]
fdo#81635 crash after 3rd call to ApplicationScriptLibraryContainer [Caolán McNamara]
fdo#81750 MM: correctly convert inline-edit fields [Jan-Marek Glogowski]
fdo#82043 instead of the bold font, use a higher multiplifier (4.3 backport) [Yousuf Philips]
fdo#82144 fix unpacking of additional tarballs [David Tardon]
fdo#82259 support version 2 ttf fonts and mac font family name encodings [Caolán McNamara]
fdo#82430 MSVC build: avoid using SSE2 instructions in some externals [Michael Stahl]
fdo#82552 we only check pAlphaW on one branch [Caolán McNamara]
fdo#82895 file crashed while saving. [PriyankaGaikwad]
fdo#82994 changed filterlabel of .ac3-files [Daniel Sikeler]
fdo#83141 avoid accessing 1 character after a string [Matthew J. Francis]
fdo#83292 add stub locale data for Catalan (Valencian) [Andras Timar]
fdo#83619 retain dropdown part after customization [Maxim Monastirsky]
fdo#83764 ensure that the row position is below MAXROW. [Kohei Yoshida]
fdo#83848 add GetAddressConvention to RefButton [Laurent Balland-Poirier]
fdo#84008 kill c++11 code from collada2gltf [Zolnai Tamás]
fdo#84009 be sure to update the sheet index when moving the sort range. [Kohei Yoshida]
fdo#84057 localized string is truncated [Caolán McNamara]
fdo#84260 : Wrong CRC Costa Rica currency symbol [Julien Nabet, Eike Rathke]
fdo#84261 unexpected exception -> clang builds terminate [Caolán McNamara]
fdo#84283 : Export to PDF with footnotes in tables crash [Julien Nabet]
fdo#84315 quick fix for sw too [Lionel Elie Mamane, Matúš Kukan]
fdo#84536 RTF import: don't try to rotate TextFrames [Miklos Vajna]
fdo#84588 loop in TableInfo::getNextNode [Caolán McNamara]
fdo#84757 1~ instead of ~1 and 10~ instead of 1~0 [Caolán McNamara]
i#101245 don't even attempt to unload libqstart_gtklo.so again [Stephan Bergmann]
(lame, mplayer, portaudio) into options and default them to off.
Changes in 2.0.31
Fix a problem where large regular syncs sometimes timed out.
Changes in 2.0.30
If youâre using the alternate build on an older Mac, this upgrade
is necessary to keep syncing.
Disable embedded fonts on OSX to prevent crashes.
The Browse screen on OSX now deletes cards when you press Fn+Del, not Del.
Fix a syncing bug triggered by importing apkgs with custom deck options.
Fix saved searches not being synced (thanks to Houssam).
Fix "check database" not saving changes after fixing an AnkiDroid problem.
- Add cdio_free, iso9660_stat_free, and iso9660_xa_free functions.
- Deprecate mmc_isrc_track_read_subchannel
- Add mmc_get_track_isrc function.
- Update OS versions we recognize
- OSX, and MS Windows, ISO 9660 and other bug fixes
- Remove Coverty scan warnins and errors
- OS/2 driver performance update
This seems to fix PR pkg/48540
Highlights from the release notes:
* Fixed crash on searching, #736312 (Marcos Chavarria Teijeiro)
* Style the find revealer, #736408 (David King)
* Use new symbolic menu item
* Complete redesign to fit with new GNOME 3 apps
* Updated color computing code to avoid deprecations
* Fixed critical crasher after closing windows
* Fixed some deprecation warnings
* Implemented auto-reload for DocBook, #704821
* Updated GSettings install rule, #697815 <- no need for patch-configure
* Correctly detect Unity for conditional processing, #707352 (Kevin Godby)
* Fixed build issue with intltool and gettext, #706854 (Sean de Burca)
* Various updates for deprecated APIs in GLib and GTK
* Added support for DocBook conditional processing on desktop environment
* Updated translations
For full details see:
https://git.gnome.org/browse/yelp/tree/NEWS?id=3.14.0