*** alin__ has quit IRC | 00:01 | |
*** jstaniek_ has joined #sailfishos | 00:26 | |
*** jstaniek_ has quit IRC | 00:29 | |
*** jstaniek has quit IRC | 00:30 | |
*** rashm2k1 has quit IRC | 00:43 | |
*** AlmAck has quit IRC | 00:48 | |
*** qqK has quit IRC | 01:02 | |
*** BeholdMyGlory has quit IRC | 01:04 | |
*** Universebenzene has joined #sailfishos | 01:14 | |
*** krendil has joined #sailfishos | 01:18 | |
*** xerpi has quit IRC | 01:29 | |
nthu | hmm, are the btrfs utilities and extra install? | 01:45 |
---|---|---|
nthu | just reinstalled my phone, and the tools are non-existent | 01:45 |
nthu | btrfs, btrfsck, etc - none of them there | 01:46 |
nthu | I can't seem to recall having installed them myself on the previous install | 01:46 |
nthu | oh, never mind! you must be root to even see the tools; didn't take notice. | 01:48 |
*** softmetz_ has joined #sailfishos | 01:49 | |
*** fracting has joined #sailfishos | 01:50 | |
*** softmetz has quit IRC | 01:52 | |
*** FlashAsparagus has joined #sailfishos | 02:01 | |
*** Zesty_ has joined #sailfishos | 02:04 | |
*** artemma has joined #sailfishos | 02:25 | |
*** master_o1_master has joined #sailfishos | 02:53 | |
*** master_of_master has quit IRC | 02:57 | |
*** lynxis has quit IRC | 03:18 | |
*** lynxis has joined #sailfishos | 03:18 | |
*** rm_work|away is now known as rm_work | 04:01 | |
*** tat has joined #sailfishos | 04:32 | |
*** tat_ has joined #sailfishos | 04:37 | |
*** tat has quit IRC | 04:40 | |
*** Univeresebenzene has joined #sailfishos | 04:52 | |
*** Universebenzene has quit IRC | 04:53 | |
*** furikku has joined #sailfishos | 04:59 | |
*** ericy has joined #sailfishos | 05:23 | |
*** ericy has quit IRC | 05:24 | |
*** remarc has joined #sailfishos | 06:05 | |
*** remarc has joined #sailfishos | 06:06 | |
*** olafh has joined #sailfishos | 06:22 | |
*** FlashAsp_ has joined #sailfishos | 06:23 | |
*** FlashAsparagus has quit IRC | 06:25 | |
*** krendil has quit IRC | 06:45 | |
*** Yomi has quit IRC | 06:48 | |
*** Morpog_PC has joined #sailfishos | 07:09 | |
*** Yomi has joined #sailfishos | 07:10 | |
*** Yomi has joined #sailfishos | 07:11 | |
kimmoli | in 6th january: "OpacityRampEffect has been reviewed for public use, but is not yet documented. We’ll do this asap." ..? | 07:22 |
Stskeeps | hmm :) | 07:22 |
Stskeeps | mail that to -devel? | 07:22 |
kimmoli | i will make friendly reminder there... | 07:23 |
*** plfiorini has joined #sailfishos | 07:31 | |
*** itbaron has joined #sailfishos | 07:37 | |
*** danielwf has joined #sailfishos | 07:57 | |
*** fracting has quit IRC | 08:03 | |
*** FlashAsp_ has quit IRC | 08:08 | |
kimmoli | w00t: you have once written "In a future release,applicationActive is deprecated (and aliased to Qt.application.active)" ?? Is it ? | 08:08 |
*** kunev has joined #sailfishos | 08:10 | |
*** Sviox has joined #sailfishos | 08:15 | |
*** itbaron has quit IRC | 08:16 | |
*** stephg has quit IRC | 08:19 | |
Sviox | This may be a very stupid question, but if I use pageStack.push(Qt.resolvedUrl("x.qml", {key: "value"}), how do I read the parameter on x.qml page? | 08:20 |
*** dharman has joined #sailfishos | 08:21 | |
*** dharman has quit IRC | 08:25 | |
*** dharman has joined #sailfishos | 08:25 | |
Stskeeps | can't you work around that with a bit of variable assignment? | 08:29 |
Sviox | I have defined property string key: "" on x.qml, but it doesn't seem to get set by the push() call. | 08:31 |
*** RoKenn has joined #sailfishos | 08:34 | |
coderus | Sviox: pageStack.push(page, {"property": value}) | 08:39 |
coderus | not {property: "value") | 08:39 |
*** krendil has joined #sailfishos | 08:40 | |
Sviox | coderus: in JSON object notation, property names are not required to be in parentheses | 08:45 |
Sviox | So { key: value } equals { "key": value}. | 08:45 |
Sviox | coderus: does the parameter need to be introduced in x.qml as a property of the page? | 08:48 |
kimmoli | yes | 08:49 |
*** Nightmare__ has joined #sailfishos | 08:50 | |
Sviox | Okay, that is done as property string key: "some default value" | 08:50 |
Sviox | I tried adding onKeyChanged listener but it never gets called | 08:50 |
kimmoli | afaik ot wokrs only ny "key" : "string valur" | 08:51 |
kimmoli | onClicked: pageStack.push(Qt.resolvedUrl("aboutPage.qml"), { "version": myclass.version, "year": "2014", "name": "No app name here" } ) | 08:51 |
Sviox | Okay. Tried "key" : "value", no luck. | 08:52 |
kimmoli | and on this AboutPage i have >> Page { property string name ... | 08:52 |
kimmoli | which i have then on e.g. Label { text: name } | 08:52 |
Sviox | Do you give it default value? Not sure what the execution order is, should the given parameter go over the default value? | 08:53 |
kimmoli | i have no default there | 08:53 |
Sviox | Okay.. I give my property to SilicaWebView as url: key | 08:53 |
*** fracting has joined #sailfishos | 08:53 | |
*** crazy_imp has quit IRC | 08:56 | |
Sviox | This is what I do precisely: pageStack.push(Qt.resolvedUrl("WebViewPage.qml", {"startPage": "http://www.google.com"})) | 08:57 |
Sviox | And that qml has Page{ property string startPage; SilicaWebView{ url: startPage; ... } } | 08:58 |
*** crazy_imp has joined #sailfishos | 08:58 | |
Sviox | Any ideas? | 08:58 |
coderus | emulator? | 08:59 |
Sviox | Yes | 08:59 |
coderus | it works on device | 08:59 |
coderus | might be an emulator bug | 08:59 |
Sviox | Sounds very unlikely since this is really basic stuff | 08:59 |
coderus | i'm never using emulator | 08:59 |
kimmoli | me either | 09:00 |
coderus | well, try to show your whole qml code\and also check output, some warnings maybe? | 09:00 |
coderus | Error: Invalid attempt to destroy() an indestructible object | 09:02 |
Sviox | Does the SDK support running code directly on device somehow? | 09:02 |
coderus | INDESTRUCTIBLE! | 09:02 |
coderus | Sviox: sure | 09:02 |
coderus | Sviox: Projects - Control - Devices | 09:02 |
jpnurmi | Sviox: your parentheses look wrong. Qt.resolvedUrl() doesn't take 2 parameters | 09:05 |
Sviox | I'll be damned.. | 09:06 |
jpnurmi | the second parameter ie. "properties" should be passed to PageStack.push() | 09:06 |
kimmoli | good eyes jpnurmi | 09:06 |
Sviox | btw. tried adding the real device as target but "test connection" fails. SSH is enabled on device. | 09:07 |
*** zoldyck has joined #sailfishos | 09:08 | |
coderus | jpnurmi: ah :D | 09:09 |
Sviox | jpnurmi: Works now. Damn I need to check my eye-sight or something x) | 09:09 |
coderus | Sviox: try again and again :) | 09:09 |
Sviox | Devices -> add -> Mer ARM Device -> Start wizard right? | 09:10 |
*** Naranek has joined #sailfishos | 09:10 | |
*** RoKenn has quit IRC | 09:12 | |
*** plfiorini has quit IRC | 09:13 | |
*** arcean has joined #sailfishos | 09:13 | |
*** plfiorini has joined #sailfishos | 09:14 | |
*** qqK has joined #sailfishos | 09:14 | |
* kimmoli decided to use scp + pkcon install-local ... works for me. | 09:14 | |
*** xerpi has joined #sailfishos | 09:16 | |
*** Almehdin has joined #sailfishos | 09:17 | |
*** dharman has quit IRC | 09:30 | |
coderus | Sviox: right | 09:32 |
*** spider-mario has joined #sailfishos | 09:35 | |
*** dharman has joined #sailfishos | 09:40 | |
squidd | guys | 09:41 |
squidd | do me a favor and remind me next time I start cooking that pourin boiling water on my hand hurts | 09:41 |
*** BasilSemuonov has joined #sailfishos | 09:42 | |
*** louisdk has joined #sailfishos | 09:42 | |
*** spider-mario has quit IRC | 09:45 | |
*** disharmonic has joined #sailfishos | 09:46 | |
*** yulimoto has quit IRC | 09:48 | |
*** spider-mario has joined #sailfishos | 09:49 | |
*** yulimoto has joined #sailfishos | 09:49 | |
*** tuukkah has joined #sailfishos | 09:52 | |
coderus | squidd: make a sticker | 09:53 |
*** FlashAsparagus has joined #sailfishos | 09:56 | |
*** xfrancis has joined #sailfishos | 09:56 | |
*** Univeresebenzene has quit IRC | 09:56 | |
*** xfrancis has quit IRC | 09:59 | |
*** dharman has quit IRC | 10:01 | |
*** Sail0r has joined #sailfishos | 10:03 | |
*** faenil has joined #sailfishos | 10:04 | |
kimmoli | pouring too much (way too much) naga morich also hurts - afterwards | 10:06 |
squidd | kimmoli: yeah the water didnt really hurt until couple minutes after | 10:07 |
*** FlashAsparagus has quit IRC | 10:08 | |
*** NoGy_ has joined #sailfishos | 10:08 | |
*** NoGy has quit IRC | 10:12 | |
*** NoGy_ is now known as NoGy | 10:12 | |
tbr | mmmm, naga | 10:16 |
*** Universebenzene has joined #sailfishos | 10:17 | |
*** PamNor_ has joined #sailfishos | 10:24 | |
*** PamNor_ has quit IRC | 10:25 | |
*** PamNor_ has joined #sailfishos | 10:26 | |
*** xfrancis has joined #sailfishos | 10:27 | |
*** rashm2k1 has joined #sailfishos | 10:28 | |
*** PamNor_ has joined #sailfishos | 10:28 | |
*** FlashAsparagus has joined #sailfishos | 10:29 | |
*** PamNor_ has quit IRC | 10:29 | |
*** PamNor_ has joined #sailfishos | 10:31 | |
*** PamNor_ has quit IRC | 10:32 | |
*** xfrancis has quit IRC | 10:34 | |
*** plfiorini has quit IRC | 10:38 | |
*** fracting has quit IRC | 10:47 | |
*** rm_work is now known as rm_work|away | 10:51 | |
*** rm_work|away is now known as rm_work | 10:51 | |
*** vesurivs has joined #sailfishos | 10:53 | |
*** ambro has quit IRC | 10:55 | |
*** euroelessar has quit IRC | 11:04 | |
*** ArtVandalae has joined #sailfishos | 11:09 | |
*** m4g0g has quit IRC | 11:16 | |
*** PamNor has joined #sailfishos | 11:20 | |
*** RobertMe has joined #sailfishos | 11:40 | |
*** itbaron has joined #sailfishos | 11:44 | |
*** BeholdMyGlory has joined #sailfishos | 11:48 | |
*** Morpog_PC has quit IRC | 11:50 | |
*** alin has joined #sailfishos | 11:54 | |
*** Bysmyyr has quit IRC | 12:01 | |
*** Sequenced has quit IRC | 12:01 | |
*** Sage-_ has quit IRC | 12:01 | |
*** tabasko has quit IRC | 12:01 | |
*** Pantti has quit IRC | 12:01 | |
*** crnd has quit IRC | 12:02 | |
*** Mnsu_ has quit IRC | 12:02 | |
*** datakurre has quit IRC | 12:02 | |
*** krendil has quit IRC | 12:03 | |
*** squidd has quit IRC | 12:06 | |
*** Sequenced has joined #sailfishos | 12:06 | |
*** yourname has joined #sailfishos | 12:07 | |
*** yourname is now known as squidd | 12:07 | |
*** Bysmyyr has joined #sailfishos | 12:11 | |
*** datakurre has joined #sailfishos | 12:11 | |
*** Mnsu has joined #sailfishos | 12:12 | |
*** zoldyck has quit IRC | 12:15 | |
*** plfiorini has joined #sailfishos | 12:22 | |
*** hardcodes has joined #sailfishos | 12:26 | |
*** Morpog_PC has joined #sailfishos | 12:30 | |
*** hardcodes has quit IRC | 12:32 | |
*** stephg has joined #sailfishos | 12:36 | |
*** BuTwo has joined #sailfishos | 12:37 | |
*** squidd has quit IRC | 12:40 | |
*** squidd has joined #sailfishos | 12:43 | |
*** kunev has quit IRC | 12:43 | |
*** RobertMe has quit IRC | 12:48 | |
*** Blizzz has joined #sailfishos | 12:49 | |
*** arcean_ has joined #sailfishos | 12:49 | |
*** arcean has quit IRC | 12:52 | |
*** Morpog_PC has quit IRC | 12:59 | |
*** PamNor has quit IRC | 13:06 | |
*** Nightmare__ has quit IRC | 13:12 | |
*** Armadillo has joined #sailfishos | 13:13 | |
*** gexc has joined #sailfishos | 13:17 | |
*** krnlyng has joined #sailfishos | 13:21 | |
*** gexc has quit IRC | 13:24 | |
*** gexc has joined #sailfishos | 13:25 | |
*** fracting has joined #sailfishos | 13:30 | |
*** BuTwo has quit IRC | 13:30 | |
*** danielwf has joined #sailfishos | 13:49 | |
*** euroelessar has joined #sailfishos | 13:49 | |
*** Bubble-be has joined #sailfishos | 13:54 | |
*** gexc has quit IRC | 13:55 | |
*** gexc_ has joined #sailfishos | 13:55 | |
*** Blizzz has quit IRC | 14:10 | |
*** mirco has joined #sailfishos | 14:14 | |
mirco | hi | 14:14 |
squidd | hi | 14:14 |
*** Bubble-be has quit IRC | 14:15 | |
*** mirco has quit IRC | 14:15 | |
*** Armadillo has quit IRC | 14:25 | |
*** Sail0r has quit IRC | 14:25 | |
*** TMavica has joined #sailfishos | 14:30 | |
*** bjorn has joined #sailfishos | 14:32 | |
*** vesurivs has quit IRC | 14:34 | |
*** dharman has joined #sailfishos | 14:35 | |
*** jflka has joined #sailfishos | 14:38 | |
*** ArtVandalae has quit IRC | 14:39 | |
*** kimmoli_sailing has joined #sailfishos | 14:41 | |
*** Almehdin has quit IRC | 14:42 | |
*** spider-mario has quit IRC | 14:44 | |
*** kimmoli_sailing has quit IRC | 14:44 | |
*** louisdk has quit IRC | 14:50 | |
*** ArtVandalae has joined #sailfishos | 14:52 | |
*** raa71 has quit IRC | 14:57 | |
*** jflka has quit IRC | 15:05 | |
*** artemma has quit IRC | 15:07 | |
*** fracting has quit IRC | 15:09 | |
*** martyone has joined #sailfishos | 15:11 | |
*** leinir has quit IRC | 15:18 | |
*** Eztran has joined #sailfishos | 15:35 | |
*** qqK has quit IRC | 15:35 | |
*** AlmAck has joined #sailfishos | 15:41 | |
*** Beankylla has joined #sailfishos | 15:41 | |
*** blues-man has joined #sailfishos | 15:45 | |
*** Blizzz has joined #sailfishos | 15:46 | |
*** Nichope has joined #sailfishos | 15:48 | |
*** Beankylla has quit IRC | 15:53 | |
*** kunev has joined #sailfishos | 15:57 | |
*** Eztran has quit IRC | 15:57 | |
*** tat has joined #sailfishos | 16:02 | |
*** gexc_ has quit IRC | 16:03 | |
*** tat_ has quit IRC | 16:04 | |
*** Universebenzene has quit IRC | 16:05 | |
*** Sage_ has joined #sailfishos | 16:05 | |
*** Beankylla has joined #sailfishos | 16:06 | |
*** thedead1440 has joined #sailfishos | 16:07 | |
*** tat has quit IRC | 16:08 | |
*** Blizzz has quit IRC | 16:09 | |
*** qqK has joined #sailfishos | 16:12 | |
*** Almehdin has joined #sailfishos | 16:14 | |
*** martyone has quit IRC | 16:17 | |
*** danielwf has quit IRC | 16:22 | |
*** TMavica has quit IRC | 16:29 | |
*** DarkSim has joined #sailfishos | 16:30 | |
*** javispedro has joined #sailfishos | 16:39 | |
*** kunev has quit IRC | 16:47 | |
*** Morpog_PC has joined #sailfishos | 16:56 | |
*** Nichope has quit IRC | 16:58 | |
*** FlashAsparagus has quit IRC | 16:58 | |
*** Nichope has joined #sailfishos | 16:58 | |
*** louisdk has joined #sailfishos | 17:09 | |
*** javispedro has quit IRC | 17:09 | |
*** miksuh has quit IRC | 17:13 | |
*** kunev has joined #sailfishos | 17:16 | |
*** Nightmare__ has joined #sailfishos | 17:24 | |
*** lbt_away is now known as lbt | 17:25 | |
Sviox | How come silica TextField seems to reserve a huge empty space below the input field? | 17:27 |
jpnurmi | Sviox: it's reserved for the label. you could try setting labelVisible: false | 17:31 |
*** miksuh has joined #sailfishos | 17:33 | |
Sviox | jpnurmi: thanks, I'll try that | 17:36 |
Sviox | That seems to help. But I'm still seeing quite a big rect vertically, even without any margins | 17:38 |
Sviox | How does seting the label work? TextField{ Label{} }? | 17:39 |
jpnurmi | label: "foo" | 17:40 |
jpnurmi | it's often something similar than the placeholder text. it's just that the placeholder goes naturally hidden when you start entering text, so then the label becomes visible instead | 17:41 |
jpnurmi | so that you still have a visual clue what the field is about | 17:41 |
Sviox | Oh.. didn't see that attribute listed anywhere in the specification | 17:41 |
*** tat has joined #sailfishos | 17:42 | |
*** Blizzz has joined #sailfishos | 17:42 | |
Sviox | Hmm, can't see that label if I do it like that | 17:43 |
jpnurmi | afair, the label comes visible when you have entered some text | 17:44 |
jpnurmi | until that, it's supposed to have a placeholder instead :) | 17:44 |
jpnurmi | or something like that :P | 17:44 |
Sviox | Ohh, so it seems.. | 17:44 |
Sviox | Damn, then that's no good in my use case | 17:45 |
*** nsuffys has joined #sailfishos | 17:49 | |
*** high-rez has joined #sailfishos | 17:59 | |
*** FlashAsparagus has joined #sailfishos | 18:00 | |
*** Funkeh` has joined #sailfishos | 18:09 | |
*** Blizzz has quit IRC | 18:11 | |
*** paju_ has joined #sailfishos | 18:12 | |
*** raa70 has joined #sailfishos | 18:14 | |
*** paju has quit IRC | 18:15 | |
*** alin__ has joined #sailfishos | 18:15 | |
*** alin__ has quit IRC | 18:16 | |
*** rashm2k has joined #sailfishos | 18:18 | |
*** kunev has quit IRC | 18:18 | |
*** alin has quit IRC | 18:19 | |
*** kunev has joined #sailfishos | 18:19 | |
*** rashm2k1 has quit IRC | 18:20 | |
*** martyone has joined #sailfishos | 18:21 | |
*** lechris_ has joined #sailfishos | 18:22 | |
*** Sail0r has joined #sailfishos | 18:23 | |
kimmoli | so, seems i can't use Repeater inside SequentialAnimation ... meh | 18:30 |
*** martyone has quit IRC | 18:31 | |
*** vesurivs has joined #sailfishos | 18:42 | |
*** danielwf has joined #sailfishos | 18:47 | |
Sviox | Is there a way to set the truncation mode for TextField? | 18:48 |
*** SeekingFor has quit IRC | 18:57 | |
*** blues-man has quit IRC | 18:57 | |
*** SeekingFor has joined #sailfishos | 18:57 | |
*** furikku has quit IRC | 18:59 | |
*** itbaron has quit IRC | 19:05 | |
*** DrIDK has joined #sailfishos | 19:07 | |
*** qwazix_ has joined #sailfishos | 19:11 | |
*** tat has quit IRC | 19:14 | |
*** Tofe|Away is now known as Tofe | 19:16 | |
*** m4g0g has joined #sailfishos | 19:20 | |
*** qwazix_ has quit IRC | 19:21 | |
*** Tofe is now known as Tofe|Away | 19:29 | |
*** Kabouik has joined #sailfishos | 19:30 | |
*** ced117 has quit IRC | 19:30 | |
coderus | Sviox: no | 19:31 |
coderus | editable text inputs can't be faded or elided | 19:31 |
*** tat has joined #sailfishos | 19:32 | |
bjorn | Does the CONFIG += sailfishapp add the install step for the 'qml' directory? | 19:34 |
bjorn | I've been a bit at a loss as to why it's getting installed and how to make additional directories/files install alongside it. | 19:35 |
*** kunev has quit IRC | 19:36 | |
jake9xx | bjorn: yes | 19:39 |
bjorn | jake9xx: Ok, thanks for the confirmation. :) | 19:43 |
Sviox | coderus: it actually does show elide at the moment (i.e. '...') | 19:43 |
*** Sail0r has quit IRC | 19:44 | |
*** Blizzz has joined #sailfishos | 19:45 | |
*** plfiorini has quit IRC | 19:45 | |
*** Sviox has quit IRC | 19:47 | |
coderus | Sviox: you doing something wrong if you have elided text in textfield :) | 19:49 |
*** Beankylla has quit IRC | 19:52 | |
*** Hijackal has joined #sailfishos | 19:56 | |
*** Nightmare__ has quit IRC | 19:57 | |
*** euroelessar has quit IRC | 19:57 | |
*** plfiorini has joined #sailfishos | 19:57 | |
*** martyone has joined #sailfishos | 20:00 | |
*** Morpog_PC has quit IRC | 20:01 | |
bjorn | Are there plans to support QtQuick.Controls on Jolla? | 20:03 |
bjorn | I'm doing a game and for this purpose I'm not interested in using Silica-looking controls, yet it would also be nice not to have to write it all from scratch. | 20:04 |
bjorn | On Android and Tizen I've had success just skinning the QtQuick.Controls. | 20:04 |
*** Beankylla has joined #sailfishos | 20:05 | |
coderus | bjorn: which controls do you using? | 20:05 |
bjorn | coderus: TextField and Button. | 20:06 |
*** tat has quit IRC | 20:06 | |
coderus | then just my imho you can use stock QtQuick 2.1 controls and skin it | 20:08 |
coderus | no need to port Controls just for field and button ;) | 20:09 |
bjorn | Hmm, well especially TextField isn't so simple, but I could revert it back to my own one. | 20:10 |
*** prometoys has joined #sailfishos | 20:10 | |
coderus | use TextEdit | 20:11 |
coderus | and skin it around, if needed | 20:11 |
bjorn | I know, I've done it before I ported mine to QtQuick.Controls. | 20:11 |
coderus | Controls isnt natiou shouldnt wait for Controls in near months (you shouldnt wait for Controls at all) | 20:13 |
coderus | imho it will be never added officially | 20:13 |
faenil | bjorn, btw Nemo uses QtQuick.Controls for its WIP UI | 20:13 |
faenil | so, you should be able to just grab the packaged rpm from Nemo's repos, and package it with your app | 20:14 |
bjorn | coderus: The nice thing about controls is that it's also handling stuff like key navigation. | 20:14 |
bjorn | faenil: Ok, interesting. | 20:15 |
coderus | bjorn: sailfish devices have no keyboard :) | 20:15 |
faenil | bjorn, https://github.com/nemomobile-packages/qtquickcontrols | 20:15 |
bjorn | coderus: Yes, but my game isn't running only on Sailfish devices... | 20:16 |
coderus | bjorn: if you still want, you should bundle it iinto your project | 20:16 |
coderus | i said that already | 20:16 |
faenil | bjorn, https://build.merproject.org/package/binaries?package=qtquickcontrols&project=nemo%3Adevel%3Amw&repository=latest_armv7hl | 20:17 |
bjorn | faenil: Hmm, and I can add that as dependency? | 20:18 |
faenil | I don't think that's accepted by harbour | 20:18 |
bjorn | Ah, ok. | 20:18 |
faenil | you should be able to get it to work by bundling it with your app though | 20:18 |
faenil | I've got to go though, cya people :) | 20:19 |
bjorn | I've already been spending the whole weekend just figuring out the packaging. This is not for me. | 20:19 |
*** martyone has quit IRC | 20:19 | |
bjorn | Cause I still feel clueless. :P | 20:20 |
*** FlashAsparagus has quit IRC | 20:22 | |
*** FlashAsparagus has joined #sailfishos | 20:23 | |
*** FlashAsparagus has quit IRC | 20:27 | |
*** Almehdin has quit IRC | 20:41 | |
*** jjarven has quit IRC | 20:41 | |
*** Almehdin has joined #sailfishos | 20:43 | |
*** tat has joined #sailfishos | 20:43 | |
*** gabriel9 has joined #sailfishos | 20:44 | |
*** Beankylla has quit IRC | 20:47 | |
*** nsuffys has quit IRC | 20:49 | |
*** krendil has joined #sailfishos | 20:50 | |
*** m4g0g has quit IRC | 20:55 | |
*** prometoys has quit IRC | 20:57 | |
*** jjarven has joined #sailfishos | 21:04 | |
*** Hijackal has quit IRC | 21:09 | |
*** krendil has quit IRC | 21:15 | |
*** xerpi has quit IRC | 21:16 | |
*** dharman has quit IRC | 21:22 | |
*** lechris_ has quit IRC | 21:34 | |
*** lechris_ has joined #sailfishos | 21:34 | |
*** Almehdin has quit IRC | 21:42 | |
*** gigetoo has quit IRC | 21:45 | |
*** gigetoo has joined #sailfishos | 21:46 | |
*** gabriel9 has quit IRC | 21:46 | |
*** BasilSemuonov has quit IRC | 21:58 | |
*** Blizzz has quit IRC | 21:58 | |
*** lechris_ has quit IRC | 22:00 | |
*** remarc has quit IRC | 22:01 | |
*** xfrancis has joined #sailfishos | 22:08 | |
*** Kabouik has quit IRC | 22:13 | |
*** DarkSim has quit IRC | 22:13 | |
*** qqK has quit IRC | 22:13 | |
*** krnlyng has quit IRC | 22:13 | |
*** sjtoik has quit IRC | 22:13 | |
*** kimmoli has quit IRC | 22:13 | |
*** GeneralAntilles has quit IRC | 22:13 | |
*** bjorn has quit IRC | 22:13 | |
*** ln- has quit IRC | 22:13 | |
*** kostola has quit IRC | 22:13 | |
*** bara has quit IRC | 22:13 | |
*** vivia has quit IRC | 22:13 | |
*** jepped has quit IRC | 22:13 | |
*** walokra has quit IRC | 22:13 | |
*** Rantanen has quit IRC | 22:13 | |
*** nahkiss has quit IRC | 22:13 | |
*** lazybear has quit IRC | 22:13 | |
*** JvD_ has quit IRC | 22:13 | |
*** gigetoo has quit IRC | 22:13 | |
*** jjarven has quit IRC | 22:13 | |
*** Sage_ has quit IRC | 22:13 | |
*** olafh has quit IRC | 22:13 | |
*** ArkkisN has quit IRC | 22:13 | |
*** mikkoh has quit IRC | 22:13 | |
*** tuomasjjrasanen has quit IRC | 22:13 | |
*** petantik has quit IRC | 22:13 | |
*** radish has quit IRC | 22:13 | |
*** FireFly has quit IRC | 22:13 | |
*** rm_work has quit IRC | 22:13 | |
*** zumbi has quit IRC | 22:13 | |
*** MMori has quit IRC | 22:13 | |
*** Dr_Cain has quit IRC | 22:13 | |
*** inara has quit IRC | 22:13 | |
*** chem|st has quit IRC | 22:13 | |
*** flux has quit IRC | 22:13 | |
*** supauli has quit IRC | 22:13 | |
*** naali_ has quit IRC | 22:13 | |
*** AlmAck has quit IRC | 22:13 | |
*** faenil has quit IRC | 22:13 | |
*** disharmonic has quit IRC | 22:13 | |
*** Zesty_ has quit IRC | 22:13 | |
*** phlixi has quit IRC | 22:13 | |
*** cnuke has quit IRC | 22:13 | |
*** jake9xx has quit IRC | 22:13 | |
*** zenvoid has quit IRC | 22:13 | |
*** veskuh has quit IRC | 22:13 | |
*** plfiorini has quit IRC | 22:13 | |
*** rashm2k has quit IRC | 22:13 | |
*** ArtVandalae has quit IRC | 22:13 | |
*** arcean_ has quit IRC | 22:13 | |
*** Sequenced has quit IRC | 22:13 | |
*** tuukkah has quit IRC | 22:13 | |
*** Naranek has quit IRC | 22:13 | |
*** vakkov has quit IRC | 22:13 | |
*** roboro has quit IRC | 22:13 | |
*** Pat_o has quit IRC | 22:13 | |
*** Anarky_ has quit IRC | 22:13 | |
*** __pv has quit IRC | 22:13 | |
*** kaltsi has quit IRC | 22:13 | |
*** kinezo has quit IRC | 22:13 | |
*** mornfall has quit IRC | 22:13 | |
*** joonahoi has quit IRC | 22:13 | |
*** cybette has quit IRC | 22:13 | |
*** zmo has quit IRC | 22:13 | |
*** tanghus has quit IRC | 22:13 | |
*** ahiemstra has quit IRC | 22:13 | |
*** fk_lx has quit IRC | 22:13 | |
*** narchie has quit IRC | 22:13 | |
*** xruxa_away has quit IRC | 22:13 | |
*** lpotter has quit IRC | 22:13 | |
*** euroelessar has joined #sailfishos | 22:17 | |
*** pbn has quit IRC | 22:17 | |
*** pbn has joined #sailfishos | 22:17 | |
*** arcean_ has joined #sailfishos | 22:17 | |
*** APTX has quit IRC | 22:18 | |
*** cybette has joined #sailfishos | 22:19 | |
*** kinezo has joined #sailfishos | 22:19 | |
*** xfrancis has quit IRC | 22:19 | |
*** cybette has quit IRC | 22:19 | |
*** cybette has joined #sailfishos | 22:19 | |
*** joonahoi has joined #sailfishos | 22:19 | |
*** 16WAAA0Q2 has joined #sailfishos | 22:19 | |
*** fk_lx_ has joined #sailfishos | 22:19 | |
*** kaltsi_ has joined #sailfishos | 22:19 | |
*** rashm2k1 has joined #sailfishos | 22:19 | |
*** kimmoli has joined #sailfishos | 22:19 | |
*** gigetoo has joined #sailfishos | 22:19 | |
*** jjarven has joined #sailfishos | 22:19 | |
*** plfiorini has joined #sailfishos | 22:19 | |
*** Kabouik has joined #sailfishos | 22:19 | |
*** rashm2k has joined #sailfishos | 22:19 | |
*** DarkSim has joined #sailfishos | 22:19 | |
*** qqK has joined #sailfishos | 22:19 | |
*** Sage_ has joined #sailfishos | 22:19 | |
*** AlmAck has joined #sailfishos | 22:19 | |
*** ArtVandalae has joined #sailfishos | 22:19 | |
*** bjorn has joined #sailfishos | 22:19 | |
*** krnlyng has joined #sailfishos | 22:19 | |
*** 17SAAFNUU has joined #sailfishos | 22:19 | |
*** Sequenced has joined #sailfishos | 22:19 | |
*** faenil has joined #sailfishos | 22:19 | |
*** tuukkah has joined #sailfishos | 22:19 | |
*** disharmonic has joined #sailfishos | 22:19 | |
*** Naranek has joined #sailfishos | 22:19 | |
*** olafh has joined #sailfishos | 22:19 | |
*** Zesty_ has joined #sailfishos | 22:19 | |
*** vakkov has joined #sailfishos | 22:19 | |
*** ArkkisN has joined #sailfishos | 22:19 | |
*** mikkoh has joined #sailfishos | 22:19 | |
*** tuomasjjrasanen has joined #sailfishos | 22:19 | |
*** roboro has joined #sailfishos | 22:19 | |
*** petantik has joined #sailfishos | 22:19 | |
*** Pat_o has joined #sailfishos | 22:19 | |
*** JvD_ has joined #sailfishos | 22:19 | |
*** lazybear has joined #sailfishos | 22:19 | |
*** nahkiss has joined #sailfishos | 22:19 | |
*** walokra has joined #sailfishos | 22:19 | |
*** Rantanen has joined #sailfishos | 22:19 | |
*** jepped has joined #sailfishos | 22:19 | |
*** bara has joined #sailfishos | 22:19 | |
*** kostola has joined #sailfishos | 22:19 | |
*** ln- has joined #sailfishos | 22:19 | |
*** vivia has joined #sailfishos | 22:19 | |
*** GeneralAntilles has joined #sailfishos | 22:19 | |
*** sjtoik has joined #sailfishos | 22:19 | |
*** naali_ has joined #sailfishos | 22:19 | |
*** supauli has joined #sailfishos | 22:19 | |
*** flux has joined #sailfishos | 22:19 | |
*** chem|st has joined #sailfishos | 22:19 | |
*** inara has joined #sailfishos | 22:19 | |
*** Dr_Cain has joined #sailfishos | 22:19 | |
*** MMori has joined #sailfishos | 22:19 | |
*** zumbi has joined #sailfishos | 22:19 | |
*** rm_work has joined #sailfishos | 22:19 | |
*** FireFly has joined #sailfishos | 22:19 | |
*** radish has joined #sailfishos | 22:19 | |
*** Anarky_ has joined #sailfishos | 22:19 | |
*** __pv has joined #sailfishos | 22:19 | |
*** kaltsi has joined #sailfishos | 22:19 | |
*** phlixi has joined #sailfishos | 22:19 | |
*** cnuke has joined #sailfishos | 22:19 | |
*** 17SAAEKNB has joined #sailfishos | 22:19 | |
*** mornfall has joined #sailfishos | 22:19 | |
*** 17SAAD2YG has joined #sailfishos | 22:19 | |
*** jake9xx has joined #sailfishos | 22:19 | |
*** zenvoid has joined #sailfishos | 22:19 | |
*** lpotter has joined #sailfishos | 22:19 | |
*** 17SAAC5CT has joined #sailfishos | 22:19 | |
*** narchie has joined #sailfishos | 22:19 | |
*** veskuh has joined #sailfishos | 22:19 | |
*** zmo has joined #sailfishos | 22:19 | |
*** tanghus has joined #sailfishos | 22:19 | |
*** ahiemstra has joined #sailfishos | 22:19 | |
*** fk_lx has joined #sailfishos | 22:19 | |
*** xruxa_away has joined #sailfishos | 22:19 | |
*** __pv_ has joined #sailfishos | 22:19 | |
*** thedead1440 has quit IRC | 22:19 | |
*** Naranek_ has joined #sailfishos | 22:20 | |
*** PamNor has joined #sailfishos | 22:20 | |
*** thedead1440_ has joined #sailfishos | 22:20 | |
*** plfiorini has quit IRC | 22:20 | |
*** Naranek has quit IRC | 22:20 | |
*** __pv has quit IRC | 22:20 | |
*** kaltsi has quit IRC | 22:20 | |
*** fk_lx has quit IRC | 22:20 | |
*** 17SAAD2YG has quit IRC | 22:20 | |
*** 17SAAEKNB has quit IRC | 22:20 | |
*** 17SAAC5CT has quit IRC | 22:20 | |
*** roboro has quit IRC | 22:20 | |
*** 17SAAFNUU has quit IRC | 22:20 | |
*** rashm2k has quit IRC | 22:20 | |
*** plfiorini has joined #sailfishos | 22:20 | |
*** zmo has quit IRC | 22:23 | |
*** roboro has joined #sailfishos | 22:23 | |
*** APTX has joined #sailfishos | 22:23 | |
*** disharmonic has quit IRC | 22:24 | |
*** Funkeh` has quit IRC | 22:36 | |
*** arcean_ has quit IRC | 22:47 | |
*** prometoys has joined #sailfishos | 22:49 | |
*** prometoys has joined #sailfishos | 22:49 | |
*** AlmAck has quit IRC | 22:52 | |
*** Kabouik_ has joined #sailfishos | 22:55 | |
*** Kabouik has quit IRC | 22:57 | |
*** beford has joined #sailfishos | 22:58 | |
*** Kabouik has joined #sailfishos | 22:58 | |
*** euroelessar has quit IRC | 22:59 | |
*** PamNor has quit IRC | 23:00 | |
*** Kabouik_ has quit IRC | 23:00 | |
*** Funkeh` has joined #sailfishos | 23:03 | |
*** louisdk has quit IRC | 23:16 | |
*** prometoys has quit IRC | 23:17 | |
*** rashm2k1 has quit IRC | 23:19 | |
*** danielwf has quit IRC | 23:26 | |
*** cxl000 has quit IRC | 23:30 | |
*** Kabouik has quit IRC | 23:34 | |
*** olafh has quit IRC | 23:35 | |
*** Kabouik has joined #sailfishos | 23:38 | |
*** danielwf has joined #sailfishos | 23:38 | |
*** qqK has quit IRC | 23:41 | |
*** danielwf has quit IRC | 23:43 | |
*** euroelessar has joined #sailfishos | 23:44 | |
*** DarkSim has quit IRC | 23:48 | |
*** beford has quit IRC | 23:52 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!