libera/#maemo-leste/ Thursday, 2023-05-25

freemangordonWizzup: how do you think, in this query:11:50
freemangordontracker sparql -q "SELECT * {?album a nmm:MusicAlbum; nie:title ?title}"11:50
freemangordonis there a way to *not* select ?album ?11:50
Wizzupfreemangordon: to select everything but album?13:00
freemangordonWizzup: no, to select title but not the album itself13:02
freemangordon?album is a column13:02
freemangordonsec13:02
freemangordonuser@devuan:~/MyDocs/.videos$ tracker sparql -q "SELECT * {?album a nmm:MusicAlbum; nie:title ?title}"13:03
freemangordonResults:13:03
freemangordon  ,13:03
freemangordon  Album%202, Album 213:03
freemangordon  Album%203, Album 313:03
freemangordon  Album%204, Album 413:03
freemangordon  Album%20V2, Album V213:03
freemangordon  Some%20Album, Some Album13:03
freemangordonsee ^^^13:03
freemangordonso, I want to select nie:title property only13:04
freemangordonsure, I can do: tracker sparql -q "SELECT ?title {?album a nmm:MusicAlbum; nie:title ?title}"13:04
Wizzuphm, ok, for this I would have to dive a bit more into sparql13:05
uvosdsc_: some feedback on the weather app13:42
uvosits great, but:13:42
uvos1. would be cool if it worked in portrait, atm there is lots of text overlap13:43
uvos2. maybe its just my theme but the "Grey" text is too low contrast to see outdoors.13:43
dsc_uvos: its not just the weather app, now we also have The Weather Device (c)(tm) https://cdn.kroket.io/~sander/pic/photo1685017809.jpeg14:42
dsc_:P14:43
dsc_regarding orientation; I need to figure out how to make hildon+qt do that14:43
dsc_regarding contrast: was this d4 or n900?14:44
dsc_could you show an example of overlapping text?14:46
uvosdsc_: d4, its the grey on grey text like the date, outside i find this hard to read14:55
boshtannik"boshtannik: https://space.nurdspace.nl/~buzz/maemo/batmon.py" - pretty nice code14:55
uvosits not my theme as your device shows the same thing, the portrait mode is just a flag you set on the window see https://github.com/maemo-leste/osso-calculator/blob/2cf4e653f5942192e1bd8748f835e25352d3b749/osso-calculator-ui.cpp#L14714:58
uvosdsc_: overlaping text occures if you force portrait14:58
uvoson d414:58
dsc_will probably have to leave out some text on portrait14:59
dsc_as well as the graph14:59
uvosor rearange the layout14:59
uvosthe the problem is the current temperature get clobberd with the date and city14:59
uvosthose could just be benath eatch other below a certain horizontal window size15:00
uvosanyhow15:00
dsc_its a bit challenging as it is QML15:00
uvosok15:00
dsc_so this weather app I made in exactly a week which is really tight15:12
uvosits great, dont get me wrong :)15:12
dsc_its good to get feedback after 'the first round', which is now :)15:13
uvoswhere do you get network location from?15:13
uvosqlocation?15:13
dsc_its just ipv4 lookup @ API15:13
dsc_it returns lat/lon15:13
uvosok15:13
dsc_but GPS would also be nice in the future ;)15:13
uvosyeah would be cool if we got liblocation working with geoclue backends15:13
uvosgps is really overkill imo15:14
dsc_hehe15:14
dsc_i am working on a browser currently where I also need to support portrait15:15
dsc_so I will take my learnings from that to weather app later15:15
dsc_(the browser will not be QML btw)15:15
dsc_uvos: contrast of text, so just make city/country 'white' ?15:16
dsc_and the others15:16
dsc_except for the text in the graph15:16
dsc_It could be a settings option 'high contrast colors'15:17
dsc_... that is enabled by default ;)15:17
uvosmaybe, or lower the brightness of the bg, or up the text brightness (but not to white)15:17
uvosmaybe make the text thats white now bold or something that it still stands out?15:17
dsc_right15:17
dsc_https://github.com/maemo-leste-extras/NOMWeather/blob/master/src/qml/main.qml#L1515:18
Wizzupuvos: does qml honour the themes at all?15:38
WizzupI am not sure if it does15:38
uvosWizzup: pure qml dose not15:58
uvosbut stock controls like qtquick1 did, no idea with modern stuff15:59
dsc_its usually a custom implementation where you measure the color palette on the C++ side (adopted from the desktop) and then forward it to QML16:00
dsc_KDE decided to implement their own components in QML so it matches their desktop, it is called Kirigami; https://develop.kde.org/frameworks/kirigami//16:02
Wizzupuvos: btw https://bpa.st/MUF2O - this is hostapd on d416:03
WizzupI am trying to figure out if the problem is in the mgmt frame stuff or the p2p stuff16:03
uvosWizzup: no idea why that would be, it did work in the (now distant) past16:19
uvoslike 5.9 or somth.16:19
Wizzupuvos: not sure if it is kernel or hostapd16:37
dsc_having too much fun with this thing :D https://cdn.kroket.io/~sander/vid/zfbgeypp2.mp416:59
dsc_nice to have on the cabinet in the livingroom17:00
uvosWizzup: well it was not working in recent beowulf, where presumably the hostapd was stattic since 5.9 era18:10
uvosWizzup: so i would suspect the kernel18:10
uvosdsc_: you know what would also be cool, but only if really easy:18:11
uvosif you could switch days by swiping the graph18:11
uvoshildon-home style18:12
Wizzupuvos: ah, I did not know that18:12
Wizzupuvos: +1 I tried that too18:12
dsc_you both tried to swipe the graph?18:21
Wizzupdsc_: yes18:41
dsc_ok ill forward this to the UX designer18:46
dsc_the non existent UX designer, AKA myself :P18:50
dsc_ill look at weatherapp after finishing "The Browser(c)(tm)"18:50
dsc_regarding the browser Wizzup18:57
dsc_Qt's webengineview does not provide functionality regarding password management18:58
Wizzupit looked like this vulture browser removed it from the kde one18:58
dsc_from C++ we have access to the javascript browser runtime18:59
dsc_so one could in theory create all kinds of logic related to the detection of login screens18:59
dsc_... but thats custom19:00
dsc_extensions not possible; https://bugreports.qt.io/browse/QTBUG-5118519:02
Wizzuphttps://github.com/maemo-leste-extras/vulture-browser says it has built in ad block19:08
WizzupI guess that's not with an extension then19:08
dsc_https://github.com/maemo-leste-extras/vulture-browser/blob/master/src/lib/adblock/adblockmatcher.cpp19:09

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