D18466: Fixed calligra crashing when opening remote document

2019-02-05 Thread Dag Andersen
danders added a comment. Ok, it's accepted so please commit/push/land REPOSITORY R8 Calligra BRANCH print-remote-files (branched from master) REVISION DETAIL https://phabricator.kde.org/D18466 To: niccolove, danders Cc: anthonyfieroni, boemann, Calligra-Devel-list, dcaliste, cochise,

D18466: Fixed calligra crashing when opening remote document

2019-01-31 Thread Dag Andersen
danders accepted this revision. danders added a comment. This revision is now accepted and ready to land. Yes, close. When export to pdf, the mainwindow is not shown and since we don't exit, the app will hang. You need to invert the check in KoApplication line 460 so the window is shown.

D18466: Fixed calligra crashing when opening remote document

2019-01-30 Thread Dag Andersen
danders added a comment. Yeah, well there are some half done designs in here :( The benchmark just does not work with remote files. Don't know if it should or if it should be blocked. Let's leave it for now. If you do not specify a pdf filename, it will use the same name as in the

D18466: Fixed calligra crashing when opening remote document

2019-01-30 Thread Dag Andersen
danders added a comment. Regarding the completed slot, the doc says: --print Only print and exit --export-pdf Only export to PDF and exit To exit, you need to know when all jobs have finished, so if some failed you need to track that. Also, the

D15428: [textlayout] Don't enter infinite loop when table is misfit

2019-01-28 Thread Dag Andersen
danders added a comment. Well, unit tests has been added that fails without this patch and passes with this patch. If there are more test cases needed, please add them so that we can get this patch committed soon... REPOSITORY R8 Calligra REVISION DETAIL

D18466: Fixed calligra crashing when opening remote document

2019-01-24 Thread Dag Andersen
danders added a comment. I think the problem is that slotFilePrint() is called (in KoApplication::start()) before the document is actually loaded. Probably we need to start printing in a slot connected to KoMainWindow::loadCompleted() instead. And to be safe, we also need to handle

D18448: Replaced "distraction free" with "fullscreen" - BUG:378527

2019-01-22 Thread Dag Andersen
danders added a reviewer: boemann. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D18448 To: niccolove, boemann Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D15428: [textlayout] Don't enter infinite loop when table is misfit

2019-01-16 Thread Dag Andersen
danders added a comment. Ran this patch against new unit tests and it fixes all the expected ones, namely those where all cells in first row is merged with cells in second row. Test results without patch:

D18095: Add new table layout unit tests

2019-01-15 Thread Dag Andersen
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit R8:666ae5b484cc: Add new table layout unit tests (authored by danders). REPOSITORY R8 Calligra CHANGES SINCE LAST

D18095: Add new table layout unit tests

2019-01-15 Thread Dag Andersen
danders added a comment. Even if they do not all pass, I think they should be commited if the tests/methods are ok and the reason for not passing are genuin bugs, no? REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D18095 To: danders, boemann, anthonyfieroni Cc:

D18095: Add new table layout unit tests

2019-01-10 Thread Dag Andersen
danders updated this revision to Diff 49141. danders added a comment. Add a test that trigger a loop in the table layout REPOSITORY R8 Calligra CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D18095?vs=48957=49141 BRANCH table_unittest_danders REVISION DETAIL

D18095: Add new table layout unit tests

2019-01-08 Thread Dag Andersen
danders added a comment. Not trivial (for me) to get data out of layout so it is hard to create robust tests. I don't think I have been able to create a test to simulate the loop excactly. Also, uncertain wether the MockRootAreaProvider is sufficient. Any ideas/comments wellcome.

D18095: Add new table layout unit tests

2019-01-08 Thread Dag Andersen
danders created this revision. danders added reviewers: boemann, anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY Adds multiple areas capabilities and tests with merged cells

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-18 Thread Dag Andersen
danders added a comment. Fidled a little more with this, and found several problems when table with merged cells is split over pages, like unmerged cell painted on both pages (empty on first page), caret not shown in selected cell and sometimes shown in prev cell. Tried to recreate

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-17 Thread Dag Andersen
danders added a comment. In D15428#378432 , @boemann wrote: > No you misunderstand. I wasn't talking about you diff - I want to know what it is we are trying to accomplish. in spoken words Ahhh. It's a guard against loop/crash in extreme

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-17 Thread Dag Andersen
danders added a comment. In D15428#378422 , @boemann wrote: > Dan I like your diff better - I don't think it's completely there but it's a better starting point > > On a more conceptual level, what should happen if the design of table is

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-17 Thread Dag Andersen
danders added a comment. I ended up in the same spot as you: Since all columns in row 0 spans rows, totalMisFit will always be set to true and the whole table is layed out on next page, and next page again and again ... I'm not 100% certain just adding noCellsFitted to the condition

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-14 Thread Dag Andersen
danders added a comment. Ok, think I'm on to something. Testing with the 1.doc in bug 381341. It seems it fails on the table in approx page 222 (open in LO) with text in 0,0: Экономический субъект Stepping through the KoTextLayoutTableArea::layoutRow(), it seems *all* columns in row 0

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-12 Thread Dag Andersen
danders added a comment. Had a closer look at this. Afaics we get an infinit loop when a table is 'totally misfit', Can't say I understand the table layout logic, but my assumption is that if a row is a total misfit it can't just be ignored, so breaking off the row layout loop in this

D15428: [textlayout] Don't enter infinite loop when table is misfit

2018-12-09 Thread Dag Andersen
danders added a comment. Would it be possible to make a unit test? REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15428 To: anthonyfieroni, #calligra:_3.0, danders, boemann Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

karbon and multi page docs

2018-11-14 Thread Dag
@anthony I think karbon should be able to handle docs with more than one page as this is valid odf. This would also mean we can axe flow, as prev flow maintainer planned. What do you think? -- Cheers, Dag

D16756: CalloutShape: Add a new shape to handle callouts

2018-11-14 Thread Dag Andersen
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit R8:2e1aaae999f3: CalloutShape: Add a new shape to handle callouts (authored by danders). REPOSITORY R8 Calligra CHANGES

Re: Plan freeze

2018-11-09 Thread Dag
Dag skrev den 2018-10-29 14:29: I'm working on moving plan into separate repository to ease release work. Please do not do any work on plan until futher notice. Done, named calligraplan, so open for contributions :)

D16756: CalloutShape: Add a new shape to handle callouts

2018-11-08 Thread Dag Andersen
danders created this revision. danders added reviewers: boemann, anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY This is the start of a dedicated callout shape. It uses draw:type

D16679: Words: Fix interop problem with LO/OO

2018-11-05 Thread Dag Andersen
This revision was automatically updated to reflect the committed changes. Closed by commit R8:caffa566d8d2: Words: Fix interop problem with LO/OO (authored by danders). REPOSITORY R8 Calligra CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D16679?vs=44892=44896 REVISION DETAIL

D16679: Words: Fix interop problem with LO/OO

2018-11-05 Thread Dag Andersen
danders created this revision. danders added a reviewer: boemann. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY Words creates pagestyles with name "Standard" and displayname "Default". Afaics

Plan freeze

2018-10-29 Thread Dag
I'm working on moving plan into separate repository to ease release work. Please do not do any work on plan until futher notice. -- Cheers, Dag

D16367: EnhancedPathShape: Shape is moved/resized on save/load

2018-10-29 Thread Dag Andersen
danders abandoned this revision. danders added a comment. Ok, after some more investigation, I've found a number of problems around these things. This was really just a bug in the stencil database.odg file. The callout stuff is the big one, because it abuses odf so needs special

D16367: EnhancedPathShape: Shape is moved/resized on save/load

2018-10-23 Thread Dag Andersen
danders added a comment. Yes, found it: https://bugs.kde.org/show_bug.cgi?id=289646 Afaics this affects only callout shapes where OO/LO breaks the intention of the odf spec by using the shape size and position as text area. This is ok (sort of) when text area and shape area overlap but

D16367: EnhancedPathShape: Shape is moved/resized on save/load

2018-10-22 Thread Dag Andersen
danders added a comment. I have tested with LO: Create with flow, Open in LO, Save in LO, Open in flow. And it seems to work, so there must be some special case? The only workaround I've seen is for ellipses. No chance for a testdoc I guess... REPOSITORY R8 Calligra REVISION

D16367: EnhancedPathShape: Shape is moved/resized on save/load

2018-10-22 Thread Dag Andersen
danders created this revision. danders added reviewers: boemann, anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY Remove all code that uses viewbox to affect position and size.

D16289: Karbon: Add Anthony as maintainer and remove unmaintained

2018-10-18 Thread Dag Andersen
This revision was automatically updated to reflect the committed changes. Closed by commit R8:99527b565f59: Karbon: Add Anthony as maintainer and remove unmaintained (authored by danders). REPOSITORY R8 Calligra CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D16289?vs=43840=43844

D16289: Karbon: Add Anthony as maintainer and remove unmaintained

2018-10-18 Thread Dag Andersen
danders created this revision. danders added a reviewer: anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REPOSITORY R8 Calligra BRANCH karbon_danders REVISION DETAIL

Re: Krita donation proposal

2018-10-17 Thread Dag
Imho, a good idea. Does not seem krita gets anything directly, maybe because it is considdered part of calligra. --- Cheers, Dag Jaroslaw Staniek skrev den 2018-10-16 18:06: Dear Calligra contributors, Congratulations again on the donation [1] and big thanks to the Handshake Foundation

D16127: Annotation: Block adding comment to an annotation shape

2018-10-16 Thread Dag Andersen
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit R8:d4744090e8c6: Annotation: Block adding comment to an annotation shape (authored by danders). REPOSITORY R8 Calligra

D16127: Annotation: Block adding comment to an annotation shape

2018-10-16 Thread Dag Andersen
danders updated this revision to Diff 43724. danders added a comment. - If no textshape is editied, select the first found text shape REPOSITORY R8 Calligra CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D16127?vs=43721=43724 BRANCH danders_annotation_crash REVISION DETAIL

D16127: Annotation: Block adding comment to an annotation shape

2018-10-16 Thread Dag Andersen
danders abandoned this revision. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D16127 To: danders, boemann, anthonyfieroni Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D16127: Annotation: Block adding comment to an annotation shape

2018-10-16 Thread Dag Andersen
danders added a comment. Arghh, accidentally propt a new diff on top of this, howto undo this? (arc is fine, but do not do anything wrong) REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D16127 To: danders, boemann, anthonyfieroni Cc: Calligra-Devel-list, dcaliste,

D16127: Annotation: Block adding comment to an annotation shape

2018-10-16 Thread Dag Andersen
danders updated this revision to Diff 43721. danders added a comment. - DefaultTool: Do not considder parent flags when checking Move-/ResizeAllowd - DefaultTool: MoveStrategy: Check if shape is movable - DefaultTool: ResizeStrategy: Check if shape is resizeable - DefaultTool:

D16127: Annotation: Block adding comment to an annotation shape

2018-10-11 Thread Dag Andersen
danders marked an inline comment as done. danders added a comment. No, it should not be possible to activate a tool without a shape. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D16127 To: danders, boemann, anthonyfieroni Cc: Calligra-Devel-list, dcaliste, cochise,

D16127: Annotation: Block adding comment to an annotation shape

2018-10-11 Thread Dag Andersen
danders created this revision. danders added reviewers: boemann, anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY To reproduce crash: 1. Add a text shape 2. Add an annotation

D15053: Consistently use qreal in libs/pigment

2018-10-09 Thread Dag Andersen
danders accepted this revision as: danders. danders added a comment. This revision is now accepted and ready to land. Fine with me. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15053 To: dcaliste, leinir, danders, #calligra:_3.0 Cc: boemann, anthonyfieroni,

D15775: Make the item background color and page cache properties available from View component

2018-10-04 Thread Dag Andersen
danders added inline comments. INLINE COMMENTS > View.h:118 > + */ > +bool pageCache() const; > +/** Could you rename pageCache() to pageCacheEnabled() and d:o setPageChache() REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15775 To: dcaliste, leinir,

D15619: Remove use of kglobal.h in sheets

2018-09-21 Thread Dag Andersen
danders accepted this revision. This revision is now accepted and ready to land. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15619 To: dcaliste, leinir, danders, #calligra:_3.0 Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D15620: Remove deprecated use of QDate::setYMD() and QFlag instead of QWindowFlag

2018-09-21 Thread Dag Andersen
danders accepted this revision. This revision is now accepted and ready to land. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15620 To: dcaliste, leinir, danders, #calligra:_3.0 Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D15622: Upgrade intersect() to intersected() calls

2018-09-21 Thread Dag Andersen
danders accepted this revision. This revision is now accepted and ready to land. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15622 To: dcaliste, leinir, anthonyfieroni, danders, #calligra:_3.0 Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D15549: Words: Save anchor info also for page-anchored shapes

2018-09-17 Thread Dag Andersen
This revision was automatically updated to reflect the committed changes. Closed by commit R8:02f34b05723a: Words: Save anchor info also for page-anchored shapes (authored by danders). CHANGED PRIOR TO COMMIT https://phabricator.kde.org/D15549?vs=41737=41811#toc REPOSITORY R8 Calligra

D15567: Words: Do not popup contextmenu twice

2018-09-17 Thread Dag Andersen
danders created this revision. danders added a reviewer: boemann. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY Popup menu was called from mousePressEvent. No need as it is handled in

D15549: Words: Save anchor info also for page-anchored shapes

2018-09-17 Thread Dag Andersen
danders added a comment. After reading the fine print, see: http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1420028_253892949 it seems to me a shape can be anchored to a page in different ways. Note this: "If the attribute value is not from-left and

D15549: Words: Save anchor info also for page-anchored shapes

2018-09-16 Thread Dag Andersen
danders created this revision. danders added a reviewer: boemann. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY LO needs anchor info to position shapes correctly. REPOSITORY R8 Calligra

D15412: [filters] Extend table lifetime

2018-09-13 Thread Dag Andersen
danders added a comment. Sorry, don't have any qualified opinons, I don't quite understand the original code either, so... Imo if you think it is good, land it. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15412 To: anthonyfieroni, danders, boemann,

D15403: {Style] Default sheets to white background

2018-09-11 Thread Dag Andersen
danders accepted this revision. This revision is now accepted and ready to land. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15403 To: anthonyfieroni, danders, boemann Cc: Calligra-Devel-list, dcaliste, cochise, vandenoever

D15403: {Style] Default sheets to white background

2018-09-11 Thread Dag Andersen
danders added a comment. Hmm, imo styling odf apps content area should be considdered a bug :=) Because: All info pertaining to presentation of content is stored in odf file and is controllable by user, so styling it would often create strange resullts. (And it would not be much wysiwyg

D14901: Fix blocklayout unittest after percentage lineheight was fixed in D9537

2018-09-01 Thread Dag Andersen
This revision was automatically updated to reflect the committed changes. Closed by commit R8:705d0ae50923: Fix blocklayout unittest after percentage lineheight was fixed in D9537 (authored by danders). CHANGED PRIOR TO COMMIT https://phabricator.kde.org/D14901?vs=39919=40803#toc REPOSITORY

D14901: Fix blocklayout unittest after percentage lineheight was fixed in D9537

2018-08-31 Thread Dag Andersen
danders added a comment. Ping? REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D14901 To: danders, boemann, anthonyfieroni Cc: Calligra-Devel-list, cochise, vandenoever

D15102: Update deprecated QAbstractItemModel::reset() to use {begin, end}ResetModel() instead

2018-08-28 Thread Dag Andersen
danders added a reviewer: leinir. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15102 To: dcaliste, #calligra:_3.0, leinir Cc: Calligra-Devel-list, cochise, vandenoever

D15056: [EnhancedPathShape] Keep correct aspect ratio of shapes in odf files

2018-08-28 Thread Dag Andersen
danders accepted this revision. danders added a comment. This revision is now accepted and ready to land. Haven't tested, but sounds sane :) REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D15056 To: anthonyfieroni, #calligra:_3.0, danders, boemann Cc:

D14975: Don't use obsolete QRectF and QAbstractItemModel functions

2018-08-22 Thread Dag Andersen
danders added a comment. I'm not 100% sure of stackChanged() change. Probably ok, but the original would call both begin and end before calling the selection model. To get exactly the same behaviour you could do the same. It depends on how the selction model handles reset and

D14916: [ArtisticTextShape] Merge text ranges with same style

2018-08-20 Thread Dag Andersen
danders accepted this revision. This revision is now accepted and ready to land. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D14916 To: anthonyfieroni, boemann, danders, #calligra:_3.0 Cc: Calligra-Devel-list, cochise, vandenoever

D14916: [ArtisticTextShape] Merge text ranges with same style

2018-08-20 Thread Dag Andersen
danders added a comment. Hmm, I assumed it only got in here when appending a text to a) an empty shape (no need for merging), b) at the end of an existing text, in which case using the the existing formatting of the last range should ok. I just can't see why using a defaultfont in this

D14901: Fix blocklayout unittest after percentage lineheight was fixed in D9537

2018-08-17 Thread Dag Andersen
danders marked an inline comment as done. danders added a comment. What to change depends on what the number means ;) Well in general all numbers that depends on fontsize should be changed, the rest should stay the same, but yes it is a puzzle. REPOSITORY R8 Calligra REVISION DETAIL

D14901: Fix blocklayout unittest after percentage lineheight was fixed in D9537

2018-08-17 Thread Dag Andersen
danders created this revision. danders added reviewers: boemann, anthonyfieroni. Herald added a project: Calligra: 3.0. Herald added a subscriber: Calligra-Devel-list. danders requested review of this revision. REVISION SUMMARY There is a couple of failing tests now marked as XFAIL. I am

Re: Fwd: KDE CI: Dependency Build Calligra kf5-qt5 WindowsMSVCQt5.10 - Build # 1 - Failure!

2018-07-26 Thread Dag
e no problem with making it optional for Windows. --- Cheers, Dag Jaroslaw Staniek skrev den 2018-07-25 11:03: Hi Calligra Devs, Thanks to Ben, we're getting a Jenkins view for Calligra builds: https://build.kde.org/view/Calligra/. I am forwarding info on one defect so you have opportunity to fix thi

D9537: [kotextlayoutarea] Make percentage line height relative to the default height

2018-07-25 Thread Dag Andersen
danders added a comment. Yeah :) Seems a unit test needs adjustments, could you have a look? https://build.kde.org/view/Calligra/job/Calligra%20calligra%20kf5-qt5%20FreeBSDQt5.10/lastCompletedBuild/testReport/(root)/TestSuite/libs_kotextlayout_TestBlockLayout/ REPOSITORY R8 Calligra

Help with words, anchored shapes and dialog

2018-05-29 Thread Dag
components (which are shapes). Any idea how to avoid this? -- Cheers, Dag

Re: D9537: [kotextlayoutarea] Make percentage line height relative to the default height

2018-05-29 Thread Dag
Camilla Boemann skrev den 2018-05-28 20:20: boemann added a comment. View Revision [1] This is not correct I refer to https://www.w3.org/TR/xsl11/#line-height which states that percentage is releative to fontheight - if not percentage is give a default of 120 percent is used but you should

State of windows

2018-04-13 Thread Dag
@leinir Could you comment on this comment? https://www.calligra.org/news/calligra-3-1-0-released/ -- Cheers, Dag

Re: Calligra Sheets feedback mode?

2018-03-27 Thread Dag
igrasheets& --- Cheers, Dag 23.03.2018, 20:26, "Tomas Mecir" <mec...@gmail.com>: Have you tried compiling sheets with debug info and enabling sheets debugs in kdebugdialog5? That might give some idea what's wrong. Tomas 2018-03-23 19:22 GMT+01:00 iIjier Iuiresd <cal

Re: Urgent: Is the domain koffice.net still needed?

2018-03-20 Thread Dag
Afaik we do not need koffice.net and koffice.org. koffice.org just points to calligra.org, and koffice.net does not have any content. So, please do not renew. --- Cheers, Dag Ben Cooksley skrev den 2018-03-20 07:25: On Tue, Mar 20, 2018 at 8:37 AM, Thomas Pfeiffer <thomas.pfeif...@kde.

D11505: Plan: fix build with Qt 5.6

2018-03-20 Thread Dag Andersen
danders accepted this revision. danders added a comment. This revision is now accepted and ready to land. Hmm, it should have been i18n'ed also. I'll fix that later, just land it. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D11505 To: wbauer, danders Cc:

Re: Calligra 3.1 status

2018-02-06 Thread Dag
Jonathan Riddell skrev den 2018-02-06 15:38: On 6 February 2018 at 14:25, Dag <dand...@get2net.dk> wrote: Jonathan Riddell skrev den 2018-02-06 14:52: The calligraplan tar contains translations which conflict with those in the calligra tar calligraplanlibs.mo calligrap

Re: Calligra 3.1 status

2018-02-06 Thread Dag
e-team/2018-January/010806.html --- Cheers, Dag

Re: Release announced on kde-announce-app

2018-01-31 Thread Dag
Boudewijn Rempt skrev den 2018-01-31 14:00: On Wednesday, 31 January 2018 13:53:46 CET Dan Leinir Turthra Jensen wrote: On Wednesday, 31 January 2018 11:41:03 GMT Dag wrote: > See att file. > It would be swell if somebody with access could do likewise on > calligra.org, maybe add m

Release announced on kde-announce-app

2018-01-31 Thread Dag
See att file. It would be swell if somebody with access could do likewise on calligra.org, maybe add more about gemini. -- Cheers, Dag We are pleased to announce the release of Calligra 3.1.0 with the following apps included: Words, Sheets, Karbon, Gemini, and Plan. Note that Gemini

3.1.0 is out

2018-01-28 Thread Dag
Ok, release is out so master is open for features and strings again. Need an announcement, I'll collect from commit log, but please, those who has something post it here. @leinir could you say something about gemini? -- Cheers, Dag

Calligra 3.1.0 release delayed

2018-01-25 Thread Dag
notice. -- Cheers, Dag

Re: Help with Phabricator needed

2018-01-24 Thread Dag
Sebastian Pettke skrev den 2018-01-24 16:36: unfortunately I don't have the permission to push and according to this: https://community.kde.org/Infrastructure/Phabricator#Workflow I also can't use arc land without a full KDE Developer Account (I don't have one). Might someone else with the

Re: Help with Phabricator needed

2018-01-24 Thread Dag
Sebastian Pettke skrev den 2018-01-23 23:38: On January 23, 2018 at 10:30 AM Dag <dand...@get2net.dk> wrote: Sebastian Pettke skrev den 2018-01-22 21:00: > Hi, > > I tried to submit a patch using Phabricator: > https://phabricator.kde.org/D10014 > > but it won't appe

Re: Help with Phabricator needed

2018-01-23 Thread Dag
? I'm not overly comfortable with phab myself, the interface might be intuitive but it does not match my intuition ;) But, we got the review request, looking at it right now. --- Cheers, Dag

String freeze for calligra 3.1 release

2018-01-11 Thread Dag
Hi, We plan to release Calligra 3.1 on Thursday 2018-01-25. We release from master/trunk. String freeze is in effect from now on until release and stable branches has been created. -- Cheers, Dag

Beta is out

2017-12-20 Thread Dag
Could someone with karma announce it on calligra.org? -- Cheers, Dag

Feature freeze

2017-12-15 Thread Dag
Expect to tag and release tarballs today, so please only bug fixes from now on. -- Cheers, Dag

D9253: Make Plan build on Windows

2017-12-08 Thread Dag Andersen
danders accepted this revision. danders added a comment. This revision is now accepted and ready to land. Surprised it was *that* easy... REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D9253 To: leinir, #calligra:_3.0, danders Cc: Calligra-Devel-list, cochise,

Re: Release

2017-12-06 Thread Dag
Jaroslaw Staniek skrev den 2017-12-05 11:42: Nice to hear this, Dag. For the record, next 30 days is also estimated time for Kexi & Frameworks 3.1 release. There are Plan -> Frameworks dependencies, right? Yes and no :) If it is ready, I'll include it, if not it can wait for a later

Release

2017-12-05 Thread Dag
Hi, I would like to get Plan out soonish, and it would be nice to also include gemini along with words, sheets and karbon if it is ready for consumption. I suggest January 25 for final release and a beta December 15. -- Cheers, Dag

D2577: KoResourcePaths: Fix handling of wildcards in directories and files

2017-11-20 Thread Dag Andersen
danders added a comment. The background was it failed for one case in Plan, and I found a possible failure in KoMainWindow (I think it was), but that was a "if all else fails" case and I doubt the code will ever be executed. Also, I have seen that not all places uses KoResourcePaths so a

Moving calligra kostore and koodf

2017-11-01 Thread Dag
Hi all, would there be any merit in moving those libs out of calligra into e.g. extragear/libs to make them available to external interested parties (krita atm). This will possibly make it easier to keep up to date on odf spec changes. Any thoughts? -- Cheers, Dag

D8310: Port Calligra Gemini for 3.x

2017-10-31 Thread Dag Andersen
danders added a comment. Dan Leinir Turthra Jensen skrev den 2017-10-30 12:06: I hope ppl have just taken an extended summer vacation ;) REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D8310 To: leinir, Calligra-Devel-list Cc: danders, vandenoever

D8310: Port Calligra Gemini for 3.x

2017-10-16 Thread Dag Andersen
danders added a comment. I'm clueless on qtquick, but unless somebody else has comments I'd say ship it. REPOSITORY R8 Calligra REVISION DETAIL https://phabricator.kde.org/D8310 To: leinir, Calligra-Devel-list Cc: danders, vandenoever

Re: Release 3.0.1

2017-04-04 Thread Dag
Tarball now on download.kde.org and packagers notified. Could somebody with karma prepare an announcement for Friday (or the weekend)? Created new calligra/3.0 branch so master now open for new features. Please backport (important) bugfixes in case we need a 3.0.2 release. --- Cheers, Dag

Re: Release 3.0.1

2017-03-24 Thread Dag
Turns out I ma away the next week, so if somebody does not take it the last steps, release will be delayed... --- Cheers, Dag

Re: libpigmentcms.so - multiple definitions KoCompositeOp

2017-03-24 Thread Dag
Created a todo for this https://phabricator.kde.org/T5738 so we don't forget... Boudewijn Rempt skrev den 2017-03-23 11:34: On Thu, 23 Mar 2017, Dag wrote: Treeve Jelbert skrev den 2017-03-22 18:13: > I just tried to build calligra from git-master, which I think is the > same as the r

Re: libpigmentcms.so - multiple definitions KoCompositeOp

2017-03-24 Thread Dag
Great, thanks. Treeve Jelbert skrev den 2017-03-23 14:37: I have just done a clean compile, deleting some extraneous cmake definitions and everything now compiles correctly. Regards On Wed, 22 Mar 2017 18:13:43 +0100, Treeve Jelbert wrote: I just tried to build calligra from git-master,

Re: Release 3.0.1

2017-03-23 Thread Dag
mand for hide/show titles Add undo command for add/remove axis Respect margins/spacing Handle resizing in a reasonable way Cheers, Dag

Re: libpigmentcms.so - multiple definitions KoCompositeOp

2017-03-23 Thread Dag
Treeve Jelbert skrev den 2017-03-22 18:13: I just tried to build calligra from git-master, which I think is the same as the release tarball. Yes. Works fine here, surprise, surprise ;) I can see that cmake outputs this for you: Following objects are generated from the per-arch lib

Re: Release 3.0.1

2017-03-20 Thread Dag
Ok, git tagged v3.0.1 and tarball created. Files can be found here: https://share.kde.org/index.php/s/yanrJWiQFB3rrvc My public key is here: https://share.kde.org/index.php/s/pYwk5c7UNcXGYfP Please test. Upload etc planned for next week. Cheers, Dag

RE: Release 3.0.1

2017-03-13 Thread Dag
Ok, we are in string freeze. Tarballs planned for monday 20. if translators do not bulge.

Release 3.0.1

2017-03-10 Thread Dag
Hi, should we make a bug fix release soon? A few bugs has been fixed, and there is 3 months since 3.0.0 ;) Anybody has something that *needs* to be fixed? Cheers, Dag

Re: Review Request 129800: [Mac] : prepare for "linuxy" vs. standalone app bundle builds

2017-01-17 Thread Dag Andersen
a8fd10d8b0a24e581eeb4754b458ba98ddbf0167) > > René J.V. Bertin wrote: > Sheets works nicely too! > > Anthony Fieroni wrote: > I response for only Karbon, wait for Camilla and Dag Andersen. > > René J.V. Bertin wrote: > Evidently. > > Plan al

Re: Review Request 129800: [Mac] : prepare for "linuxy" vs. standalone app bundle builds

2017-01-16 Thread Dag Andersen
a8fd10d8b0a24e581eeb4754b458ba98ddbf0167) > > René J.V. Bertin wrote: > Sheets works nicely too! > > Anthony Fieroni wrote: > I response for only Karbon, wait for Camilla and Dag Andersen. > > René J.V. Bertin wrote: > Evidently. > > Plan al

<    1   2   3   4   >