summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-06-05tdf#119082 Exception wrong thread on Android ViewerMert Tumer1-1/+6
Change-Id: I58a8d104b24c7cf2d021e2dce700e25592c8a605 Signed-off-by: Mert Tumer <merttumer@outlook.com> Reviewed-on: https://gerrit.libreoffice.org/58563 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2019-06-05tdf#118585 Fix exception when closing Android ViewerMert Tumer1-0/+1
Change-Id: I9d87168dce4b5c6e503d41366aa35d5dadf89dae Reviewed-on: https://gerrit.libreoffice.org/57081 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2019-06-05android: simplify boolean statementChristian Lohmaier1-3/+2
Change-Id: I92cdccfe7b97d9baf29b1155990a38b26579e365
2019-06-05android: suppress deprecation warning for Html.toHtml(String)Christian Lohmaier1-1/+4
deprecated since 24/Nougat, but we still want to support devices running Marshmallow and older.. Change-Id: Iedcf8a56028eff44134b548dc07a89573cb2210d
2019-06-05tdf#117777 fix show hidden files/folders option on AndroidMert Tümer1-1/+11
Change-Id: Ic80ca7f8ebb93f78a58cc0ad778db90deb0c51ba Signed-off-by: Mert Tümer <merttumer7@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/54771 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-06-05android janitor... convert chained ifs to switch statementChristian Lohmaier3-24/+36
Change-Id: I9929bd077a33349a6e57c3a427df7e77b3007c88
2019-06-05pdfium: don't need two copies of freetype on android eitherChristian Lohmaier1-1/+1
Change-Id: I581575e2b13482d16aca284bfa502ed164b8c9d0
2019-06-05tdf#96795: Use locale-sensitive sorting in Android viewerMert Tümer1-2/+5
Change-Id: I98edec9f57f1bf0576e16a1ba3c0e023d6d0b6ed Signed-off-by: Mert Tümer <merttumer7@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/52494 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-06-05add hint on how to use lldb pretty-printers form within android studioChristian Lohmaier1-0/+3
Change-Id: Ia028dd64c04d1de95e42ea2b89ee2bca689a2390
2019-06-05libmspub: fix build for android-arm with debug enabledChristian Lohmaier2-0/+18
Change-Id: I2fff80f2e4a0bd1946c9b49d46871245f93bbb3e
2019-06-05tdf#116152 fix unsupported url exception on Android ViewerMert Tümer1-2/+16
Change-Id: I39233369e754919aeb0dc46856a3746f33e89e9b Signed-off-by: Mert Tümer <merttumer7@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/51675 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-06-05-Werror,-Wunused-parameter (Android)Stephan Bergmann1-0/+3
Change-Id: Ib15218f1f3bc2867ca0e8daa50a2d4edad4a9d87
2019-06-05sal android: fix -Werror,-Wimplicit-function-declarationMiklos Vajna1-0/+1
Change-Id: If19dbb654d473e8785dc69f96775c78cc95a7bd6
2019-06-05sw android: fix -Werror,-Wsign-compare, take twoMiklos Vajna1-2/+4
This time not breaking other platforms. Thanks to Stephan Bergmann for suggesting this alternative way. Change-Id: I2535e57de1aafd17960a1d1054fc58a47933bb58 Reviewed-on: https://gerrit.libreoffice.org/49441 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
2019-06-05tdf#115388: Android: Use HTTP SecureXisco Fauli1-1/+1
Change-Id: Ia2e198c20b904ba178fac2969dfa80f3f1291be1 Reviewed-on: https://gerrit.libreoffice.org/49123 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-06-05fix android red and blue channel swap on jpegs w/ 24bit RGB surfaceChristian Lohmaier1-1/+7
that was introduced with 54596087e57ea533253e19eea594d9b6c06e8d26 without adjusting for Android accordingly Change-Id: Ie6a2001ab13ecec959da9b57bb49e1bac76e8691
2019-06-05android: fix some layout issues with new-document buttonsChristian Lohmaier7-83/+88
functionality to create new documents was added for tdf#106325 with commit 1503769fe15c122ff2bb8f6f7e7b4ab72656ddc2 However the commit had some issues, most notably clipping of the shadow effect and alignment issues to to scaling down (via the animation effect, took me quite a while until I looked at that) with having a centered pivot. I think it was due to those alignment issues that the label was set to a fixed with - which is a problem for future translation. This commit: * changes the animation to not scale down the initial views * changes the FABs' setting to use compatPadding - this not only ensures enough room for the shadow, but also allows for consistent look across android versions. Side effect is that it needs more height, so * the effect was adjusted accordingly, to shrink to/expand from the lower-right corner of the parent view, instead of "mid-air" * the labels were given a proper background drawable with rounded corners and some padding for a (much more9 polished look * formatting of the labels was split out to a style, for ease of tweaking the looks * add tools:visibility statement to see the elements in layout editor * fixed the strings for the labels (and ID) to some less awkward ones Change-Id: Ifd2d90ec8d23e40603edff19c9af9e0b32090c9f Reviewed-on: https://gerrit.libreoffice.org/42033 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2019-06-05android: make compat header self-containedMiklos Vajna1-1/+4
Change-Id: I0362725646521c9e2126faeaaf35a1c1dbf775af
2019-06-05i18npool: try to fix Android build, no std::truncMichael Stahl1-0/+2
Change-Id: Idf609a4012499e76acc5e7ae76565937f2a58fbd
2019-06-05sal: try to fix Android build, no std::roundMichael Stahl1-0/+1
Change-Id: I58bc7c9099cd2a3a90f92efbd179d0f3abce02a6
2019-06-05tdf#103083 option to show/hide hidden files/folders on AndroidMert Tümer3-1/+23
The patch was sent for the ULAKBIM/PARDUS project. Signed-off-by: Mert Tümer <merttumer7@gmail.com> Change-Id: Iadbb688a1a976279b23d246001818ac1c21b3d47 Reviewed-on: https://gerrit.libreoffice.org/47637 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-06-05update android rgba cairo patch to apply againCaolán McNamara1-6/+6
Change-Id: Iaee918439f8472bab7fab2cf545ac2e420d614ab
2019-06-05oox: fix Android buildMiklos Vajna1-0/+1
Change-Id: Iad0d51311ba0e74e1fbc33ee3fb09c8c9a89b0c0
2019-06-05oox: try to fix Android build, no std::lround thereMichael Stahl1-0/+2
Change-Id: I47e1df5d27e788ef5aa48c3a09daf9888c33f920
2019-06-05have "make clean" also remove android's/gradle's output dirsChristian Lohmaier1-0/+8
esp. removing the jniLib one is important, as otherwise it is easy to package both x86 as well as arm libs into the apk, making it huuuge :-) Change-Id: I6364b82800a449682b618f0bb98a47825dcb0742
2019-06-05disable SwUiWriterTest2::testTdf122942 on WindowsAndras Timar1-0/+2
Change-Id: Ie885224f257916debec85ab4a42435ff606b0acd
2019-06-05[cp] HACK: sleep before signco-6.0-32Andras Timar1-0/+1
On Windows, with 16x parallel build, build-nocheck target fails, because it tries to sign a file that is already in use (gengal). Change-Id: Ic582334f2c02f5e38f49d048fc0425025ffeee41
2019-06-05Bump version to 6.0-32Andras Timar1-1/+1
Change-Id: Ic1eeb36584144785f1ec5c502140ea0405020cac
2019-06-04tdf#118375, tdf#70838 correct position of rotated shape in docRegina Henschel4-0/+64
Word relates the position to the unrotated shape in legacy doc format. Writer uses the rotated shape. The patch corrects the difference on import and export. Reviewed-on: https://gerrit.libreoffice.org/70152 Tested-by: Jenkins Reviewed-by: Regina Henschel <rb.henschel@t-online.de> (cherry picked from commit 421e6fc3cd2e6fe37afbef341e2d0ad7b8edde37) Change-Id: I25537123656e62d6ffae5118ee8d621a4b5c5be0
2019-06-04Register spsupp*.dll during installationMike Kaganski10-4/+373
This registers SharePoint integration libraries using regsvr.exe. Both 32-bit and 64-bit libraries are registered; registration of SharePoint.OpenDocuments is unconditional (subject to ActiveX feature install state), substituting respective MSO component. This only works for 32-bit MSI, because in case of 64-bit MSI, only 64-bit SharePoint DLL is included; this makes the library ~useless in case of 64-bit MSI, because IE needs 32-bit component absent there. Proper solution will be created for master branch. Change-Id: Ic5bf9e7090acfaa17d47cb72b9ebfd483242f656 Reviewed-on: https://gerrit.libreoffice.org/72801 Reviewed-by: Aron Budea <aron.budea@collabora.com> Tested-by: Aron Budea <aron.budea@collabora.com>
2019-06-04tdf#122221: Bin apparently unnecessary early returnTor Lillqvist1-0/+2
Removing these few lines of code fixes the problem on iOS, as far as I can see. Let's hope it doesn't introduce any new issue in the iOS app. In this branch, I didn't have the clout to remove them for macOS, too. Change-Id: I2380d010ba223a698acfe916fca4580a1502be98
2019-06-04Resolves: tdf#125279 do not double _x005F_ escapementEike Rathke1-10/+33
Reading OOXML _x005F_ escaped content may not get unescaped, so when writing back to OOXML do not attempt to escape it again, i.e. write _x005F_xHHHH_ as is and not as _x005F_x005F_xHHHH_. This is more a workaround, the proper fix would be to unescape _x005F_ content upon read. But then the entire "invalid XML character" escapement and handling control characters rat tail would come into play. Change-Id: I3d31dc84a362753c23a8c89f7a5d7bfd06e4367b Reviewed-on: https://gerrit.libreoffice.org/73187 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit f677885fec59f252f36673ee4d8c0b4863625a4d)
2019-06-04More loplugin:cstylecast: scriptingStephan Bergmann1-3/+3
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable loplugin:cstylecast for some more cases" plus solenv/clang-format/reformat-formatted-files Change-Id: I52e58aa38c600faf677e932cb3caad07547ccbb7 (cherry picked from commit 02416cc1ce1f5d64265d509a0c1b149d11b5a3cb)
2019-06-04tdf#120145 ww8import: ignoreCols if section is insertedJustin Luth2-3/+15
Otherwise, the column setting is duplicated both in the section and in the page style. Change-Id: I14383c646e709a3653f1054f0d4170a2963529c1 Reviewed-on: https://gerrit.libreoffice.org/66151 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org> (cherry picked from commit 84fefd7c295fc05499ca222dff50c2fe4e0fb27e) Reviewed-on: https://gerrit.libreoffice.org/66217 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> (cherry picked from commit 0e863f5529318e07f46568150e489cb0bef9b616)
2019-06-04Add css_comp_Impress_oox_PowerPointExportTor Lillqvist1-0/+2
Change-Id: I17d95cce0dd69e2ba8b4ebc7045544fc5659a249
2019-06-04Fix "external" graphic filter code for the DISABLE_DYNLOADING caseTor Lillqvist1-16/+14
The DISABLE_DYNLOADING case in ImpFilterLibCacheEntry::GetImportFunction() had apparently been broken from the start, but nobody never noticed as the common formats (PNG, JPEG, GIF etc) use a more "internal"code path. The problem was noticed now with a TIFF image in a presentation. The fix for the import case seems to work, but I could not test the fix for the export case. Change-Id: Icbd33c7cb654136a562f18b06d5b0896e701bf3d
2019-06-03mysqlc: Add support for mysql type INT24Tamas Bunth1-4/+7
Which is mapped to sal_Int32. Change-Id: Ibf12e92a20034440fa990ed0c6f1196f4ca3f40f Reviewed-on: https://gerrit.libreoffice.org/73218 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-06-03lok: Fix status of InsertPage, DeletePage and DuplicatePage.Jan Holesovsky1-6/+3
Status true / false means checked, status enabled / disabled means the visibility (enablement) of the uno command. Change-Id: Ib2671984f59ffd5e6f1823a65ea42b33bdfe67d6 Reviewed-on: https://gerrit.libreoffice.org/73384 Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Tested-by: Szymon Kłos <szymon.klos@collabora.com>
2019-06-03[cp] sw HTML import: change config default to always ignore commentsMiklos Vajna1-1/+1
Change-Id: Iae6191fbcf1d02e9e5dd29613eaf5c36646afccc Reviewed-on: https://gerrit.libreoffice.org/73084 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2019-06-03sw HTML import: add an option to ignore comments by defaultMiklos Vajna2-0/+17
No function change, default behavior is still mapping them to postits. (cherry picked from commit 256107622c252afdce35d1c77fe70eb4e4bc57ce) Conflicts: sw/source/filter/html/swhtml.cxx Change-Id: I55041452909e9f0b83d6c5d113af3067b3c0afdb Reviewed-on: https://gerrit.libreoffice.org/73083 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Miklos Vajna <vmiklos@collabora.com>
2019-06-03Revert "[cp] sw HTML import: ignore comments unconditionally"Miklos Vajna1-1/+0
This reverts commit f6d2125bf3511701d261b83bbfc50785b707d026. No need to hardcode this, we'll have a proper option instead. Change-Id: I9778c19715d52bfa066585791b2002e9837e1d14 Reviewed-on: https://gerrit.libreoffice.org/73082 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2019-06-03Add distro config for iOS simulator to make building easierTomaž Vajngerl2-1/+34
Change-Id: Iff70622732792224b3c0a080f95d69f86c167ae6 Reviewed-on: https://gerrit.libreoffice.org/73369 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
2019-06-03LOK: Factor out iOS painting codeTomaž Vajngerl1-27/+44
Change-Id: Ica706842003fe60ba864e013614eb535580446bb Reviewed-on: https://gerrit.libreoffice.org/73365 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
2019-06-03tdf#123697 we need to create a bitmap context with alphaTomaž Vajngerl1-1/+1
Change-Id: Ib934314e56163983e70a0b04eb667e6b8527c783 Reviewed-on: https://gerrit.libreoffice.org/73364 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
2019-05-31tdf#124364: Add some missing components from chart2, svtools, and xmloffTor Lillqvist1-0/+4
Change-Id: Ie9efd1c5b4f5f6ffa66215df27a78027ba0dea39
2019-05-31Add the Visio import filter constructorTor Lillqvist1-0/+2
Change-Id: I6f1ebf18e0565862703bcd4291f2705c8a605de0
2019-05-31Add the librevenge libraryTor Lillqvist1-0/+1
Change-Id: I786001d66e9b40df5c30e19ff2381c9ed6c7db94
2019-05-31-Werror,-Wself-assignStephan Bergmann1-1/+0
...ever since 2bd76c3928d6250c287fb8910e8843d035100e5e "INTEGRATION: CWS aw033", and looks like it wants to use the aRetval = rCandidate.getB2DPoint(nIndex); already assigned to it ahead of the if/else branches. Change-Id: Iac242281312fe28b9a17a6a2a930e9597f77b7aa Reviewed-on: https://gerrit.libreoffice.org/52811 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit 4bf1bf9dd4598f34e43c7c8a69f3665175c3cae5)
2019-05-31tdf#122765: Legend interferes with pie chart after pptx import, second partTamás Zolnai1-2/+2
Revert of: 2903c5f59d257b6ab94f32df64513f2edf94fb0b Reverting this commit does not lead to the original bug to come back, so we can revert it without a problem. Change-Id: I244a6b9451c47e1094db8a77c71b6696e0c464cc Reviewed-on: https://gerrit.libreoffice.org/73139 Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 63d17d01da0f9e3a7554e4327244ee4457b7188d) Reviewed-on: https://gerrit.libreoffice.org/73160 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2019-05-31tdf#122765: Legend interferes with pie chart after pptx importTamás Zolnai3-1/+23
Revert the commit caused this regression: 0fc41c53dfbd21e526fb0ad68a6651693c4a2ecd The original issue does not come back with reverting this commit. Reviewed-on: https://gerrit.libreoffice.org/72679 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 10609749126ca76eaf12904d4cce9cc5a16d8405) Change-Id: I666c4f92e3b70b416ec6da7a704298d207451649 Reviewed-on: https://gerrit.libreoffice.org/72767 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>