Commit graph

5797 commits

Author SHA1 Message Date
richard
b86d646729 Updates and additions to release 3.6
details found here (http://www.tryton.org/posts/new-tryton-release-36.html)

    Major changes for the developer

        It is now allowed to have many times the same field in list/tree view.
        There is no more a datetime widget for list/tree, two columns with one
        widget date and one widget time should be used instead.

        A new field TimeDelta appears in this release to represent a duration. It
        replace the float_time widget which had some rounding issue. This new
        field is already used in the timesheet and project modules.

        The One2Many widget can be configured to use a Cartesian product with the
        selections of many values for Many2One or Reference fields.

        A method restore_history_before is added to ModelSQL which behaves like
        the existing restore_history but restore the records just before the datetime.

        The on_change methods have been migrated to a behaviour more consistent
        with the Active Record Pattern used in Tryton. Instead of returning a
        dictionary with the values to change, now the instance is directly changed.

        This allow to chain easily the on_change methods or reuse them in other
        methods reducing the duplication.

        The method save on ModelStorage is now a dualmethod which means that it
        can be called as usual as an instance method but also as a class method
        with a list of records. Saving many records at once this way improves the
        performance as the method will minimize the number of queries to the
        database and will validate the result by bunch.

        The Dict field received a translated method to create descriptors which
        translate the values or the keys like the same method on Selection field.

        It is now allowed to use the dotted notation in the order clause of a search.
        The ORM will automatically generate the needed joins.

        The API of the Report class has been reworked to improve the customization
        of the engine. The formatting methods are now more strict to prevent silent
        failure.

        The safe_eval (which was not sure to be safe) has been completely removed.
        In the places where the evaluated code was any way safe, the standard eval
        is used. For evaluated code from outside, a JSON notation is now used. Some
        utilities have been developed to ease the creation of JSON from XMl or in
        the views.

        A new kind of button has been added which works on non-saved record. They
        are quite similar to on_change but they are triggered by a click on a
        button instead of a change of field.

    Accounting

        A new method reverse_compute has been added to Tax which allow to compute
        the base amount from the taxed amount.
        The sign of the second currency amount is enforced to be the same as
        debit - credit.
        The analytic account management has been reworked to use a really One2Many
        instead of the pseudo-field. This simplification was possible thanks to the
        recent new features like the usage of Reference field on One2Many.

    Party

        The vat number is now stored in its compact format.

    Product

        The number of decimal for internal price calculations is now a configuration
        parameter price_decimal. This parameter is used everywhere to ensure
        consistency between all modules.

    Purchase/Sale

        Their lines support both mixed invoice type (Invoice vs Credit Note) per
        line when computing the invoiced quantity.

    Stock

        A new state staging is added to the move. Such state doesn't impact at all
        the computation of the stock level. It is used for supply on sale, to
        create moves in advance.
        Inactive products are still computed for the stock level.
        The computation of assigned move has been improved to take only in
        consideration outgoing move assigned not the incoming. This result in a
        less optimistic for the stock level and thus prevent to assign a move with
        an incoming one that is just assigned but not yet done.
        Forecasts are now automatically deactivated when their period is in the past.

    pkgsrc related updates:
    update to tryton-3.6.0
    update to trytond-3.6.0 including UTC check patch for SunOS
    update trytond modules to latest 3.6
    add meta-pkgs/py-tryton-platform
    add misc/py-trytond-party-relationship
    add misc/py-trytond-product-attribute
    add misc/py-trytond-production
    add misc/py-trytond-stock-inventory-location
    add misc/py-trytond-stock-product-location
    add finance/py-trytond-account-invoice-line-standalone
    add finance/py-trytond-account-invoice-history
    add finance/py-trytond-account-invoice-stock
    add finance/py-trytond-account-payment-clearing
    add finance/py-trytond-account-stock-continental
    add finance/py-trytond-analytic-invoice
    add finance/py-trytond-analytic-purchase
    add finance/py-trytond-analytic-sale
    add finance/py-trytond-product-price-list
    add finance/py-trytond-product-cost-fifo
    add finance/py-trytond-product-cost-history
    add finance/py-trytond-purchase
    add finance/py-trytond-purchase-invoice-line-standalone
    add finance/py-trytond-sale
    add finance/py-trytond-stock-supply
    add time/py-trytond-company-work-time
2015-08-24 14:49:41 +00:00
wiz
44a1297bda Switch to webkit24-gtk3. Bump PKGREVISION. 2015-08-23 10:12:43 +00:00
leot
71fd071e91 Update misc/dvtm to dvtm-0.14.
Changes:
 * nmaster functionality available via MOD+{i,d} i.e. the possibility
   to change the number of windows displayed in the master area
 * "urgent flags" that is if an application issues a bell \a the urgent
   flag is set and the corresponding tag will blink
 * distinguish between return key and new line this fixes the behaviour
   of CTRL+j in certain applications
 * rudimentary support for the \e[?10{47,48,49}{h,l} xterm sequences
   to switch between alternate and normal screen buffer as used by
   >= abduco 0.3
 * better Unicode support in the statusbar
 * the current layout symbol is displayed in the tag bar
 * the position of the status/tag bar is runtime configurable via MOD+S
 * code cleanups and fixes from static analyzers
 * DragonFly BSD support
2015-08-23 08:54:12 +00:00
wiz
c0a09bb97a Update to 1.1.1:
Version 1.1.1

* Updated all files to reflect new email address for maintainer:
  micah@addictivecode.org (previous address, micah@cowan.name, is no
  longer valid)

* Added links in the (Texinfo) manual to playable videos that
  demonstrate basic teseq functionality, and how to use teseq to create
  _and edit_ interactive terminal demos:

  * https://asciinema.org/a/7443
  * https://asciinema.org/a/7445

* Added example in the manual for using teseq to strip escapes out of a
  typescript file.

* Note: a new (optional) build dependency has been introduced:
  pkg-config, which is now used to find whether libcheck is installed.

* BUG FIX: Fixed an issue where teseq could spin indefinitely churning
  out \xFF bytes on no further input. Input from a command such as
    $ printf '\033!!\177'
  would produce this issue.

  This issue was discovered by means of american fuzzy lop,
  http://lcamtuf.coredump.cx/afl/

* BUG FIX: Fixed an issue with \x7F (DEL) being treated as a valid final
  character for control sequences, and being printed on teseq's output
  (which should not be printing non-whitespace control characters).
2015-08-21 15:22:22 +00:00
he
0fbbb8047b Add libreoffice43. 2015-08-19 07:12:19 +00:00
he
1b24beedf4 Resurrect libreoffice4 from 2014-12-25 as libreoffice43, as found
in pkgsrc-2014Q4, with the adaptation to build with libcmis-0.5
instead of libcmis-0.4 to allow build with more modern pkgsrc.

This should bring back a version of libreoffice which is buildable
on netbsd-6 -- it certainly builds for me on NetBSD/i386 6.1.5.
2015-08-19 07:11:44 +00:00
wiz
c7383780db Bump all packages that depend on curses.bui* or terminfo.bui* since they
might incur ncurses dependencies on some platforms, and ncurses just bumped
its shlib.
Some packages were bumped twice now, sorry for that.
2015-08-18 07:31:00 +00:00
wiz
0eb141f110 Bump PKGREVISION for ncurses shlib bump. 2015-08-17 17:11:19 +00:00
joerg
c3787a4246 Really depend on py-sqlite3, various device plugins depend on it. 2015-08-16 11:40:32 +00:00
ryoon
6c340c1de2 Fix build with boost 1.59.0
* Add -lboost_system to LDFLAGS.
2015-08-16 02:14:20 +00:00
wiz
cb5fb3ff11 Bump PKGREVISION for librevenge boost fix. 2015-08-15 22:46:38 +00:00
wiz
6bb8824140 Update to 2.35.0:
- version: 2.35.0
  date: 2015-08-14

  new features:
    - title: "Kobo driver: Add support for the new firmware version
    3.17"

    - title: "E-book viewer: Allow setting the number of pages per
    screen separately for portrait and landscape modes."

  bug fixes:
    - title: "DOCX Input: Fix a regression in the previous release
    that broke conversion of some documents that specify vertical
    alignment in absolute units"

    - title: "Book list: Fix the current row number being partially
    cutoff on some windows 10 machines."

    - title: "Fix 'stopping content server' message popping up
    repeatedly even when it is closed while the content server has
    not fully stopped"

    - title: "Conversion: Fix error when converting a file that
    uses media queries with comments in the media selector."

  improved recipes:
    - American Spectator
    - South China Morning Post

  new recipes:
    - title: 3D News and iXBT.com
      author: bugmen00t

- version: 2.34.0
  date: 2015-08-07

  new features:
    - title: "Amazon metadata download: Add support for amazon.nl.
    To use it go to Preferences->Metadata download and configure
    the amazon plugin to use Netherlands as the source."

    - title: "Catalogs: Add an option to not add the generated
    catalog to the library."

    - title: "E-book viewer: Improve performance of hyphenation
    (by updating the version of the hyphenation library it uses)"

  bug fixes:
    - title: "DOCX Input: Add support for text whose vertical
    position is adjusted by offsets from the baseline"

    - title: "DOCX Output: Handle length and percentage values for
    vertical-align in the input document."

    - title: "Edit Book: Check Book: Fix automatic correction of
    invalid ids not updating the idrefs in the spine for ids in
    the manifest of the OPF file."

    - title: "E-book viewer: Fix printing to PDF could result in
    filenames with characters not supported by windows"

    - title: "E-book viewer: Also fix a bug in the hyphenation
    algorithm that could cause the word 'undefined' to be mangled
    during hyphenation."

    - title: "ODT Input: Fix custom styles with a dot in their name
    not being inherited."

  improved recipes:
    - Daily Express
    - The New Yorker
    - XKCD
    - Wired Magazine
    - Wired UK
2015-08-14 18:15:08 +00:00
he
c280e59732 Update goffice0.10 to version 0.10.23 in preparation for new gnumeric112.
Pkgsrc changes:
 * Bump version.
 * Adjust PLIST.

Upstream changes:

goffice 0.10.23:

Details of changes by contributor:
 Jean
   * Disable metafiles support when there is no screen. [Bug 748493].
   * Fuzzed file fixes. [Bug 750860] [Bug 751059] [Bug 751256]
     [Bug 751257] [Bug 751272] [Bug 751925] [Bug 752223].
 Morten
   * Fix ABR [Bug 749167].
   * Shield Cairo from image sizes it cannot handle. [Bug 749274].
   * Plug leaks. [Bug 749395].
   * Portability problem affecting macs. [Bug 749463].
   * Fuzzed file fixes. [Bug 750047] [Bug 751250].
   * Fix log-fit problem. [Redhat Bug 1240470].
   * Fix general format for wide case. [Bug 752839].

goffice 0.10.22:

Noteworthy news in this release:
 * Graph fixes and enhancements.

Details of changes by contributor:
 Jean
   * Fix selection of axes using only part fo the plot area. [Bug 746456].
   * Protect colored xy and bubble plots against NULL z values.
   * Update circular axis bounds after a unit change. [Bug 746738].
   * Auto fill color made transparent for opened markers. [Bug 691025].
   * Make manual scale really manual. [Bug 700599].
 Johannes Deutsch
   * Do not draw the line over the arrow head at start. [Bug 745736].
 Morten
   * Improve log axis bounds. [Bug 745960].
   * Fix format used for stacked percentage graphs.
   * Don't force bar/col axis to include 0 for log axis.
   * Don't force radial plots to include 0 for log axis.
   * Rewrite pattern-fill rendering. [Bug 747212].
   * Add go_cotpi and go_atan2pi.
   * Fix persistence of ring plot center size.
2015-08-13 15:10:44 +00:00
pgoyette
38f01011cb Set correct variable to get newer version of libodfgen
Thanks, wiz!
2015-08-13 06:53:45 +00:00
pgoyette
0926065928 We also need an updated libodfgen ... 2015-08-13 06:17:57 +00:00
wiz
3f2011306b This wants libetonyek-0.1.2 or newer. 2015-08-13 05:48:35 +00:00
wiz
39b23db43d Fix path. 2015-08-12 12:13:02 +00:00
ryoon
abb21883cf Add libreoffice 2015-08-12 00:58:05 +00:00
ryoon
d543f1b6e9 Import libreoffice-5.0.0.5 as misc/libreoffice.
LibreOffice is a free, community-developed, multi-platform office
productivity suite. It includes key desktop applications:
word processor, spreadsheet, presentation manager, and drawing program,
with a user interface and feature set similar to other office suites.
2015-08-12 00:57:20 +00:00
ryoon
1088b08d67 Bump PKGREVISION.
* Use libwps03.
* Remove unused distfile.
2015-08-12 00:49:24 +00:00
joerg
c719715ec0 Annotate more printf-like functions. Disable non-literal format string
warnings for a couple of broken APIs where a format string is given
without the actual argument. Bump revision.
2015-08-10 19:30:06 +00:00
wiz
72e824a949 Bump PKGREVISION for glm API bump.
Add upper bounds for libwps and orcus.
2015-08-09 11:18:00 +00:00
jaapb
95d33cd095 Removed options.mk that really shouldn't be there (yet). Sorry. 2015-08-08 18:44:54 +00:00
jaapb
7ea12ebae7 Recursive revbump associated with lang/ocaml update. 2015-08-07 11:20:32 +00:00
ryoon
e7bf0b378c Restore i386 distfile.
Fix PR pkg/50130.
2015-08-06 23:56:20 +00:00
wiz
b2a7c7b2a8 Update to 1.24:
Version 1.24 - 08 Apr 2013

* Better portability for tests.

* Updated documentation.

* License changed to GPLv3.

* Bugs fixed:

  https://rt.cpan.org/Ticket/Display.html?id=98109
  https://rt.cpan.org/Ticket/Display.html?id=47968
  https://rt.cpan.org/Ticket/Display.html?id=83980
  https://rt.cpan.org/Ticket/Display.html?id=102288
2015-08-06 11:03:39 +00:00
ryoon
d7f012aaad Update to 4.4.5.2
Changelog:
Bugs fixed compared to the 4.4.5 final (rc1):

    coverity#1266485 untrusted value as argument [Caolán McNamara]
    tdf#47832 FILESAVE: Pictures on buttons, created in forms, gone after reopening form [Zolnai Tamás]
    tdf#84762 F9 cell update fails in sheet with combination of randomnumber() with reference to other cells [Eike Rathke]
    tdf#88056 [FILE OPEN/SAVE] field Insert ▸ Field ▸ Page Title not saved / reloaded [Caolán McNamara]
    tdf#91453 Use configuration of text to number conversion also in arithmetic matrix operations (was: SUMPRODUCT() doesn't work well with 4.4.3) [Eike Rathke]
    tdf#92468 Range reference not justified in order when copied&pasted [Eike Rathke]


Bugs fixed compared to the 4.4.4 final (rc3):

    bnc#783638 DOCX import: inline picture should have no spacing [Miklos Vajna]
    deb#788713 fix (fatal) perl deprecation in lo-xlate-lang [Rene Engelhard]
    tdf#31577 Calc "INDIRECT" range intermittently fails [Eike Rathke]
    tdf#34548 EDITING: CRASH in action after Undo [David Tardon]
    tdf#34724 EDIT: unintended date recognition of input Jan1 or 1Jan [Eike Rathke]
    tdf#36406 EDITING - Saveas Hangs in Calc after an edit or on time interval set to save a copy. [Takeshi Abe]
    tdf#44419 Allow entire column or entire row ranges in formulae, e.g. A:A or 1:1 [Eike Rathke]
    tdf#46440 SIGSEGV in Application::IsInMain() [Caolán McNamara]
    tdf#55430 EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible [Caolán McNamara]
    tdf#61492 EDITING:Bullet and text overlap in edit view when text font size is increased by using (ctrl +]) shortcut. [Maxim Monastirsky]
    tdf#63685 FILEOPEN: docx import regression: graphic is not displayed [Miklos Vajna]
    tdf#65788 problems with .svg exported from Calc charts [Chr. Rossmanith]
    tdf#67712 form controls and draw objects anchored to cell but changes position after reopening [Henry Castro]
    tdf#68797 FILEOPEN lost position of lines anchored to cell [Henry Castro]
    tdf#70318 EDITING: Paragraph break is inserted unintentionally with Paste special > Text with formatting (rtf) [Miklos Vajna]
    tdf#74880 [Memory leak] LibreOffice crashing when importing data from 8+ ods files, but doesn't crash on same xls files [Caolán McNamara]
    tdf#78854 EDITING: Undoing layout change causes it to crash [David Tardon]
    tdf#79780 Icons not accessible after opening properties dialog in template manager [Caolán McNamara]
    tdf#81806 EDITING: Document corruption and crash when editing tables [Caolán McNamara]
    tdf#82553 FILEOPEN: Wrong import of DOCX with table (Summary in Comment 3) [Miklos Vajna]
    tdf#83365 Other: Access across spreadsheet returns Err:504 [Eike Rathke]
    tdf#84483 PRINTING: Print dialogue called from print preview causes writer to crash [Caolán McNamara]
    tdf#86017 Crash when pasting spreadsheet columns in DDE mode on writer [Caolán McNamara]
    tdf#86305 EDITING: Entering data into a cell changes array formula that references that cell [Eike Rathke]
    tdf#86814 FORMATTING: sometimes no bold style in RTF file [Miklos Vajna]
    tdf#87245 Crash when opening Page dialog, after sorting with a macro [Caolán McNamara]
    tdf#87348 linked textboxes/frames don't work in .docx format [Justin Luth]
    tdf#87460 Losing endnotes in table cell when reading docx in Writer [Miklos Vajna]
    tdf#87574 Outline numbering "None" is not retained when save as docx [Mark Hung]
    tdf#87820 Images not displayed properly in Calc [Caolán McNamara]
    tdf#88290 Numbering toolbar icon not working for certain locales [Maxim Monastirsky]
    tdf#88465 FILEOPEN PDF Import: incorrect image transformations [Vort]
    tdf#88697 FILESAVE: export to word 2003 .doc format formats bibliography entries not appropriately [Michael Stahl]
    tdf#88843 SIDEBAR: Can set over 100% transparency on frames using sidebar [Rishabh Kumar]
    tdf#88911 EDITING: Crash when dragging text from document to navigator pane [Caolán McNamara]
    tdf#89643 report builder: function wizard segfaults as soon as a function is inserted [Caolán McNamara]
    tdf#89698 DOCX: Images anchored with 'as character' should have no spacing [Miklos Vajna]
    tdf#89731 Crash opening docx file [Caolán McNamara]
    tdf#90001 EDITING: Delete firsts or lasts sheets used in 3D formulas generates a #REF error [Markus Mohrhard]
    tdf#90260 EDITING: Copying and pasting from rtf file to odt file adds a paragraph [Miklos Vajna]
    tdf#90315 FILEOPEN: RTF import incorrectly sets table columns positions [Miklos Vajna]
    tdf#90435 [CRASH] Nice to reproduce crash with Print Preview > Esc > Format Page [Caolán McNamara]
    tdf#90565 UI Dialog "Number format" (Writer tables) has focus on Help button, rather then on list Category [Katarina Behrens]
    tdf#90717 Calc crashes when deleting row number 11 [Eike Rathke]
    tdf#90804 Style preview doesnt show correctly in the Font tab [Andras Timar]
    tdf#90960 EDITING: soffice(Calc) crashes when entering CR at end of comment that was just copy/paste'd [Caolán McNamara]
    tdf#90996 EDITING: comment is erased when dragging formula vertically [Mike Kaganski]
    tdf#91001 Cannot increase font size [Maxim Monastirsky]
    tdf#91074 FILEOPEN:RTF FILE OPEN ERROR [Miklos Vajna]
    tdf#91095 crash exporting the given docx to docbook [Miklos Vajna]
    tdf#91214 Calc: Crash on exit (steps in Comment 9) [Caolán McNamara]
    tdf#91228 Writer crash Insert Image, Anchor as character, Go after image, press enter [Michael Stahl]
    tdf#91403 Crash in Insert - Fields - More Fields... [Caolán McNamara]
    tdf#91411 Problems with the cells recalculation - F9 also does not work (hard recalc needed) [Eike Rathke]
    tdf#91416 EDITING: Crash on changing value in simple spreadsheet [Caolán McNamara]
    tdf#91420 date recognition in DateValue [Eike Rathke]
    tdf#91425 CRASH - Calc Insert Columns Left [Takeshi Abe]
    tdf#91602 WRITER: Crash on paste with Zoom - Page width [Michael Stahl]
    tdf#91613 Writer: cannot open sections with double click in the status bar anymore [Andras Timar]
    tdf#91637 EDITING: Crash inserting cross-reference category and number if text in caption has been deleted [Caolán McNamara]
    tdf#91641 using kmfl in calc transposes characters when editing existing text [Justin Luth]
    tdf#91675 Updated Catalan bundled dictionaries (spellchker, hyphenation, thesaurus) [Andras Timar]
    tdf#91697 String in English in macro security dialog [Andras Timar]
    tdf#91726 AutoFormat: Crash when using an existing name for a new preset [Julien Nabet]
    tdf#91878 UI:no way to set a frame for a vertical orientation. [Caolán McNamara]
    tdf#91917 Clicking in the text or using Enter key does not move the cursor anymore [Michael Stahl]
    tdf¡n McNamara]
    tdf#92281 FILEOPEN: Only western font is set for symbols in DOC files [Mark Hung]
    tdf#92386 Writer crashes in print preview if the document is in two windows [Julien Nabet]
    tdf#92425 UI: Page view Sifr icons in status bar do not cd when user does not save changes in MS format files [Maxim Monastirsky]
    tdf#92438 regression in LibreLogo icon order [László Németh]
    tdf#92467 Calc crashes in find and replace dialog when arrow down is used [Caolán McNamara]
2015-08-05 12:34:52 +00:00
ryoon
2dde4a8e0e Update to 4.4.5.2
Changelog:
Bugs fixed compared to the 4.4.5 final (rc1):

    coverity#1266485 untrusted value as argument [Caolán McNamara]
    tdf#47832 FILESAVE: Pictures on buttons, created in forms, gone after reopening form [Zolnai Tamás]
    tdf#84762 F9 cell update fails in sheet with combination of randomnumber() with reference to other cells [Eike Rathke]
    tdf#88056 [FILE OPEN/SAVE] field Insert ▸ Field ▸ Page Title not saved / reloaded [Caolán McNamara]
    tdf#91453 Use configuration of text to number conversion also in arithmetic matrix operations (was: SUMPRODUCT() doesn't work well with 4.4.3) [Eike Rathke]
    tdf#92468 Range reference not justified in order when copied&pasted [Eike Rathke]


Bugs fixed compared to the 4.4.4 final (rc3):

    bnc#783638 DOCX import: inline picture should have no spacing [Miklos Vajna]
    deb#788713 fix (fatal) perl deprecation in lo-xlate-lang [Rene Engelhard]
    tdf#31577 Calc "INDIRECT" range intermittently fails [Eike Rathke]
    tdf#34548 EDITING: CRASH in action after Undo [David Tardon]
    tdf#34724 EDIT: unintended date recognition of input Jan1 or 1Jan [Eike Rathke]
    tdf#36406 EDITING - Saveas Hangs in Calc after an edit or on time interval set to save a copy. [Takeshi Abe]
    tdf#44419 Allow entire column or entire row ranges in formulae, e.g. A:A or 1:1 [Eike Rathke]
    tdf#46440 SIGSEGV in Application::IsInMain() [Caolán McNamara]
    tdf#55430 EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible [Caolán McNamara]
    tdf#61492 EDITING:Bullet and text overlap in edit view when text font size is increased by using (ctrl +]) shortcut. [Maxim Monastirsky]
    tdf#63685 FILEOPEN: docx import regression: graphic is not displayed [Miklos Vajna]
    tdf#65788 problems with .svg exported from Calc charts [Chr. Rossmanith]
    tdf#67712 form controls and draw objects anchored to cell but changes position after reopening [Henry Castro]
    tdf#68797 FILEOPEN lost position of lines anchored to cell [Henry Castro]
    tdf#70318 EDITING: Paragraph break is inserted unintentionally with Paste special > Text with formatting (rtf) [Miklos Vajna]
    tdf#74880 [Memory leak] LibreOffice crashing when importing data from 8+ ods files, but doesn't crash on same xls files [Caolán McNamara]
    tdf#78854 EDITING: Undoing layout change causes it to crash [David Tardon]
    tdf#79780 Icons not accessible after opening properties dialog in template manager [Caolán McNamara]
    tdf#81806 EDITING: Document corruption and crash when editing tables [Caolán McNamara]
    tdf#82553 FILEOPEN: Wrong import of DOCX with table (Summary in Comment 3) [Miklos Vajna]
    tdf#83365 Other: Access across spreadsheet returns Err:504 [Eike Rathke]
    tdf#84483 PRINTING: Print dialogue called from print preview causes writer to crash [Caolán McNamara]
    tdf#86017 Crash when pasting spreadsheet columns in DDE mode on writer [Caolán McNamara]
    tdf#86305 EDITING: Entering data into a cell changes array formula that references that cell [Eike Rathke]
    tdf#86814 FORMATTING: sometimes no bold style in RTF file [Miklos Vajna]
    tdf#87245 Crash when opening Page dialog, after sorting with a macro [Caolán McNamara]
    tdf#87348 linked textboxes/frames don't work in .docx format [Justin Luth]
    tdf#87460 Losing endnotes in table cell when reading docx in Writer [Miklos Vajna]
    tdf#87574 Outline numbering "None" is not retained when save as docx [Mark Hung]
    tdf#87820 Images not displayed properly in Calc [Caolán McNamara]
    tdf#88290 Numbering toolbar icon not working for certain locales [Maxim Monastirsky]
    tdf#88465 FILEOPEN PDF Import: incorrect image transformations [Vort]
    tdf#88697 FILESAVE: export to word 2003 .doc format formats bibliography entries not appropriately [Michael Stahl]
    tdf#88843 SIDEBAR: Can set over 100% transparency on frames using sidebar [Rishabh Kumar]
    tdf#88911 EDITING: Crash when dragging text from document to navigator pane [Caolán McNamara]
    tdf#89643 report builder: function wizard segfaults as soon as a function is inserted [Caolán McNamara]
    tdf#89698 DOCX: Images anchored with 'as character' should have no spacing [Miklos Vajna]
    tdf#89731 Crash opening docx file [Caolán McNamara]
    tdf#90001 EDITING: Delete firsts or lasts sheets used in 3D formulas generates a #REF error [Markus Mohrhard]
    tdf#90260 EDITING: Copying and pasting from rtf file to odt file adds a paragraph [Miklos Vajna]
    tdf#90315 FILEOPEN: RTF import incorrectly sets table columns positions [Miklos Vajna]
    tdf#90435 [CRASH] Nice to reproduce crash with Print Preview > Esc > Format Page [Caolán McNamara]
    tdf#90565 UI Dialog "Number format" (Writer tables) has focus on Help button, rather then on list Category [Katarina Behrens]
    tdf#90717 Calc crashes when deleting row number 11 [Eike Rathke]
    tdf#90804 Style preview doesnt show correctly in the Font tab [Andras Timar]
    tdf#90960 EDITING: soffice(Calc) crashes when entering CR at end of comment that was just copy/paste'd [Caolán McNamara]
    tdf#90996 EDITING: comment is erased when dragging formula vertically [Mike Kaganski]
    tdf#91001 Cannot increase font size [Maxim Monastirsky]
    tdf#91074 FILEOPEN:RTF FILE OPEN ERROR [Miklos Vajna]
    tdf#91095 crash exporting the given docx to docbook [Miklos Vajna]
    tdf#91214 Calc: Crash on exit (steps in Comment 9) [Caolán McNamara]
    tdf#91228 Writer crash Insert Image, Anchor as character, Go after image, press enter [Michael Stahl]
    tdf#91403 Crash in Insert - Fields - More Fields... [Caolán McNamara]
    tdf#91411 Problems with the cells recalculation - F9 also does not work (hard recalc needed) [Eike Rathke]
    tdf#91416 EDITING: Crash on changing value in simple spreadsheet [Caolán McNamara]
    tdf#91420 date recognition in DateValue [Eike Rathke]
    tdf#91425 CRASH - Calc Insert Columns Left [Takeshi Abe]
    tdf#91602 WRITER: Crash on paste with Zoom - Page width [Michael Stahl]
    tdf#91613 Writer: cannot open sections with double click in the status bar anymore [Andras Timar]
    tdf#91637 EDITING: Crash inserting cross-reference category and number if text in caption has been deleted [Caolán McNamara]
    tdf#91641 using kmfl in calc transposes characters when editing existing text [Justin Luth]
    tdf#91675 Updated Catalan bundled dictionaries (spellchker, hyphenation, thesaurus) [Andras Timar]
    tdf#91697 String in English in macro security dialog [Andras Timar]
    tdf#91726 AutoFormat: Crash when using an existing name for a new preset [Julien Nabet]
    tdf#91878 UI:no way to set a frame for a vertical orientation. [Caolán McNamara]
    tdf#91917 Clicking in the text or using Enter key does not move the cursor anymore [Michael Stahl]
    tdf¡n McNamara]
    tdf#92281 FILEOPEN: Only western font is set for symbols in DOC files [Mark Hung]
    tdf#92386 Writer crashes in print preview if the document is in two windows [Julien Nabet]
    tdf#92425 UI: Page view Sifr icons in status bar do not cd when user does not save changes in MS format files [Maxim Monastirsky]
    tdf#92438 regression in LibreLogo icon order [László Németh]
    tdf#92467 Calc crashes in find and replace dialog when arrow down is used [Caolán McNamara]
2015-08-04 19:11:09 +00:00
he
a47b1f085d ...and the patch to dtoa for NetBSD < 6.99.17. 2015-08-04 11:58:51 +00:00
he
f33deb0603 Update to goffice0.10 version 0.10.21, to allow an update of gnumeric112.
Pkgsrc changes:
 * Add various BUILDLINK_API_DEPENDS settings to express the dependency
   requirements in the upstream configure.ac.
 * Adapt PLIST
 * Add use of libxslt in the buildlink3.mk file.

Upstream changes extracted from ChangeLog:

goffice 0.10.21:
* clip each rectangle before drawing. [#744076]
* Avoid critical when loading fails.
* ensure that GOPixbuf keeps the original data around. [#745297]
* If no image data is given, create an unknown image placeholder.
* Plug various leaks.
* Doc fix.
* Set auto_font, apply font theming.
  Only save font when not auto.
  Be fairly smart about reading files created prior to this fix.
  Include auto_font and auto_color.
  Use sufficient precision.
* Use 0.0, not G_MINDOUBLE, to make cairo
  produce dots. That seems to be the documented way to do it.
* Ignore nans. [#744200]
* Protect oval drawing against invalid sizes.
* Avoid overflow.  Round a bit more consistently.
* Only draw oval heads when sizes are positive.
* Protect against missing data
* Initialize regres. Why didn't the compiler warn about that?

goffice 0.10.20:
* Don't wipe out marker colours just because the shape auto.
* Ensure that the dims number is correct in all cases. [see #743507]

goffice 0.10.19:
* Fixed typo in default map name.
* Allow the window to be maximized. [see #742897]
* Avoid rounding errors by using go_cospi and go_sinpi.
* Don't loose any data when using automatic bins. [#742996]
* Protect against missing data. [#742859]
* Add missing libraries to Requires.private.
* Don't return invalid ticks.
* Allow custom ticks and grid lines for axis lines. [#600482]
* Fix axis title position when at high coordinate.
* Don't use a data vector with no valid value.  [#741910]
* Protect against NULL y vector.
* Implement native scrolling.  [#741394]
* Only make window composited if the screen is. See bug 741455.
* Fix flags argument of gtk_icon_theme_load_icon.
* Make this work with icon names.
* Lean a bit heavier on libxml's encoding guess instead of g_get_charset
  which may be a bit random.
* Actually handle the claimed data: prefix.
* Avoid GtkColorSelDialog which is
  _gone_ from current gtk+. Use GtkColorChooserWidget instead.
* Handle a stock_id which is really an icon name.
* Simplify using gtk_action_create_icon which also handled named icons.
* Cleanup. Avoid warnings. Avoid unneccesary overflow.
* Plug leak.
* (_goc_canvas_remove_item): New function. Use of this fixes
  several crashes.
* If the canvas changes, tell the old canvas that child is gone.
* Don't mess directly with the canvas' members.
* Move the titles with the axis when some other axis has an offset. [#684777]
* Allow rotation of axis line labels. [#740198]
* Add new goc_canvas_invalidate_region().
* Don't use deprecated signal and functions.

goffice 0.10.18:
* Add baseline anchor values.
* Don't pass NULL to g_strtod(). [#735555]
* Don't skip encoding on user entered names
* Better file mode, (color_maps_load_from_dir): don't check the mime type
  as it seems not so reliable, just check the extension. [#735007]
* Create $HOME/.goffice/colormaps if needed. [#735008]
* Fixed more auto style issues. [see Debian #757611]
* Copy the pixbuf and set it back onto the image. An ABI change in gtk
  means that changes no longer take effect right away if we just change
  the image's pixbuf directly. Fixes #733350.
* Fixed persistence of line width.
* Center ticks by default.
* Add a missing cairo_restore() call.
* Fix theme support. [#733403]

goffice 0.10.17:
* Ensure test is locale independent.
* New GoUnit objects.
* Add control for 3D plots axes lengths. [#694746]

goffice 0.10.16:
* Don't crash when selecting the 3d box.
* Save and read auto-width.  Don't save width when auto_width.
* Apply font color.  Save auto_color and auto_font (but see
  comments).  Read auto-color.
* Keep values as integers as long as possible.
* Restore dashes with dots.
* Add a view class for the 3d box to support data that are view dependent.
* Change gog_chart_map_3d_new() signature to suppor the new view class.
* (gog_3d_box_populate_editor): fixed criticals.
* Don't use GDK_THREADS_*.  [728793]

goffice 0.10.15:
* goffice/math/go-dtoa.c (fmt_fp): Fix FMR.
  (go_dtoa): Speed up shortest-representation.
  Simple test for shortest-representation.
  When we have infinite room, just use go_dtoa to get the shortest
  representation.
  Improve short-representation handling.
* Add arguments, change all callers and output gnm:min-integer-chars
  Handle the difference between ? and #
* Add expand fields to GogPosition.
* Make charts expand.
* Fix alignment.
* Take expand field into account. [#728752]
* (go_dtoa): Mostly implement the shortest-version flag.
* Properly handle float/double properties.
* Handle TOK_REPEATED_CHAR.
* Improve phase detection.
* Handle text formats here too. That might not seem logical, but a
  text format really just has an "@" instead of some combination of
  0/#/?; all the other parts are handled identically.
* Handle invisible characters again.
* Use available space when position is manual but size is automatic. [#728391]
* Zero requisition before calling virtual method. All callers expect this.
* Fix argument type for g_lstat.
* Use g_stat, not raw stat.
* Don't output (meaningless) values for things that are "auto".
* (fmt_fp): Portability improvement.
* Explicitly allow manual charts size. [728134]
* Take manual size flags into account.
* Use a canonical gboolean as argument to gtk_widget_set_visible.

goffice 0.10.14:
* When building with !GOFFICE_WITH_LONG_DOUBLE, don't use go_finitel.
  Just assume we have isfinite.
* Drop a decimal by double-rounding the decimal string unless the
  string ends in '5'.
* (go_dtoa): Improve long-double handling.
* (fmt_fp): Three fixes from musl. (One we already had.)
* Another leak fix.  Introspection fix.
* (go_dtoa): New function.
  (fmt_fp): Fix buffer overrun. Hit "%.3E" for 999999999.
* Use go_dtoa extensively.
* Also flush string on '#' and '?'.
* Fix problem for 2^51 and like integers.
* New test program.
* Use go_ascii_dtoa.  Remove unused beyond_precision.
* Only use last condition as default if it is implicit. If that in
  turn means we have no default, use General.
* Always call cairo_restore().
* Remove remaining cond_part references. Handle embedded text.
* Plug leak.
* Retry failed deactivations as long as we make progress. (Some
  plugins depend on others.)
* Implement numbered colours instead of just parsing them.
* Match what LO does for "General".
  Make sure we don't accidentally output a non-character token as-if
  it was a single character.
* Don't make up a number format with nothing but maps in it. LO
  doesn't really like that.
  New argument keep_open controls whether to close the outermost xml tag.
* Handle conditional formats.
* Fix format prefix strings
* Figure out the correct number of digits to use for condition values

goffice 0.10.13:
* Plug leaks.
* Dispose of ->root instead of simply clearing it.
* Dispose of style context, if we have one.
* Don't save and restore style->width. Code was changed four years ago to
  copy the style. And restoring after the _unref is bad.
* Add test for buggy math library (probably caused by compiler bug).
* Fix criticals related to style contexts destruction.
* Really accept leave_notify events. [#668103][see also #706659]
* Write any started number.
* Don't reverse the order of elements. Fixes #698630.
* Write invisible characters but also write blank for LO and friends
* use GsfInputHTTP for URLs starting with "http://" or "https://". [see #724970]
* configure.ac: add test for lsm_itex_to_mathml
* use a local copy of lsm_itex_to_mathml and
  friend when not available. [#725693]
* Remove extra DESTDIR. Patch from Julian Sikorski. [#725684]

goffice 0.10.12:
* Fixed parent class.
* Makefile.am: add new mmlitex subdir.
* configure.ac: need libxslt.
* Fix data cleaning issues.
* Use the new GoMathEditor widget.
* New math editor widget.
* Use GtkGrid as parent.
* Add the new GoMathEditor widget.
* New MathML to ITEX convertor.
* New math equations component.

goffice 0.10.11:
* (none?)

goffice 0.10.10:
* && --> ||. Fixes bug 723820.
* Redo all icons here.
* Simplify sizing of icons.
* Handle reconfiguration of the toolbar the item is in.
* Always save the axis position. [#722402]
* Fix compiler warning.  [#721004]
* If we're not width-limited, add an extra digit if we don't
  round-trip properly.  Fix dropping of ".00000".
* Do quarters too.
* Improve accuracy.
* (go_add_epsilon, go_sub_epsilon): Base upon C99's nextafter.
* Test asin and acos.
* (go_complex_angle_pi): Handle diagonals too.
* Test hypot.
* Fix the on-axis case. *Sigh*
* Fix elements number in polar plot series. [#720355]
* Improve prevention of intermediate overflow.
* Fix crasher [#720310], fix valgrind warning.
* Fix enum confusion.
* Check value of go_quad_2pi.  Test go_quad_atan2.
* Fix class over premature overflow problems.
* Fix graph guru appearance when used with gtk+-3.10. [#719681]
2015-08-04 11:57:50 +00:00
mef
8360b19086 - Enable for Emacs25, say, add emacs25 for
EMACS_VERSIONS_ACCEPTED.
- Drop emacs20, from the same variable. Fails with  mail-parse.el
  is missing
(PKGREVISION stays the same, no changes if packaged fine.)
2015-08-03 13:16:58 +00:00
ryoon
23ee9e6341 Bump PKGREVISION.
* Enable report builder with jfreereport.
2015-07-30 21:56:30 +00:00
wiz
28f7f1e71d Update to 2.33.0:
- version: 2.33.0
  date: 2015-07-24

  new features:
    - title: "Driver for SONY DPT-S1."

    - title: "Edit Book: When showing suggestions for mis-spelled
    words, also show suggestions from user created word lists"

    - title: 'Edit Book: Check Book: Add a check for "invalid" ids'

  bug fixes:
    - title: "Conversion: Ignore stylesheets linked via media
    queries that use device specific features."

    - title: "Fix covers not being read from some TXTZ files."

    - title: "ODT Input: Add support for numbered lists that do
    not start numbering at 1."

  improved recipes:
    - msnbc.com
    - Houston Chronicle
2015-07-27 16:28:44 +00:00
wiz
4a5da1bab0 Update comment. 2015-07-21 19:18:25 +00:00
wiz
0917ae9948 Update to 0.4.1:
v0.3.1: 2015.03.26
- Nickname attribute added
- New parameter in config file: show_nicknames = yes / no

v0.3.2: 2015.03.27
- Read-only support for Categories attribute

v0.3.3: 2015.05.07
- twinkle option was renamed to phone: Now it prints all phone numbers like the mutt option does for
  e-mail addresses (more general approach for external phone clients)
- adapted twinkle plugin for use with the new phone option

v0.4.0: 2015.06.15
- new option "add-email": Get full email from stdin, filter senders mail address and add that
  address to an existing contact or create a new one. Feature tested with email client mutt.

v0.4.1: 2015.07.16
- improved search results for phone, mutt and alot
2015-07-21 19:17:51 +00:00
wiz
eddb161f9f Update to 2.32.1:
- version: 2.32.1
  date: 2015-07-17

  new features:
    - title: "E-book viewer: Automatically save the current reading
    position every ten seconds. Prevents loss of reading position
    on crash/forced shutdown."

    - title: "Edit Book: Check Book: Add checks for missing OPF
    version and toc references and for text placed directly inside
    the <body> tag"

    - title: "calibredb: Add a new search sub-command that can be
    used to generate a list of book ids from a search expression"

    - title: "Tag Editor: Place the keyboard focus on the last
    edited field."

    - title: "Edit metadata dialog: When clicking Next and Previous
    preserve the current tab of the edit comments widget."

    - title: "Linux: Various fixes to make calibre work when compiled
    against the latest versions of Qt and PyQt"

    - title: "Edit Book: Allow drag and drop of files onto dock
    icon on OS X"

  bug fixes:
    - title: "There was a regression in 2.32.0 that caused conversion
    to PDF to fail, the fix for this was released in 2.32.1"

    - title: "E-book viewer: Fix a regression in the previous
    release that caused the maximum text width setting in full
    screen mode to be ignored when switching from normal to full
    screen."

    - title: "Fix error in template dialog when using {id} in send
    to device preferences."

    - title: "Edit Book/Book polishing: Fix EPUB books with opf
    files that use a non-default namespace for the OPF namespace
    being corrupted."

    - title: "OS X: Workaround for Qt 5 regression that causes any
    errors during startup to be hidden behind the splash screen."

    - title: "Conversion: Fix incorrect relative URLs being generated
    when an HTML or CSS file is placed higher in the folder hierarchy
    than the opf file."

    - title: "FB2 Output: Fix error when using the sectionize with
    toc option and the input documents Table of Contents contains
    multiple items pointing to the same HTML file."

    - title: "Conversion: Fix error when input document contains
    a font size exactly one point away from the base size."

    - title: "Device drivers: Handle devices with undecodeable
    filenames in their filesystem. Simply ignore those files."

    - title: "Fix Cmd+Left/Right keyboard shortcut not working when
    editing items in the book list on OS X."

    - title: "Fix corrupted text in the jobs list on some non-English
    windows installs"

    - title: "Edit Book: Workaround for a Qt regression that caused
    'See what changed' after a search and replace on OS X causing
    the application to become unresponsive."

    - title: "Edit Book: Fix smarten punctuation not working for
    books with non-ascii characters in internal file names on OS
    X"

  improved recipes:
    - Harvard Business Review
    - Psychology Today
    - NRC Handelsblad
    - Entrepeneur Magazine
    - 20 minutes
    - Economia
    - Accountancy Age
    - Jakarta Post
    - Foreign Affairs
    - Spectator Magazine
    - Daily Express
    - The Onion AV Club
    - Metro UK

  new recipes:
    - title: Slate Star Codex
      author: Ned Letcher
    - title: Hurriyet
      author: Adrian Tennessee
2015-07-19 10:48:49 +00:00
ryoon
73182c8a5c Fix parallel build mechanism.
From asau@.
2015-07-16 11:55:26 +00:00
wiz
e8ba89b8e5 Bump PKGREVISION for poppler shlib major bump. 2015-07-15 15:09:37 +00:00
youri
01066b3f94 + xfce4-smartbookmark-plugin 2015-07-12 21:58:35 +00:00
youri
f1c9e467c1 Import xfce4-smartbookmark-plugin-0.4.6 as misc/xfce4-smartbookmark-plugin.
This plugin allows you to send requests directly to your browser and perform
a custom search. Some examples: http://www.google.it/search?q= if you want
to perform a search on Google or http://bugs.debian.org if something is wrong
with your system (assuming your distribution is Debian).

To search pkgsrc packages, use the http://pkgsrc.se/search.php?so= URL.
2015-07-12 21:58:01 +00:00
wiz
40bbad7ac6 Comment out dependencies of the style
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.

No effective change for the above reason.

Ok joerg
2015-07-12 18:56:06 +00:00
jperkin
88dac24590 Use nbcompat correctly, add patch comments. Fixes build on SunOS. 2015-07-09 11:44:09 +00:00
jperkin
50b73a00c2 Use nbcompat headers. Fix pid_t printing. Fixes build on at least SunOS. 2015-07-09 09:44:18 +00:00
ryoon
4323604bae Fix broken PLIST.
Reported by pgoyette@.
2015-07-05 08:27:41 +00:00
joerg
11d2712a27 Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
sborrill
05bdec8142 curses from NetBSD 5 and earlier will coredump when displaying shadows 2015-07-03 15:08:24 +00:00
joerg
d0edec56a6 Drop use of GNU extensions to allow building with other STL
implementations. The associated constructors are otherwise unused.
Bump revision.
2015-07-03 12:46:10 +00:00
ryoon
a128177cd9 Update to 4.4.4.3
Changelog:
4.4.4.3
List of fixed bugs

Bugs fixed compared to the 4.4.4 rc2:

    tdf#88295 FILEOPEN: White Background Appears in Impress Text Boxes [Katarina Behrens]

4.4.4.2
List of fixed bugs

Bugs fixed compared to the 4.4.4 rc1:

    tdf#90694 check bounds in RPN tokens, related and others [Eike Rathke]
    tdf#91228 fix Writer crash [Philippe Jung]

4.4.4.1
List of fixed bugs

Bugs fixed compared to the 4.4.3 rc2:

    bnc#203704 RTF export: fix unexpected table row break [Miklos Vajna]
    coverity#1296209 logically dead code (gold) [Caolán McNamara]
    rhbz#1198848 sw: delete *all* table redlines to fix DOCX import crash [Michael Stahl]
    rhbz#1205072 [abrt] libreoffice-core: SwListImpl::~SwListImpl(): soffice.bin killed by SIGSEGV [Michael Stahl]
    rhbz#1213173 [abrt] libreoffice-core: com::sun::uno::WeakReferenceHelper::clear(): soffice.bin killed by SIGSEGV [Michael Stahl]
    rhbz#1215060 pass std::exceptions through [Caolán McNamara]
    rhbz#1215443 [abrt] libreoffice-core: operator==<const editeng::MisspellRange*, std::vector<editeng::MisspellRange> >(): soffice.bin killed by SIGSEGV [David Tardon]
    tdf#55502 shell BASIC function with empty third param hangs [Julien Nabet]
    tdf#62536 RTF export: ignore hyperlinks without an URL [Miklos Vajna]
    tdf#65498 don't confuse logically r/o doc with physically r/o [Stephan Bergmann]
    tdf#66232 cannot open files by COM2 [Mike Kaganski]
    tdf#66999 odf2xhtml: there is no attribute 'name' [Robert Antoni Buj Gelonch]
    tdf#71034 [OS X] Ugly (too heavy) fake bold [Khaled Hosny]
    tdf#71278 fix cursor hiding in presentation mode [Matthew Francis]
    tdf#72007 on switching decks keep our left indent, don't assume 0 [Caolán McNamara]
    tdf#73211 gtk checkboxes need erase afer toggling [Caolán McNamara]
    tdf#75019 bookmarks in exporting to mediawiki [Robert Antoni Buj Gelonch]
    tdf#75256 improve sifr - autopilot and conditionalformatdialog [Matthias Freund]
    tdf#75360 line breaks in exporting to mediawiki [Robert Antoni Buj Gelonch]
    tdf#76825 styles drop down menu is too narrow [Caolán McNamara]
    tdf#78834 enable localized system dialogs on OS X [Andras Timar]
    tdf#79975 toggle checkered background back on [Caolán McNamara]
    tdf#80075 correct Writer formula bar screenshot [Andras Timar]
    tdf#80708 RTF export: fix unexpected table row break [Miklos Vajna]
    tdf#82968 python3: fix stdio detection on WNT harder [Michael Stahl]
    tdf#82998 assume VALUE_CHANGED makes sense only for windows [Caolán McNamara]
    tdf#83366 copy and Paste crashes Calc when original doc closed [Henry Castro]
    tdf#84435 mod operator does not deal with decimals as described in help [Julien Nabet]
    tdf#85424 sw: fix ~SwIndexReg assert in SwXText::insertControlCharacter() [Michael Stahl]
    tdf#85432 don't assume Country to be always present, follow-up [Eike Rathke]
    tdf#85769 fix duplicate attribute export to docx... [Caolán McNamara]
    tdf#86182 RTF import: fix handling of \rtlpar [Miklos Vajna]
    tdf#86329 interactive crop preview shouldn't scale proportionally [Trent MacAlpine]
    tdf#86624 it works if we first set the size and then the position, [Markus Mohrhard]
    tdf#87509 fix default sdr attribute is special object. [Thorsten Behrens]
    tdf#87545 don't confuse logically r/o doc with physically r/o [Stephan Bergmann]
    tdf#87735 updated Danish dictionary [Andras Timar]
    tdf#88056 implement ODF import/export of page title field [Katarina Behrens]
    tdf#89152 add missing .ui localizations to install script [Andras Timar]
    tdf#89182 draw Note mark before text for correct ZOrder [Laurent Godard]
    tdf#89231 if no font has 0x202F fallback to a normal space [Caolán McNamara]
    tdf#89510 enable "Check uppercase words" by default [Julien Nabet]
    tdf#89750 svx: fix ExternalToolEdit on Windows [Michael Stahl]
    tdf#89794 sw: implement SwXFlatParagraph::getPropertySetInfo() [Michael Stahl]
    tdf#89957 prevent crash, not really fixed [Eike Rathke]
    tdf#90110 basic: fix Randomize statement [Michael Stahl]
    tdf#90141 layout crash with table in footnote [Caolán McNamara]
    tdf#90155 don't hide+show window before initial show completes [Caolán McNamara]
    tdf#90264 missing translation in button UI for pt_BR [Andras Timar]
    tdf#90421 RTF export: ignore hyperlinks without an URL [Miklos Vajna]
    tdf#90474 line breaks in exporting to mediawiki [Robert Antoni Buj Gelonch]
    tdf#90604 vcl: reduce MapMode precision further to 32 bits... [Michael Stahl]
    tdf#90614 oups... I was too eager in replacing getAny() with makeAny() [Lionel Elie Mamane]
    tdf#90723 LibreLogo: missing oldlcap initialization [László Németh]
    tdf#90757 ensure start row / end row order makes sense [Eike Rathke]
    tdf#90808 sw: fix detection of duplicate CrossRefBookmarks [Michael Stahl]
    tdf#90809 i18npool: fix crash in Thai break iterator [Michael Stahl]
    tdf#90816 sw: fix bookmark loss in SwUndoDelete [Michael Stahl]
    tdf#90846 'Optimal View' mislabelled in English (GB) [Andras Timar]
    tdf#90905 fix for url encoding in internal urls [Vasily Melenchuk]
    tdf#90911 fix wrong parameter size on getsockname [Juergen Funk]
    tdf#90929 fix Thai translation of 'Tabloid' page format [Andras Timar]
    tdf#90946 sw: ODF import: ignore invalid gradient-name if style SOLID [Michael Stahl]
    tdf#90969 basic: add horrible hack to avoid crash due to ... [Michael Stahl]
    tdf#90999 import spreadsheetML cells with inline formatting tags [Robert Antoni Buj Gelonch]
    tdf#91009 correct thousands separator character for locale es_CR [Julien Nabet]
    tdf#91057 transliterateChar2Char throws MultipleCharsOutputException [Caolán McNamara]
    tdf#91078 check also DBData modified, not only named expressions [Eike Rathke]
    tdf#91140 ODF import: try to ignore invalid draw:fill="solid" [Michael Stahl]
    tdf#91195 vcl: reduce MapMode precision further to 32 bits... [Michael Stahl]
    tdf#91261 DOCX import: snapGrid property of paragraphs are ignored [Mark Hung]
2015-07-03 04:13:04 +00:00
wiz
417837b72d Update to 2.31.0:
- version: 2.31.0
  date: 2015-06-19

  new features:

    - title: "E-book viewer: Make the search engine used for
    searching for selected text configurable (in the Miscellaneous
    section of the viewer preferences)"

  bug fixes:

    - title: "E-book viewer: Fix dragging to select text with the
    mouse causing the page to slide sideways in paged mode, if the
    mouse leaves the text area."

    - title: "E-book viewer: Fix transitioning between full screen
    mode and normal mode sometimes causing current position to not
    be preserved."

    - title: "AZW3 Input: Ignore incorrect text encoding (incorrectly
    encoded bytes are now replaced by placeholders) instead of
    erroring out."

    - title: "Get Books: Update Legimi and CDP store plugins for
    website changes"

    - title: "Fix Cybook Nolimbook not being detected in linux and
    OS X."

    - title: "DOCX Output: Fix internal hyperlinks being ignored
    when they point to a HTML file whose <body> element has an id."

    - title: "Edit Book: Fix groups in replace template being
    interpreted backwards when search direction is up"

    - title: "Searching: When search as you type is active, do not
    change automatically change focus to the book list when searching,
    unless the user presses Enter."

    - title: "Font subsetting: Fix subsetting removing some needed
    ligatures when subsetting some Arabic fonts"

    - title: "Prevent errors when testing email sending even if
    stderr on the host machine is broken"

  improved recipes:
    - Baltimore Sun
    - El Mercurio Chile
    - Sydney Morning Herald

  new recipes:
    - title: Various Ukranian news sources
      author: rpalyvoda
2015-07-01 09:52:09 +00:00
jaapb
487d6ab2d3 Recursive revbump associated with update of lang/ocaml to 4.02.2. 2015-06-30 11:52:55 +00:00