[Libreoffice-commits] core.git: config_host.mk.in configure.ac ios/CustomTarget_iOS_link.mk ios/DISCLAIMER_WARNING ios/.gitignore ios/LibreOfficeLight ios/Module_ios.mk ios/README ios/source

2020-12-21 Thread Tor Lillqvist (via logerrit)
8beaafcaa27a66841a9d959eba125ec410d0392d Author: Tor Lillqvist AuthorDate: Mon Dec 21 19:28:15 2020 +0200 Commit: Tor Lillqvist CommitDate: Mon Dec 21 23:55:09 2020 +0100 Retire the bit-rotting LibreOfficeLight iOS app Change-Id: I21b8055fc97d8dfb8429e7dafa1a3982c3b7499b Reviewed

[Libreoffice-commits] core.git: config_host.mk.in configure.ac extensions/source external/libpng external/skia ios/LibreOfficeLight ios/UnitTest osx/soffice.xcodeproj solenv/gbuild

2020-10-16 Thread Stephan Bergmann (via logerrit)
config_host.mk.in | 20 - configure.ac | 102 +-

[Libreoffice-commits] core.git: desktop/source include/LibreOfficeKit ios/LibreOfficeLight ios/UnitTest libreofficekit/qa

2018-10-10 Thread Libreoffice Gerrit user
desktop/source/lib/init.cxx | 72 +++--- include/LibreOfficeKit/LibreOfficeKit.h | 12 + include/LibreOfficeKit/LibreOfficeKit.hxx | 28 +++ ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj

[Libreoffice-commits] core.git: 2 commits - ios/CustomTarget_iOS_setup.mk ios/LibreOfficeLight ios/welcome.odt

2018-03-03 Thread jan Iversen
ios/CustomTarget_iOS_setup.mk |2 +- ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 10 -- ios/welcome.odt |binary 3 files changed, 5 insertions(+), 7 deletions(-) New commits:

[Libreoffice-commits] core.git: ios/CustomTarget_iOS_link.mk ios/LibreOfficeLight ios/source

2018-01-29 Thread Jon Nermut
ios/CustomTarget_iOS_link.mk|1 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 49 -- ios/LibreOfficeLight/LibreOfficeLight/LOKit/LibreOfficeKitWrapper.swift |5 - ios/source/LibreOfficeKit.c

[Libreoffice-commits] core.git: 2 commits - ios/LibreOfficeLight ios/README

2018-01-13 Thread jan Iversen
ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj |2 ios/README | 39 +++--- 2 files changed, 16 insertions(+), 25 deletions(-) New commits: commit 3c8ebbdca744d87fcc42f97b76e04cef5a7b5c1f Author: jan Iversen

Re: LibreOfficeLight / iOS

2018-01-05 Thread jan iversen
Hi On 5 January 2018 at 06:35, Jon Nermut wrote: > Hi Jan, > I've added the UIScrollView into the mix - you can now scroll and zoom and > it's nicely re-rendering at higher res when zooming. It surprisingly good > for a first cut. Havent tried it on device yet. > > One

Re: LibreOfficeLight / iOS

2018-01-04 Thread jan iversen
> Sorry for not being clear - please disable GPGME for iOS (for both > build and host). It currently serves no useful purpose on that > platform, and is certainly not necessary for building. > You were perfectly clear, and it is disabled for the iOS build (== host), but the tools (build-tools) is

Re: LibreOfficeLight / iOS

2018-01-03 Thread Thorsten Behrens
jan iversen wrote: > I have just checked my different build environments: > > MACOS (works) > Yes. It's supposed to work there. > iOS (tools build but cannot run due to missing libassuan dylib) > > > config_build.mk > > export BUILD_TYPE=... LIBGPGERROR LIBASSUAN GPGMEPP ... > > export

Re: LibreOfficeLight / iOS

2018-01-03 Thread jan iversen
> > Ah, for makefiles, use ENABLE_GPGMEPP to check if that's > available. HAVE_FEATURE_GPGME is for source code, and defined in > config_host/config_gpgme.h > I have just checked my different build environments: MACOS (works) config_host.mk export BUILD_TYPE=... LIBGPGERROR LIBASSUAN GPGMEPP

Re: LibreOfficeLight / iOS

2018-01-02 Thread Thorsten Behrens
jan iversen wrote: > Please advice me, how to disable GPGME for both build and host > configuration. > Ah, for makefiles, use ENABLE_GPGMEPP to check if that's available. HAVE_FEATURE_GPGME is for source code, and defined in config_host/config_gpgme.h Cheers, -- Thorsten signature.asc

Re: LibreOfficeLight / iOS

2018-01-02 Thread jan iversen
Manually adding BRAND_SHARE_SUBDIR=share > to fundamentalrc allowed me to render a tile using the CGContext based > code in the unit test, and save it to a png. Woohoo! > > I'm not sure where that should be added? > It is generated in iOS/CustomTarget_iOS_setup.mk line 54-64, once I get my things

Re: LibreOfficeLight / iOS

2018-01-02 Thread jan iversen
libassuan is part of the gpg4libre subsystem, and rather certainly not > useful on iOS. I suggest to disable that, like on Android (there's a > feature check define now, HAVE_FEATURE_GPGME). > Thanks for the info, I can see HAVE_FEATURE_GPGME is being defined in configure.ac, but it not declared

Re: LibreOfficeLight / iOS

2018-01-02 Thread Thorsten Behrens
jan iversen wrote: > I have just updated my master, and now I see your problem with libassuan, > which I am trying to solve. It is being build locally but not copied to the > right place. I did a couple of commits yesterday to a.o. include your idea > on how to make LIBRARY_PATH relative, thanks

Re: LibreOfficeLight / iOS

2018-01-01 Thread Jon Nermut
The tile rendering exception was caused by this path: OUString VclBuilderContainer::getUIRootDir() { OUString sShareLayer( "$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/"); rtl::Bootstrap::expandMacros(sShareLayer); return sShareLayer; } In my build $BRAND_SHARE_SUBDIR

Re: LibreOfficeLight / iOS

2018-01-01 Thread Jon Nermut
Well a framework is effectively dylib *in a bundle*. For swift there is some special module stuff baked in too. So I also moved all the resources to the framework (hence the changes I made to look up the framework bundle instead of the main bundle to find the rc / unorc etc files. You're probably

Re: LibreOfficeLight / iOS

2018-01-01 Thread jan iversen
Happy new year, very interesting work. I have just updated my master, and now I see your problem with libassuan, which I am trying to solve. It is being build locally but not copied to the right place. I did a couple of commits yesterday to a.o. include your idea on how to make LIBRARY_PATH

Re: LibreOfficeLight / iOS

2017-12-29 Thread jan iversen
try the -r flag which is for prelinking. you can see that in the .mk file And of course a debug version contains tons of symbols in order for the debugger to be able to do its work. > iOS has allowed dylibs since iOS 8 and the introduction of Swift. In fact > you can't produce a static lib with

Re: LibreOfficeLight / iOS

2017-12-29 Thread Jon Nermut
Hi Jan, The way I understand it is that the static libs, the .a files, aren't actually linked yet - they are just an archive of .o object files collected together. When you link the app with the static lib it has to do a full read of the symbols in the .a file and write the relevant ones into the

Re: LibreOfficeLight / iOS

2017-12-29 Thread jan iversen
Hi adding dev list to reply, so that others might benefit from the info. Hope you don't mind the unsolicited email, I figured you were the guy to > talk to about this from the git commits. > I am working actively on creating a version of LO for the iPad. So I got it compiling via lode, with

Re: LibreOfficeLight / iOS

2017-12-29 Thread Sophia Schröder
BTW: from the marketing perspective (where I came from) I love the name you gave your babe: I would also love to have two apps, for Android the existing "Viewer" what it isn't anymore with the new possibilities for editing e.g. and for iOS your awesome work, both as "LibreOfficeLight".

Re: LibreOfficeLight / iOS

2017-12-29 Thread jan iversen
Please do not misunderstand my comments, I am open to any enhancements especially on the linking process of the app...but I would like to see a benefit of the changes. rgds jan I. On 29 December 2017 at 09:36, Jon Nermut wrote: > Thanks for the reply Jan. > > My main

Re: LibreOfficeLight / iOS

2017-12-29 Thread jan iversen
On 29 December 2017 at 09:36, Jon Nermut wrote: > Thanks for the reply Jan. > > My main point about BridgeLOKit was that you don't really need to add > another FFI on top of the existing LibreOfficeKit.h FFI. > Swift can import and use the existing _LibreOfficeKit / >

Re: LibreOfficeLight / iOS

2017-12-29 Thread Jon Nermut
Thanks for the reply Jan. My main point about BridgeLOKit was that you don't really need to add another FFI on top of the existing LibreOfficeKit.h FFI. Swift can import and use the existing _LibreOfficeKit / _LibreOfficeKitClass and _LibreOfficeKitDocument / _LibreOfficeKitDocumentClass structs

[Libreoffice-commits] core.git: 2 commits - basic/Library_sb.mk ios/CustomTarget_iOS_prelink.mk ios/LibreOfficeLight ios/source

2017-11-26 Thread jan Iversen
basic/Library_sb.mk |5 +- ios/CustomTarget_iOS_prelink.mk | 19 -- ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 19 +++--- ios/source/LibreOfficeKit.c

[Libreoffice-commits] core.git: 3 commits - ios/CustomTarget_iOS_prelink.mk ios/LibreOfficeLight ios/README

2017-11-25 Thread jan Iversen
ios/CustomTarget_iOS_prelink.mk |4 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 123 ++ ios/LibreOfficeLight/LibreOfficeLight/Info.plist|2 ios/LibreOfficeLight/LibreOfficeLight/dummyLOkit.c |

[Libreoffice-commits] core.git: 5 commits - ios/CustomTarget_iOS.mk ios/LibreOfficeKit ios/LibreOfficeLight ios/loApp.xcconfig.in solenv/gbuild

2017-11-22 Thread jan Iversen
ios/CustomTarget_iOS.mk |2 ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj |4 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj

[Libreoffice-commits] core.git: 3 commits - desktop/source ios/LibreOfficeKit ios/LibreOfficeLight ios/loApp.xcconfig.in

2017-11-12 Thread jan Iversen
desktop/source/lib/init.cxx |1 ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj |4 - ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 32 +++--- ios/loApp.xcconfig.in |

[Libreoffice-commits] core.git: ios/CustomTarget_iOS.mk ios/.gitignore ios/LibreOfficeLight ios/loKit.xcconfig.in

2017-10-22 Thread jan Iversen
ios/.gitignore |1 - ios/CustomTarget_iOS.mk |8 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj |3 +++ ios/loKit.xcconfig.in |

[Libreoffice-commits] core.git: 2 commits - avmedia/source ios/CustomTarget_iOS.mk ios/LibreOfficeLight ios/loApp.xcconfig.in

2017-10-10 Thread jan Iversen
avmedia/source/avmediadummy.cxx |6 + ios/CustomTarget_iOS.mk |1 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 30 +++-- ios/LibreOfficeLight/LibreOfficeLight/LibreOfficeKit.mm | 52

[Libreoffice-commits] core.git: 2 commits - ios/LibreOfficeLight ios/loApp.xcconfig.in README.md

2017-10-08 Thread jan Iversen
README.md |2 ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj | 155 +- ios/LibreOfficeLight/LibreOfficeLight/lokit.mm |4 ios/loApp.xcconfig.in |

[Libreoffice-commits] core.git: config_host.mk.in configure.ac ios/CustomTarget_setup.mk ios/LibreOfficeKit ios/LibreOfficeLight ios/Module_ios.mk

2017-09-27 Thread jan Iversen
config_host.mk.in |2 configure.ac| 24 ++--- ios/CustomTarget_setup.mk | 79 ios/LibreOfficeKit/lo_kit.xcconfig.in | 32 ios/LibreOfficeLight/lo_app.xcconfig.in | 32