Thursday, 2021-02-18

*** zbenjamin is now known as Guest9628502:59
*** zbenjamin_ is now known as zbenjamin02:59
*** haasn` is now known as haasn03:02
bionade24Why is the FolderPickerPage not available despite being in the documentation? https://sailfishos.org/develop/docs/sailfish-components-pickers/qml-sailfish-pickers-folderpickerpage.html/10:27
bionade24I can't find it10:27
bionade24FilePickerPage is available, though10:27
bionade24A seems like I need SFOS version for folder picker10:30
bionade24:(10:30
*** frinring_ is now known as frinring11:02
thigg[m]I just upgraded my xa2 to the release, no warnings were shown, update seemed to work fine, but now my phone is stuck after boot when I enter the decryption key with a forever spinning circle.14:50
thigg[m]Any advice?14:50
thigg[m]Haven't found the exact same thing scrolling through the forum14:51
bionade24thigg[m]: Boot into recovery and try to open your luks device from there15:26
thigg[m]nvm, resolved it. I reset the phone 3 times, but the fourth time, I was pressing power + volume up for 5 secs until it vibrated mulitple times, afterwars it booted fine...15:27
thigg[m]don't ask me why tho... maybe some hardware encryption store got corrupted?15:33
*** vilpan is now known as Guest148815:38
*** Guest1488 is now known as vilpan15:39
*** albertux1 is now known as albertux15:40
bionade24thigg[m]: Then it wouldn't have worked after it. More like a issue in the firmware.15:49
attahAnyone that is a fan of google drive? Seems Cargo is in need of a new maintainer...18:04
Mister_Magisterattah: >sailfish19:07
Mister_Magister>gc19:07
Mister_Magisterpick one19:07
attahhmm?19:08
attahMister_Magister: i don't follow... what do you mean?19:15
Mister_Magistersailfish is about privacy19:24
attahwhat makes you the one to decide what it is (only) about?19:25
attahdon't get me wrong, it's a nice feature, and it goes hand in hand with something i value much more - not being bothered by ads and apps nagging about accounts etc19:27
attahbut had it not been for the ergonomics/UX/UI i'd not have been here19:35
bionade24attah: I understand you wish but sadly I personally have no reason in maintaining this code either. I don't even have a Google Account. But I do still understand you points. It's not like Sailfish doesn't support privacy-ufriendly cloud providers OOTB.19:43
attahOOTB, optional, integration would have been neat19:45
attahOne of the reasons i'm asking is because i'm not exactly a fan - or should i say heavy user - either19:45
Mister_Magisterthere is sadder thing that happened19:46
Mister_Magisterownkeepass was orphaned19:46
attahBut i have one document i need to produce and have clouded every month19:46
attah...and it being able to give me a PDF that is ready to print is quite useful19:47
attahthis low usage would make me a suboptimal maintainer19:48
Mister_Magisterwell19:49
Mister_MagisterIf i need something i go and make it19:49
Mister_Magisterthats the nature of sfos19:49
Mister_Magisteri had music on nextcloud, couldn't play it, so i made app, now i'm happy19:49
attahSame here, 5 times over19:50
attahI'll conceivably keep its current functionality afloat... but i think it deserves more, including packaged dependencies19:52
Mister_Magister PRs always welcome19:53
attahProblem is, the maintainer wants out...19:54
attahand i did make one with "Download as PDF", which of course pegs me as a candidate for maintainership19:55
attah...but i don't think i can do it justice19:55
Mister_Magisterthats what i mean19:55
Mister_Magisterif someone will want to do it better, they can make pr, contact you, whatever19:56
Mister_Magisterdon't you think19:56
attahor it randomly breaks and people contact me19:57
Mister_Magisterare they paying you?19:57
attahthe way some people behave, they'd better be19:57
Mister_Magisterthing is, even if they contact you there's no issue other than spam19:58
Mister_Magisterif it breaks and there's someone with potential of maintaining it that uses it, they will fix it19:58
Mister_Magisterits not as serious as you think19:58
Mister_Magisterjust because you do something with it doesn't stop anyone else from doing something with it19:59
Mister_Magisterif there's someone else that cares, they will do something to help19:59
bionade24Hi I have a "property string name" and a Textfield with you make the value of name editable, but it doesn't work. How can I manipulate "name" with a TextField20:15
bionade24I'm feelin really bad for "Not getting basic stuff done" but I have no fucking idea why it doesn't work20:15
bionade24Code http://ix.io/2PTr20:16
attahat risk of embarrassing myself... something like onTextChanged: configPage.backupDestination = text20:17
attahI have my target variable thingy set to the text here https://github.com/attah/harbour-seaprint/blob/master/qml/pages/AddPrinterDialog.qml20:19
attahso i guess, you can do that too and then have the initial value of the TextField be the config value20:21
bionade24attah: The qml code i used has Binding configured at the beginning of the file, I overlooked it. Thx for help!20:23
bionade24*used as help/reference20:23
bionade24https://github.com/llewelld/harbour-contrac/blob/master/qml/pages/Settings.qml20:23
attahthat's probably the even more proper way to do it20:23
bionade24Does someone else also know why the ConfigurationGroup doesn't store anything?20:36
bionade24the Component.onDestruction part gets executed.20:39
bionade24Because I get the message from console.log("Settings written to disk")20:41
fridlbionade24: I was just scrolling the log: Did you find a way for your question to store data from python side?21:50
fridlSo, I'm sure you did find already one and my solution probably is not "the best" but as i'm again AFK in a second and you should still be interested in an example:22:02
fridlYou can call a python method sending a StandardPath (in my case "cache") like here: https://github.com/fridlmue/harbour-avarisk/blob/316b90e15832acd8e6f4bc92da6fa0220b53692c/qml/pages/DangerPage_swiss.qml#L34422:03
fridlAnd process it e. g. for downloading files there like in the python script here (linked line and following 3): https://github.com/fridlmue/harbour-avarisk/blob/316b90e15832acd8e6f4bc92da6fa0220b53692c/qml/pages/pyAvaCoreSwiss.py#L3022:04
fridle. g. dump objects there like here: https://github.com/fridlmue/harbour-avarisk/blob/316b90e15832acd8e6f4bc92da6fa0220b53692c/qml/pages/pyAvaCore.py#L38422:06
fridlhope it helps if you are still searching.22:06

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