Tuesday, 2023-02-28

dcalisteGood morning pvuorela, I hope you're well.07:59
pvuoreladcaliste: hey, i'm good, thanks.08:00
dcalisteThank you for the mkcal merge and the related ones on deprecating loadSeries().08:01
dcalisteOn another topic, do you have objections on jolla-calendar#330 ? About displaying the recurrence end in the event view.08:02
ViGeBlumenkraft, mal: lastlog is a sparsefile, it's not really that big08:03
pvuoreladcaliste: on 330 last time left pondering how it behaves with the "edit this and later" if that doesn't mark the recurrence end to the main event.08:04
ViGeon my device ls -l says lastlog is 141MB, du -h says it's really 32kB08:04
dcalistepvuorela, well I think it's slightly independant : #330, covers current recurring possibilities, while it will require a necessary tweak with #328. But the tweak would belong to #328.08:08
dcalisteI agree that it doesn't answer what to display in case of this and future exception.08:08
dcalisteOr more explicitly it doesn't solve how to display the this and future end, since I agree with you that it should display the next change (the end being a change too).08:09
pvuoreladcaliste: but maybe it's clearer if we then just set the recurrence end on the main event. would make this UI work properly and then if later editing the main event it shows what the user could expect.08:09
pvuorelaguess i could just merge the 330 at some point now.08:10
dcalisteYes, it is adding another constrain for #328 but well, it's for the best ;)08:10
dcalisteActually, at the moment, with #330, the recurrence end is displayed for all recurring occurrences, but not for any exception (the recurring icon is even not present).08:11
pvuorelathink that's good.08:12
dcalisteIndeed. With this and future, it should behave the same, treating the this and future as a "new parent", ending the previous recurrence, at display level, I mean.08:14
dcalisteSaying this, it raises a question in my mind : what should the "modify all series" display when calling it on an occurrence later than a this and future ? From a user point of view, I guess it should use the this and future as a base and not the true parent, right ?08:16
pvuorelauh :)08:17
pvuorelamight make sense, but good reminder that these have tricky details involved.08:18
pvuorelaon other things, were you planning on removing the mkcal extra load methods?08:20
dcalisteYes, after the search PR will be discussed. Because, most of them look like search methods and I would like to keep them while discussing this new API. Having them in mind, ideally, it would require just a bit of change to the search method to allow them again. Or do you think, it's irrelevant, and we can adjust the API later when the need arise for such methods ?08:23
pvuorelathey could fit some similar purposes but since nothing uses the old loaders i wouldn't think there's anything preventing deletion. so could consider the search as a separate feature.08:25
pvuorelafor the search, just had time for a brief look on the PRs. without testing yet the first thing i was pondering is whether the calendar main pulley menu gets too full. we should have some better container for big amount of items/actions.08:26
dcalisteOk, I'll prepare a PR then for removal (I guess there is no need for deprecation, just removal, right ?).08:27
pvuorelayea, let's just get rid of those.08:27
dcalisteOk, good !08:27
dcalisteYeh, about the pull down menu, I've no idea at the moment. While actually it's still doing its job effectively.08:31
pvuorelayea think at least the email app is having the same amount of items as the pr. not necessarily ideal, but at least not breaking the record.08:33
dcalisteI still need to add a loading property, as mention in the comment, because searching for 'a' for instance (returning mostly the full database content) is currently displaying the placeholder while searching… Besides, it's still quite fast for such a silly query.08:36
pvuorelaif that has some problems, could also consider some minimum length for search string.08:39
dcalisteWell, beside the initial loading time, there is no issue when using SilicaListView, since only some of the items are instanciated. It's still quite fluid. It is occupying memory though, since all incidences are loaded into the memory calendar. Luckily, the next sync will flush the memory calendar if the database is touched.08:43
pvuorelaadded comment on the mkcal, suppose that's not filtering out disabled notebook now.08:44
dcalisteAnd anyway, I need to add this loading property to the model since the search is async and even for valid queries, it may take some hundreds of milliseconds.08:44
dcalisteYeh, about filtering, I'm wondering at which level doing it. I'm not sure it should be done at DB level, even if it would simplify things. Maybe more at nemo-qml-plugin-calendar level…08:45
dcalisteBecause load methods don't care about disabled calendars.08:46
pvuorelaright.08:46
dcalisteThe date range method method in mkcal for instance is loading everything in range.08:46
dcalisteThe filtering out is done in calendarworker.08:46
dcalisteHere, it would require a bit more code, since it would require to filter out the instance identifier list as returned by the worker.08:47
dcalisteNot a bit deal though.08:47
piggzrinigus: have you tried building chum gui in sdk?08:52
dcalisteThat raises the question of optimisation : should we actually filter out at mKCal level in general ? This requires a bit of profiling to see what could be gained. We would gained on the number of created incidences, but the join in the query to get the notebook visibility may be more expensive than creating useless incidences and trash them after.08:56
dcalisteSince actually, disabled calendars should be the minority case.08:57
dcalisteI mean, a range query (or a search one) should return much more incidences for enabled calendars than for disabled ones.08:58
pvuoreladcaliste: overall it wouldn't harm doing some profiling on how long different operations take. maybe related on those recent reviews was commenting on nemo-calendar worker going through all the events it knows etc.08:58
dcalisteI did some profiling a while ago on a real case calendar (mine…) at nemo-qml-plugin-calendar level. In the worker, the bottle neck is currently not the rawEvent() call and the loop that goes with it, but actually the OccurrenceIterator when calculating the occurrences for the given ranges. There was a factor 10 between the two as far as I remember.09:01
dcalisteBut doing it again, to be sure and save it as a test would be good.09:01
dcalisteThe main culprit in OccurrenceIterator, as far as I remember (but don't completely sure now), were the birthdays, because they are creating a lot recurring events that the iterator need to create occurrences for, even if the ranges have month granularity.09:03
dcalisteThank you pvuorela for your time and for the discussion. I'll create a PR purging the unused load methods from mKCal. And try to develop the performence test in mKCal and add one in nemo-qml-plugin-calendar. I mean besides current PRs ;)09:28
pvuoreladcaliste: cheers :)09:29
malViGe: good to know, thanks11:50
riniguspiggz: not recently. when writing it, yes16:48
piggzrinigus: i figured out the issues16:49
piggzthe sdk was adding Ninja as the build system16:49
piggzand, by default the ram in the sdk is 1gb, and the builds were exhausting it!16:49
rinigus:)16:50
piggzrinigus: b.s.o seems to be fixed ...16:54
piggzlbt: Keto ^^ can you confirm of some work has been done?16:55
riniguspiggz: noooh, how is that possible... I was expecting a switch to `nemo` as a defaultuser name in the future SFOS release as well16:56
piggzlol :D16:57
piggzL0lapu5517:02
piggzignore that, i now have a password to change!17:03
BlumenkraftViGe, Thank you for the info.17:07
Ketopiggz: yes, build.sailfishos.org domain should work for now17:08
piggzKeto: what does "for now" mean?17:10
Ketountil it breaks :)17:10
piggzKeto: forgive my missunderstanding of the situation ... but is it more complex than a dns setting?17:14
Ketoyes17:19
Ketoit now points to the same place as build.merproject.org, so both should work the same. but it's all still on the old hardware17:23
piggzyeah, thats what i found confusing ... as one worked, but the other didnt, but it was just the name that didnt work, and i cant figure out if its not a dns issue, that what is it! :D17:25
lbtit was that the mer domain went through a reverse proxy on a good machine, the reverse proxy handling sfos had some weird undiagnosable issue18:00
piggzlbt: ah ok18:08
tanriolIs it possible to somehow remove the emergency call option from the lock screen?18:42
pherjung[m]Perhaps with commenting the part which control that18:43
pherjung[m]but I wouldn't do it18:43
tanriolDo you mean that it's dangerous from the Sailfish POV or that it should be there "for safety"?18:44
pherjung[m]I meant for the stability of the system18:45
pherjung[m]It may breaks some stuff if you don't know what you exactly do18:45
tanriolYeah, I suppose I should look into doing that via patchmanager18:46
pherjung[m]You should look for qml files18:47
pherjung[m]grep is your friend. Perhaps search for a patchmanager which changes the dialler18:48
tanriolAnd ensure I've got root ssh access before trying that :-)18:48
pherjung[m]I do a copy of the modified file18:48
pherjung[m]s/I/Do/, s/do//18:53

Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!