summaryrefslogtreecommitdiff
path: root/readlicense_oo
AgeCommit message (Collapse)AuthorFilesLines
2020-06-24update creditsChristian Lohmaier1-1484/+1583
Change-Id: I0295600d528facb0411981a68c1c8a4224bf1dc5 (cherry picked from commit c49378d1233f33d6110eafdfaaf4cff0824732e3)
2020-06-17license: add Belarusian hyphenation dictionaryAndras Timar1-1/+291
Change-Id: I3dfbefcb8554bacf0a1b1747fc24e8d96ee09037 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96440 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 60ea3aeba38912510506ebb0ee3ca5431ed35d28) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96502 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2020-05-13update creditsChristian Lohmaier1-1766/+1819
Change-Id: Ia17d96dc31e86e8cce822c39f1e129a610ef0646
2020-04-29Remove tango icon theme, tdf#132022Rizal Muttaqin1-10/+0
Change-Id: Ifd1d3999d1c6eb9aba7919850859e6b7cb652e3b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92055 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2020-04-22update creditsChristian Lohmaier1-1370/+1384
Change-Id: Ic21818bfa1b45f06344cbe92c5d57324654a5e04
2020-04-07update creditsChristian Lohmaier1-1613/+1659
Change-Id: I54aa5f399f8c1a7117d0f206752a25a02bb3819a
2020-03-11update creditsChristian Lohmaier1-1352/+1402
Change-Id: I90fba19d96f0fce6ca0e63c83e6dd45087f81c0a
2020-02-27tdf#130725: use strtod by David M. Gay to make sure we get the nearestMike Kaganski1-0/+19
... representation of given decimal. Use dtoa.c from https://www.netlib.org/fp/dtoa.c to build a custom static library that doesn't use current locale (unlike strtod from stdlib.h). This is the implementation used by e.g. python and nss (search for "dtoa.c" under UnpackedTarball). To avoid name clash with the standard strtod, rename the function to strtod_nolocale. Size of buffer on stack in ImpSvNumberInputScan::StringToDouble is 256 characters. Logging function usage in make check, of ~124 600 invocations, the longest string was 14 characters, average being 2.1 characters. So heap allocation is unlikely in scenarios with intensive function usage. After std::from_chars is available in baseline compilers, external library can be dropped, and call to strtod_nolocale replaced with the standard function. The artifact at https://dev-www.libreoffice.org/src/dtoa-20180411.tgz is created with mkdir dtoa && mkdir dtoa/src && wget https://www.netlib.org/fp/dtoa.c -O dtoa/src/dtoa.c && \ printf 'd8bab255476f39ea495c8c8ed164f9077da926e6ca7afb9ad3c56d337c4484fe dtoa/src/dtoa.c' | sha256sum -c && \ tar -c --owner=0 --group=0 --mode=go=r,u=rw --mtime='Wed, 11 Apr 2018 15:59:39 GMT' dtoa/src/dtoa.c | gzip -n > dtoa-20180411.tgz && \ printf '0082d0684f7db6f62361b76c4b7faba19e0c7ce5cb8e36c4b65fea8281e711b4 dtoa-20180411.tgz' | sha256sum -c (where the date "Wed, 11 Apr 2018 15:59:39 GMT" is from `wget -S https://www.netlib.org/fp/dtoa.c` "Last-Modified: Wed, 11 Apr 2018 15:59:39 GMT" header). Change-Id: Ia61b7678e257c4bc1ff193f3f856d611aa5c1a21 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88854 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2020-02-26Resolves tdf#130500 - Sukapura icon themeHeiko Tietze1-0/+13
Added to core and made default on macOS Change-Id: I1c1e8caab514198717cf6cd7e8c00a1c1d5c15da Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89183 Tested-by: Jenkins Tested-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2020-02-20update creditsChristian Lohmaier1-1629/+1663
Change-Id: I35d24b2ace80622fc81935039a833121f1da2795
2020-02-16GBUILD_TRACE, support for finding out where the build time is spentLuboš Luňák2-0/+10
See instructions in solenv/gbuild/Trace.mk . This generates a file than can be viewed e.g. in the Chromium tracing view. Change-Id: I5f90647c58ca729375525b6daed2d4918adc8188 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88754 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2020-02-11update creditsChristian Lohmaier1-1890/+2199
Change-Id: I21a49cb649ebdc6b8af50f0b92decb77887e721c
2020-01-09python3: bundle libffi for GNU/Linux buildsMichael Stahl1-0/+23
CPython commit f40d4ddff3c800b3c956a5e8820aabe3aa87cddd "Closes #27979: Remove bundled copy of libffi" causes a bit of a problem because it turns out that libffi isn't all that stable; there's libffi.so.5 on CentOS 6, libffi.so.6 on CentOS 7 and libffi.so.7 on lo_daily_update_gandalf tinderbox. So we have to bundle it in LO; it's only used on GNU/Linux currently. CPython commit 32119e10b792ad7ee4e5f951a2d89ddbaf111cc5 "bpo-35947: Update Windows to the current version of libffi (GH-11797)" also removes the libffi for MSVC, so in a future python upgrade we will have to build libffi for MSVC too. The libffi fork for MacOSX is still in CPython git master. (regression from b10be5d48433076f0b7238d818020f708553e114) Change-Id: Ibc20cf8cd3614cf9941b6970662bd930496776b2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86493 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
2020-01-02Bump copyright year to 2020Adolfo Jayme Barrientos1-1/+1
Change-Id: I6fb736591f32907c8977fbac8fbf1dcbaef1bb97 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86092 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-12-20Point to the right readmeIlmari Lauhakangas1-1/+1
Part of Redmine issue 2556 Change-Id: I4bc21162d10170caff6ee44330747a698f7f6b41 Reviewed-on: https://gerrit.libreoffice.org/85423 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-12-05update creditsChristian Lohmaier1-1586/+1653
Change-Id: I7f35a5dcb3d5c22439890163699e0c9999f256eb
2019-11-27initial build of the Skia libraryLuboš Luňák1-0/+24
Not quite complete yet, missing e.g. Vulkan sources, and the setup is not completely correct either. Change-Id: I2283bf12f0d226ff8a34554deae5a7bd69045971
2019-10-24readlicense_oo: update requirementsIlmari Lauhakangas1-5/+5
Linux requirements according to what is available in CentOS 7. Matches https://www.libreoffice.org/get-help/system-requirements Change-Id: I91e6141198f441e01f976b58a3adeed3cd80abdd Reviewed-on: https://gerrit.libreoffice.org/81339 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-10-23update creditsChristian Lohmaier1-1559/+1571
Change-Id: Iad1765bef9e47d5a1588f43b170245c05d590f9a
2019-10-20readlicense_oo: Bump minimum GTK requirementAdolfo Jayme Barrientos1-1/+1
3.18 is required to build since commit 12b01c535a05516e1b7c75c316f0cde8e12e3e0b, and GTK 2 support was removed in commit 1ae450504cf57457f9702684b1517fda1dd3c481 Change-Id: I9143cdbf8447934bace2ca6aca06292f96755835
2019-10-10update creditsChristian Lohmaier1-1311/+1339
Change-Id: Ib98367116f9727f6ec54372d4cd90b657258b0d7
2019-09-18update creditsChristian Lohmaier1-1416/+1486
Change-Id: I4d6c996cbc25053fed93ce62e261c6ae77119961
2019-08-15Related tdf#101957: glibc2 should be at least 2.14Julien Nabet1-1/+1
Change-Id: Ifd634e32fd0482da41dcb76e33a7de3302e0bc6e Reviewed-on: https://gerrit.libreoffice.org/77517 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-07-31update creditsChristian Lohmaier1-1873/+1914
Change-Id: Ib225bd0d58cb9c0dff88961a064f1a19ae91d528
2019-07-02bundle external: qrcodegenShubham Goyal1-0/+26
The bundle helps to generate QR code in LO. Change-Id: Iaa9225a72d15806c929d30951cefd3f3fee8960e Reviewed-on: https://gerrit.libreoffice.org/73302 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
2019-06-26update creditsChristian Lohmaier1-4426/+4472
Change-Id: Ifd72d26db7303ef2e3dbb7ea1212884804889051
2019-05-17update creditsChristian Lohmaier1-4163/+4158
Change-Id: I7d712426ff82242fd1a53779ad1e7df6d6fa86d9
2019-04-25update creditsChristian Lohmaier1-1267/+1293
Change-Id: I28e8d8e4ab940ae838fc555702b5580dc76931dd
2019-04-20license: update terms of Serbian dictionaryAndras Timar1-4/+3
Change-Id: Ia50f8c5e5291ae0ee25e43c04e84cf482cf9cc41 Reviewed-on: https://gerrit.libreoffice.org/71008 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-04-09update creditsChristian Lohmaier1-1830/+1888
Change-Id: Ib1d4c660ff8578d86dc2dddb1aeb55b95f127cb8
2019-04-01(blind) fix of 'ERROR: Source for LICENSE.html not found!' on macOSAndras Timar2-4/+4
Change-Id: I0f87d96691281e773b48ab11380c0dfa3a65ebba Reviewed-on: https://gerrit.libreoffice.org/70083 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-04-01Fix typoAndrea Gelmini1-1/+1
Change-Id: I8902724d36f789c35d26a89f7288492184d23c1a Reviewed-on: https://gerrit.libreoffice.org/70023 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-31license: fix one more internal linkAndras Timar1-1/+1
Change-Id: I22b33d80a65bc55765ff13f39459de6f68485caa
2019-03-30license: fix a few internal linksAndras Timar1-20/+18
Change-Id: I9139bb22881e7761028a7b78ac644bea4f83e35b
2019-03-30license: update 'Dictionaries' sectionAndras Timar1-21/+79
Change-Id: I18ec509ffac02bba0fd6191041a8f994034c8e74
2019-03-27license: add xmlsec-mscrypto and xmlsec-mscngAndras Timar1-0/+40
xmlsec-mscrypto is for LibreOffice <= 6.1 xmlsec-mscng is for LibreOffice >= 6.2 But who knows where this this patch will be backported. Let's include both. Change-Id: I4c35a7e63c7024022e0215f9dad486afae0896f9
2019-03-27license: update 'Artwork' sectionAndras Timar1-9/+116
Change-Id: I9528ea941f4c837b31e8bc8d05d3a5d963567033 Removed: KDE Krystal theme Added: Breeze, Colibre, Elementary, Karasa Jaga, Sifr Reviewed-on: https://gerrit.libreoffice.org/69811 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: remove 'Miscellaneous' sectionAndras Timar1-19/+0
'Adobe Printer Description Files' and 'International Color Consortium sRGB Profiles' are not included in LibreOffice. Change-Id: Ia8270bf12011de51532bda7b4d10c8120e632472 Reviewed-on: https://gerrit.libreoffice.org/69781 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: add GPGME, Libassuan, Libgpg-errorAndras Timar1-0/+22
Change-Id: Id0383511d4970fea4413ad2ca2075983d9d6fd34 Reviewed-on: https://gerrit.libreoffice.org/69779 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: add OpenGL Mathematics (GLM)Andras Timar1-0/+18
Change-Id: Ia90e817eb9bcb7ce4e634c15e95206d90c3b957d Reviewed-on: https://gerrit.libreoffice.org/69778 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: add more missing fontsAndras Timar1-0/+200
Alef, Amiri, Culmus, EmojiOne, KACST, Libre Hebrew, Noto, Reem Kufi, Scheherazade Change-Id: Iabaf42f14fa9305b133808a8ab3d510b3befaefe Reviewed-on: https://gerrit.libreoffice.org/69776 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: add Source Serif Pro font + remove 2 bogus linksAndras Timar1-6/+13
Change-Id: Iba62df3d1d5d33afdcc27b3e727ffd44fdd15c66 Reviewed-on: https://gerrit.libreoffice.org/69775 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: OpenSans and PT Serif fonts are not included in LibreOfficeAndras Timar1-14/+0
Change-Id: I91437098bcf869834c2a28d44e065f5bd966a41a Reviewed-on: https://gerrit.libreoffice.org/69774 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-27license: Adobe PostScript® AFM files are not included in LibreOfficeAndras Timar1-9/+0
Change-Id: I63a47b35b1f2fef7601dadbadf6afc3ae5206ce1 Reviewed-on: https://gerrit.libreoffice.org/69773 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-26license: add conditions for bundled extensionsAndras Timar1-15/+21
Change-Id: Ia7f8b463491284c87ac90f6778e0bc6786e77713 Reviewed-on: https://gerrit.libreoffice.org/69754 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-26license: include LPPL only when there are dictionaries (+ re-formatted text)Andras Timar1-415/+264
Change-Id: I835c65e04b25a12dd107cbcfbde30f8f5447e0ea Reviewed-on: https://gerrit.libreoffice.org/69753 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-26license: add CoinMP (and Common Public License 1.0)Andras Timar1-0/+153
Change-Id: I90fabd90c96f64d6dbe0175fe0d077095a22bd2e Reviewed-on: https://gerrit.libreoffice.org/69752 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-26license: add libabwAndras Timar1-0/+6
Change-Id: I352b076533b7ea30c3fb33deaa89cfe5036cb08a Reviewed-on: https://gerrit.libreoffice.org/69751 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-03-25license: fix ordered listAndras Timar1-4/+0
Change-Id: Ibed1e498226e2e1672941a3a51f3b6abdfb471af
2019-03-25license: add libjepg-turboAndras Timar1-55/+195
Change-Id: Ifc5c9686941671e261fef9a57b04751c6b918ce4