[00:00] awesome! [00:01] got any recommendations on where I can learn more about ubuntu? I'd like to eventually become a developer and contribute to the ubuntu touch project [00:03] What exactly do you want to learn about Ubuntu? [00:06] Sorry, I guess that's a really vague question. I'd like to be able to know enough about how the system works to be able to contribute to fixing bugs and working on the core system functionality. To aid in the coding and development of the Ubuntu OS and especially Ubuntu Touch. [00:07] http://developer.ubuntu.com/ is a good place to start [00:09] thanks [00:09] ibuntu, I'll be around tomorrow if you want to chat some more. Also more folks will start to be around in the next few days as folks get back from the holidays [00:09] have fun, I'm off... [00:09] ttyl! === aaron_ is now known as ahoneybun [01:21] hi [01:21] anyone here? [01:52] dobey: fyi just submitted meetup scope to the store if you wanna check it out (once it gets published). I've actually altered the account-provider to use oauth2 instead of oauth1.0a as well if you'd like me to update my branch later === tray is now known as qwerty_tray === aaron_ is now known as ahoneybun === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun [08:36] good morning [08:38] hey dholbach [08:40] hi seb128 === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun [09:46] Good morning all; happy Old Rock Day! :-) === apachelogger is now known as sitter === vrruiz_ is now known as rvr [11:13] is this wiki page out of date? http://developer.ubuntu.com/en/start/ubuntu-for-devices/image-channels/ [11:13] e.g. ubuntu-device-flash --list-channels [11:13] doesnt seem to work any more [11:15] https://bugs.launchpad.net/ubuntu/+source/phablet-tools/+bug/1393560 [11:15] Launchpad bug 1393560 in phablet-tools (Ubuntu) "ubuntu-device-flash --list-channels doesn't work" [Undecided,Confirmed] [11:15] looks like someone beat me to it :) [11:17] ubuntu-device-flash query --list-channels --device=flo [11:17] that works [11:17] so yes, the docs are outdated [11:18] looks like the man page is too [11:18] sergiusens: ^ [11:18] sergiusens, you want me to open a bug? (The man page says options should have a single hyphen for example) [11:18] thx popey [11:19] np [11:20] popey, one more quick question, Im flashing my device with the Vivid image, and I've been told to make sure it's read/write [11:20] does that mean simply turning on dev mode? === _salem is now known as salem_ [11:54] Chipaca, ping [11:58] aquarius: pong [11:58] aquarius: was getting a cuppa :) [11:58] Chipaca, hny, etc. :) [11:58] ooh, there's a good idea :) [11:58] aquarius: and somebody had carelessly left some of my mum's xmas cake right next to the kettle [11:59] honestly, people sometimes [11:59] it's like they *want* you to fall into the trap [12:04] tedg: ping about urldispatcher when you're around === MacSlow is now known as MacSlow|lunch === alan_g is now known as alan_g|afk [12:18] brendand, rtm 02 is looking good! 4 reboots and no asyncness [12:21] tedg, ^ === alan_g|afk is now known as alan_g [12:35] popey: willcooke sure [12:36] phablet-tools is the wrong project, I don't even look at those anymore... [12:52] com.canonical.URLDispatcher.BadURL: URL 'settings:///system/system-update' is not handleable by the URL Dispatcher [12:52] tedg: ^ wat? [13:01] jgdx, yeah i signed it off [13:02] brendand, nice === MacSlow|lunch is now known as MacSlow [13:54] sergiusens, which project should I log the bug against? [14:03] willcooke: goget-ubuntu-touch, or just ubuntu-bug ubuntu-device-flash ;-) [14:04] thx sergiusens [14:06] np [14:34] tedg! oi! you see the magic appid:// URLs that URLDispatcher supports? How can I pass extra information with them? I just tried to URLDispatcher appid://org.kryogenix.myapp/MyApp/current-user-version?url=somestuff and urldispatcher says it's invalid [14:34] aquarius, It is. What extra information do you want? [14:35] tedg, I would like a URL which invokes my app and passes it a *different* URL [14:35] aquarius, The plan was to support desktop actions, but we're not there yet. [14:35] aquarius, You probably want to register your own URL for that "aquarius://foo/bar" [14:35] tedg, that is: I have an http(s) URL that I want to pass explicitly to my app. [14:36] I can, of course, register my own URL scheme, but I shouldn't need to, because appid:// URLs exist [14:36] aquarius, Then you can sub "aquarius" for "http" internally. [14:36] can an appid:// URL *only* be used to start up my app, and not to pass it any data? [14:36] aquarius, Today, yes. It basically runs the app without an URL. We don't pass it anything in that case. [14:37] hrm. [14:37] this is not putting you on Santa's good boys list. :) [14:37] * tedg has 340 some days to recover [14:37] right FINE I'll register a custom url scheme then FINE [14:37] tedg, on a more serious note, how does a QML app know that it was started by URLDispatcher, and get the URL? [14:40] aquarius, http://developer.ubuntu.com/api/qml/sdk-14.10/Ubuntu.Components.UriHandler/ [14:40] aquarius, Make sure to put a %u in the Exec line of your desktop file as well. [14:41] tedg, are there rules about what a URL has to look like? If I register for protocol: "myapp", will URL dispatcher handle a URL which looks like myapp://12345 ? [14:41] that is: it doesn't have a meaningful "domain"? [14:41] exec line is currently Exec=qmlscene $@ main.qml [14:42] should that be Exec=qmlscene $@ main.qml %u [14:42] ? [14:42] aquarius, As long as the domain follows the rules for domain names. You'd probably be better off with three slashes. [14:42] ah. [14:42] aquarius, I think it might need to be "-- %u" for qmlscene. [14:43] so if I want to pass arbitrary data, I'm probably better off with a URL like myapp://ignore.com/whatevermydatais [14:43] Or just myapp:foobar [14:44] ah! [14:44] that's doable :) [14:44] Some examples were in this bug (now fixed): https://bugs.launchpad.net/url-dispatcher/+bug/1351222 [14:44] Launchpad bug 1351222 in url-dispatcher (Ubuntu RTM) "URL parsing doesn't comply with RFC 3986" [High,Fix released] [14:45] aquarius, If you really want your app to "phone home" you can use: tel:+441243532 ;-) [14:46] * aquarius grins [14:47] nope, that doesn't work [14:48] tedg, http://pastebin.ubuntu.com/9687943/ [14:48] my app (caxton) is registered for "protocol":"caxton" URLs (assuming I've done it right), and a caxton URL looks like caxton:(url encoded http(s) URL) [14:49] but urldispatcher says they're invalid, as per pastebvin [14:51] Hmm, let's not assume you've done it right :-) [14:51] ha! [14:51] touche [14:51] what do I need to do to test whether I've done it right? [14:52] aquarius, sqlite3 ~/.cache/url-dispatcher/urls-1.db "select * from urls where protocol = \"caxton\";" [14:53] 9|caxton| [14:54] aquarius, And I'm assuming you're using a recent build, right? [14:54] probanly not [14:54] (newer than middle of Dec) [14:54] nope [14:54] definitely not that new [14:54] there seems to be no way to upgrade my emulator, and no way to create such a build from the IDE. [14:54] aquarius, Hmm, so that bug that I linked to above needs to be fixed. [14:55] aquarius, url dispatcher 0.1+15.04.20141211-0ubuntu1 [14:55] tedg, ah, if it's a fixed bug then I'm OK... [14:55] I can work around it for now, or just upgrade :) [14:55] I prefer being backwards-compatible with this sort of thing anyway. [14:56] So the triple slash approach would have always worked. [14:56] We just didn't handle the "non slash" case [14:57] k [14:57] trying... [15:08] aaaaaand... everything works! [15:08] nice one Chipaca and tedg [15:08] “everything” [15:09] as much as can be expected :) [15:09] * tedg assumes aquarius will have no more issues, ever [15:09] that seems likely [15:09] the bugs are never in MY code ;) [15:09] aquarius: quitting computers so early? [15:09] you lot are very mean to me, I think. :) [15:09] it's not you, it's your code :) === chihchun is now known as chihchun_afk [15:16] I can't seem to find an API that lets me control the LED on the back of my phone. Is this only available to canonical apps? [15:17] the camera flash led? [15:17] Yes [15:18] there's a couple of flash apps in the store [15:19] They don't work/crash instantly. [15:19] Well... they being uTorch which is the only one I could find tbh [15:22] My stupid brain finally comprehended the word "Torch" so I searched that instead of "flash"/"flashlight" but they don't work either. The phone app does open it. [15:22] The camera app* [15:24] But back to my question; is there an API that lets me control the LED? Because I'd write one on my own and see if that works. [15:25] JoannisO, there is. [15:26] JoannisO, http://doc.qt.io/qt-5/qml-qtmultimedia-cameraflash.html [15:26] they used to work [15:26] wonder what broke [15:26] maybe permissions issue. [15:27] utorch's code is at https://launchpad.net/utorch [15:27] 2015-01-07 15:27:18,626 - CRITICAL - Error: "Client has insuficient permissions to access the service.Method:getAuthSessionObjectPath" [15:27] ondra: I've updated LP #1394204 with a link to test binaries [15:27] Launchpad bug 1394204 in network-manager (Ubuntu) "dbus daemon spinning with NM AP properties change event" [Critical,In progress] https://launchpad.net/bugs/1394204 [15:27] somebody's broken something :) [15:27] trying them here now [15:28] tedg: speaking about people breaking things, in devel-propsed right now i'm getting com.canonical.URLDispatcher.BadURL: URL 'settings:///system/system-update' is not handleable by the URL Dispatcher [15:28] ondra: did you complete a build + test since yesterday evening? [15:28] tedg: what broke and why? [15:33] lool yeah build eventually finished so I tested what I built and that worked [15:33] lool at least when I did what joc told me, I was not able to reproduce it [15:34] lool did walk in and out of wifi range about 4 times, and then checked dbus and it was all normal === dholbach_ is now known as dholbach [15:37] ondra: was is still on the phone you gave me? [15:37] joc yes [15:37] joc any other issues with that phone? [15:39] ondra: thought i saw some dbus spikes earlier [15:39] ondra: would want to test more though [15:39] joc feel free to do more tests :) [15:40] ondra: was asked to do some already by tvoss, will try again in the office tomorrow probably [15:41] joc ok [15:52] Wellark, I can't find the private connectivity-api docs, you know where they are? [16:04] JamesTait, ping :) [16:05] aquarius, happy new year! [16:05] JamesTait, heya, dude. Happy 2015 :) [16:05] Not so far, it isn't, but there's a long way to go. ;) [16:06] JamesTait, we talked (at oggcamp, I think?) about some way to get (and update) a DB of all reviews of all Ubuntu apps without hammering the backend API, right? [16:06] aquarius, we did indeed. [16:06] was our conclusion "there is no way to do that but we'll add one"? [16:07] aquarius, I can't quite remember what the conclusion was actually! [16:08] JamesTait, ok, so if you have two minutes, perhaps we can rediscuss. I can get all the reviews by walking the list of all packages and then walking the list of all reviews for every package and saving the responses. But that's pretty harsh :) [16:08] ideally I would like http://reviews.staging.ubuntu.com/click/api/1.0/reviews/?since=20150101T120000 or somethng... [16:08] aquarius, rnr is a separate service, though, which I'm not *that* familiar with, but I'm happy to discuss, with that caveat that I can't guarantee anything we conclude would actually get implemented any time soon. ;) [16:09] but I'm open to better suggestions if you have any [16:09] oh! I thought you were the rnr dude. Who is? [16:09] aquarius, I think pindonga and fgallina are the two most familiar with it (or who touched it last). [16:09] aha, fgallina, that's the name, indeed [16:10] aquarius, but currently, as you say, you have to get a list of packages and then query the rnr api for each one. [16:11] that's obviously doom [16:11] Or boom. [16:11] right. It will, at minimum, get me blocked :) [16:11] I'll file a bug on https://launchpad.net/rnr-server and start a discussion... [16:11] Chipaca: ugh, online-accounts [16:12] Heh, you found the project before me! [16:12] Wanna job? :-P [16:12] I'm fine with my job, thanks :) [16:13] push notifications for rnr? [16:13] ssh [16:13] don't give the man ideas [16:13] :) [16:13] Oops, too late! ;) [16:14] * Chipaca 's hoping it's just aquarius' usual sausage-fingers-in-pies thing [16:14] did i say that out loud? [16:14] * Chipaca might have skipped lunch [16:14] hmph [16:14] all my analogies are coming out foodish [16:15] haha [16:15] sausage fingers: https://www.youtube.com/watch?v=k2aKsoizx1w [16:17] WAT [16:18] haha [16:18] What's the channel for the ubuntu-sdk? [16:19] JoannisO: #ubuntu-app-devel i think if you want to ask questions about app development [16:19] JoannisO: there is no dedicated channel for the sdk, here or on the #ubuntu-app-devel [16:19] JoannisO, #ubuntu-app-devel might be the better one. [16:19] Okay. Thanks! [16:20] * bzoltan wonders if dobey and JamesTait have highlight on sdk word too :D [16:20] nope [16:20] bzoltan, nope, just happened to be around at the right time. :) [16:21] Cool :) that is great community service then [16:21] * dobey is just a helpful kind of guy [16:21] * Chipaca can confirm [16:25] so, online accounts in 15.04 is broken afaict. Who do I pester? [16:25] Chipaca: i don't think that's a 15.04 issue [16:25] * Chipaca is flashing rtm to check [16:25] JamesTait, https://bugs.launchpad.net/rnr-server/+bug/1408353 filed, if you have thoughts [16:25] dobey: tell me more [16:25] Launchpad bug 1408353 in Ratings and Reviews server "Some way to mirror the review database by a third party " [Undecided,New] [16:25] Chipaca: you are getting that issue trying to access account details for u1? [16:25] dobey: yes [16:26] aquarius, thank you muchly. [16:26] Chipaca: i'm not sure what is causing that to happen exactly. deleting and adding the u1 account again will "fix" it though [16:27] Chipaca: if you can reproduce it reliably right now, please talk to mardy and get some debug info for him [16:29] I might have just flashed the device [16:29] ok [16:29] dobey, Chipaca: I suspect it's because the U1 account was created back in a time when the client creating the account (in this case, the U1 plugin) was not automatically set as owner of the account [16:30] mardy: I'm reading "it's not going to happen to real users" [16:30] dobey: beside that, please don't forget about bug 1376445 [16:30] bug 1376445 in ubuntu-system-settings-online-accounts (Ubuntu) "Addition of signon-apparmor-extension causes token lookup problems" [Undecided,In progress] https://launchpad.net/bugs/1376445 [16:31] mardy: i'm not sure that's the case. but it's difficult [16:31] Chipaca: well, that thing was not fixed too long ago, maybe a month or so [16:31] mardy: yes, but even getting that fix in the image, people will still have to create a new account to actually get the "fix" [16:31] mardy: dobey: I just flashed the device to rtm, and it works there [16:32] $ /usr/lib/ubuntu-push-client/signing-helper https://push.ubuntu.com/ [16:32] OAuth oauth_consumer_key= [16:32] Chipaca: you just wiped and created a new account, right? [16:32] dobey: true, but please try to fix it soonish, so that every new user has a good ACL in their account [16:32] no [16:32] old account [16:32] flashed, not wiped [16:32] Chipaca: oh, interesting [16:32] I'll move back to devel-propsed and check [16:32] this *might* be the apparmor bug thing [16:32] that certainly wouldh't have changed the ACL on the account itself [16:33] Chipaca: IIRC in the rtm we are not using the apparmor extension in OA, so we basically allow everything [16:33] FWIW this was a devel-proposed from just before the year-end break [16:34] mardy: dobey: ah, so the "delete and recreate account" is apparmor-related? [16:34] Chipaca: i'm not entirely sure [16:34] i'm going to claim it is magic-related [16:34] with any luck it'll still happen when i'm back on devel-proposed [16:35] and we can poke it with a stick [16:35] if it does, that would be great [16:35] I'll bring the beer [16:35] in the meantime, i am going to get some ghost pepper hot wings for lunch [16:35] :) [16:43] $ /usr/lib/ubuntu-push-client/signing-helper https://push.ubuntu.com/ [16:43] 2015-01-07 16:43:23,208 - CRITICAL - Error: "Client has insuficient permissions to access the service.Method:getAuthSessionObjectPath" [16:43] mardy: so i should try recreating the account? [16:44] mardy: how is this going to work for people upgrading from 14.09? [16:47] Chipaca: can you please enable the logging in /etc/signond.conf, and try again? [16:48] Chipaca: I just want to make sure it's the same issue I'm aware of [16:48] mardy: sure. where will the logs be? [16:54] mardy: ? [17:00] Chipaca: ops,sorry: /var/log/syslog [17:01] mardy: https://pastebin.canonical.com/122919/ [17:03] Chipaca: yep, same issue; feel free to delete and recreate the account [17:03] mardy: what's the upgrade story? [17:04] mardy: ie people getting rtm, then upgrading to something else [17:10] Elleo: heya, saw the updates for cutespotify, awesome stuff! are you planning on enabling ur dispatching even if the app is closed, or is that a limitation of urldispatcher? [17:12] mardy: and if I create it on devel, will it work on rtm? [17:13] Chipaca: yes [17:13] Chipaca: as for the upgrade story, I'm not sure; we might be able to ship a session-migration script to update the ACL [17:14] mardy: dobey: can confirm recreating the account in devel made the auth'er (and so push) work again === chihchun_afk is now known as chihchun [17:28] cwayne1: yeah, just need to figure out why it doesn't work correctly [17:29] Elleo: awesome, so what form should the url be in? [17:29] ill update my scope and see if i can get it working :) [17:29] cwayne1: spotify:track:blah [17:30] where blah is the spotify id? [17:30] yep [17:31] awesome, thanks! ill try and get some time today and I'll let you know how it goes :) [17:31] cool :) [17:37] Chipaca: cool === alan_g is now known as alan_g|EOD [18:42] Elleo: here? [18:56] good afternoon [18:58] I was just looking to get a nexus 10 and someone said support was dropped in jan 2014, but I'm seeing conflicting information on the site. Can someone confirm if I go out and pick up a nexus 10 that I can install touch on it, get java 7 installed, and run java apps? [19:10] alrightythen [19:25] what is the package name for the file manager app? [19:26] Nirgali42: support for the 2012 nexus 7 was dropped, not the nexus 10 [19:27] Nirgali42: java is not part of the system image though, so making the system writable to install java and run java apps in the typical way on ubuntu, will break system image upgrades [19:27] also, i'm not sure what the support is like for running java on mir [19:51] Hi during the two weeks of break i had a very weird bug on the stable channel on a nexus 4. Not sure if this happened to anyone but there was some ripple effect when scrolling down at the bottom of the screen where the keyboard normally appears. I did not find a way to reproduce it but that's a watchout. It happened to me twice [19:54] taiebot, like this bug 1383745 ? [19:54] bug 1383745 in Mir "[mako] screen corruption/tearing after using the device for medium durations" [Medium,New] https://launchpad.net/bugs/1383745 [19:59] ahayzen: no not like that the bottom of the screen was corrupted on any scroll. It looked like distortion or ripple. Weird stuff it happens where the keyboard usually appears [20:00] taiebot, i've seen it happen at the bottom/top/middle of the screen [20:00] taiebot, just that video was when it was in the middle [20:01] ahayzen: i suppose it is linked as my phone was up for almost a week. [20:13] I have not seen this rumour here so posting it http://www.ibtimes.co.uk/meizu-m1-note-go-open-source-2015-smartphone-expected-feature-ubuntu-touch-be-launched-ces-1481695 [20:59] how do I list available channels for ubuntu-device-flash? [20:59] "ubuntu-device-flash --list-channels", as https://developer.ubuntu.com/en/start/ubuntu-for-devices/image-channels/ says, doesn't work: DEPRECATED: Implicit 'touch' subcommand assumed [20:59] unknown flag `list-channels' [21:00] aquarius, ubuntu-device-flash --list-channels [21:00] I don't know whether I have a newer version of u-d-f or an older version [21:00] ? weird [21:00] indeed, hence asking for help :) [21:00] ubuntu-device-flash --list-channels works for me [21:00] on 14.10 [21:01] apt-cache policy ubuntu-device-flash says Installed: 0.4+15.04.20141125-0ubuntu1 [21:01] 0.4+14.10.20141002-0ubuntu1 0 [21:01] you are on 15.04? [21:01] huh [21:01] Nope. I'm on 14.04 [21:01] odd [21:02] but I have PPAs enabled to do development with. [21:02] oh I see [21:02] mhall119, do you know abot this stuff? [21:02] popey, might know too [21:02] aquarius: buntu-device-flash query --list-channels --device=krillin [21:02] er [21:02] ubuntu-device-flash query --list-channels --device=krillin [21:02] what is the ppa? [21:03] Installed: 0.4+15.04.20141125-0ubuntu1 [21:03] is what I have [21:03] and that works, will had the same issue earlier [21:03] interesting. https://developer.ubuntu.com/en/start/ubuntu-for-devices/image-channels/ may need updating then [21:03] a nexus 4 is mako, right? not occam? [21:03] that works on 14.10 with no ppas [21:03] occam and mako [21:04] both [21:04] aquarius, https://developer.ubuntu.com/en/start/ubuntu-for-devices/devices/ [21:04] ahoneybun, ah, I meant in the context of the --device switch to u-d-f as per popey's correct instructions :) [21:05] what is krillin? [21:05] bq device, I think [21:05] I see we know your secrets popey [21:05] next question: what's the most up-to-date channel? :) [21:06] ubuntu-touch/vivid? [21:06] aquarius, devel-proposed [21:06] so vivid-proposed for this cycle [21:06] is devel-proposed stable enough to use? [21:06] or is it basically trunk? [21:06] devel is pretty decent RTM is for stable [21:06] I don't know if the ci train runs for devel-proposed [21:07] ok, wicked [21:07] i use ubuntu-touch/ubuntu-rtm/14.09-proposed [21:07] that makes sense, actually [21:07] * ahoneybun knows nothing about ci train [21:07] popey, that's not available for mako :( [21:08] well, i dont think we have built any images for a while [21:08] so devel-proposed = devel right now i think [21:08] ubuntu-touch/devel-proposed (alias to ubuntu-touch/vivid-proposed) [21:08] ah, ok [21:08] so I may as well just go with devel-proposed then, cool [21:08] I'd ask mhall119, although he usually doesn't use proposed [21:08] yeah [21:08] or devel [21:08] yea popey aquarius devel is on Image 1 right now [21:08] I have my nexus 4 back, finally [21:09] so am putting ubuntu on it again :) [21:09] aquarius, last image for devel was built on 12 01 14 [21:10] popey, what's the install command now? [21:10] alan@deep-thought ~> ubuntu-device-flash touch --channel=ubuntu-touch/ubuntu-rtm/14.09-proposed [21:10] i did that earlier [21:10] "ubuntu-device-flash touch --channel=devel-proposed"? [21:10] ahm, cool [21:11] I dont need --bootstrap any more? [21:11] only if you're on android [21:11] ah I am on android. [21:11] you do then [21:11] will use it :) [21:11] put phone in recovery [21:11] then do it [21:11] i think [21:11] bootloader :) [21:12] winner. [21:12] now downloading and then will install, hooray [21:12] cheers popey [21:12] np [21:13] am installing devel-proposed, for the hell of it :) [21:15] \o/ [21:15] Live a little [21:15] YOLO [21:15] aquarius: btw sweedish meatballs from gousto was delish [21:16] never had them! [21:16] all the meals I had from gousto for the first few weeks are on http://fifteenminutemealer.tumblr.com/ [21:17] after that there was a week or two when I was uninspired and so didn't write them up and then cancelled [21:17] I've had a bunch of really good ones [21:17] popey: I'm actually still on RTM [21:17] ah [21:19] Jamie Oliver swedish meatballs: http://fifteenminutemealer.tumblr.com/post/41362791979/swedish-meatballs . Some other person published the recipe http://www.anexpatcooks.com/recipe/jamie-olivers-15-minute-swedish [21:20] no, these were in a creamy sauce with lots of dill [21:20] ah, gotcha [21:20] much nicer [21:21] with mash and green beans [21:21] would eat again. [21:23] ooh nice spinny ubuntu install/boot logo === salem_ is now known as _salem [21:28] and it is installed! nice. [21:36] ooh, dash crashed and then whole phone restarted. [21:39] back to it pretty quick though :) === philhug is now known as hug === hug is now known as philhug [22:51] what is the command to manually install a click package on a device? [22:51] pkcon install-local --allow-untrusted foo.click [22:51] ahoneybun, adb shell pkcon install-local --allow-untrusted /tmp/my.click [22:51] BOOM! Beat ya! [22:52] popey, damn u :P [22:52] :D [22:52] lol [22:52] * popey dances [22:53] wait [22:53] how do you do that popey if your in the devices file system? [22:53] ahoneybun, you run it on the device? [22:53] wait [22:54] ahoneybun, you have pushed the click across first right? ... adb push /my/local/click /device/location ? [22:54] that is to install on the phone/tablet no? [22:54] no [22:54] ahoneybun, yeah [22:54] oh [22:55] so:- [22:55] adb push foo.click /tmp [22:55] phablet-shell [22:55] pkcon install-local --allow-untrusted /tmp/foo.click [22:56] job done [22:56] :) [22:56] * ahoneybun is confused [22:56] you want to install a click on a phone? [22:56] yea the SDK is shoting errors [22:56] shooting [22:56] ok, find the click package, push to phone, install on phone [22:56] as above [22:56] but I need to know where the device i [22:57] as in on the computer [22:57] /mnt/ and so on [22:57] no [22:57] is it plugged in via usb? [22:57] yea [22:57] do you know where the click is on your pc? [22:57] yea [22:57] ok, so open a terminal... [22:58] cd ~/wherever [22:58] adb push foo.click /tmp [22:58] that will push the click down the usb cable to the phone [22:58] to /tmp specifically [22:58] ........ [22:59] what is not clear? [22:59] where to cd to [22:59] 22:57:47 < popey> do you know where the click is on your pc? [22:59] there [22:59] I don't know where the device is mounted [22:59] no [22:59] stop thinking about the device [22:59] you dont need to worry about that [23:00] go to the directory where the click is on your pc [23:00] adb push /my/local/click /device/location ??? [23:00] no [23:00] adb push /my/local/click /tmp [23:00] oh god i've confused him.... [23:01] adb push will push files to the device [23:01] the first parameter is what you want to push [23:01] in this case that's the click package [23:01] the next parameter is the place on the device you want to push it to [23:01] in this case /tmp (on the device) [23:01] it will send the click package (or whatever file you specify) down the usb cable and it will end up in /tmp on the phone [23:01] make sense? [23:02] you do not need to worry about where on the filesystem the phone is mounted, because it doesn't work like that [23:02] the adb program on your desktop talks to the adb program on the phone [23:02] over usb [23:02] I got it [23:02] but [23:02] now my app installed from the store is not launching [23:03] ahoneybun, refresh the apps scope by pulling down from the top [23:03] hang on [23:03] one thing at a time [23:03] did you push to the device and install it? [23:03] uninstalled the store version and now I have the one I pushed local [23:03] and it does not launch [23:04] goes to splash screen and then back to the dash [23:04] did you do as ahayzen says and pull down to refresh the app scope? [23:04] yes I see the icon [23:04] did you pull down though? [23:04] (you need to) [23:04] yes yes [23:04] rebooting [23:04] bah [23:05] and the name change on the click package did not work as well [23:05] trying to change it from UbuntuBeginner to uBeginner [23:05] oh wait [23:05] you need to change it in the sdk before you build the click [23:05] yea I know [23:05] dont just rename the click package [23:05] ok [23:08] popey: you build the filemanager click packages? [23:08] I try not to [23:08] but yes [23:08] heh [23:08] we usually build them in jenkins [23:08] ok popey fixed the name and the splash screen works but still not launching all the way [23:08] i'm just wondering how BZR_REVNO gets set in the cmake [23:09] i don't see it being set with the actual revno in CMakeListst.txt [23:09] ahoneybun: check logs in ~/.cache/upstart [23:09] it's in manifest.json.in isnt it? [23:09] popey: it's not defined there, but it's used there [23:10] yeah, it gets set to "latest" if you build it locally [23:10] (one reason why I build in jenkins) [23:10] oh, is it some magic thing that gets passed to cmake in jenkins? [23:10] possibly [23:10] (do you have a link to a jenkins build log for it?) [23:10] sure [23:11] popey, you can't just cat them? [23:11] ahoneybun: you can [23:11] I see the log but when I cat it says no such file [23:12] dobey: http://s-jenkins.ubuntu-ci:8080/view/click/job/filemanager-app-click/lastSuccessfulBuild/console [23:12] ahoneybun: typo? [23:12] phablet@ubuntu-phablet:~$ cat application-click-com.ubuntu.developer.aaronhoneycutt.ubuntubeginner_UbuntuBeginner_1.8.log [23:12] cat: application-click-com.ubuntu.developer.aaronhoneycutt.ubuntubeginner_UbuntuBeginner_1.8.log: No such file or directory [23:12] you're not in the right directory [23:12] I can't use tab to auto complete for some reason [23:12] I have to be in the dir? [23:12] cd ~/.cache/upstart [23:12] yes [23:12] oh that isn't on the public jenkins yet (or at all) [23:13] correct [23:13] $ bzr revision-info -d /var/lib/jenkins/slaves/cyclops-node08/workspace/filemanager-app-click [23:13] ++ bzr revno out/trunk_dir [23:13] + bzr_revno=363 [23:13] that kinda thing [23:13] popey, http://pastebin.ubuntu.com/9690171/ [23:13] omg [23:13] ahoneybun, something wrong with your QML [23:13] ahoneybun: error in your code [23:13] PICNIC [23:14] why build it at all [23:14] it doesn't check the qml on build [23:14] and then cmake -DBZR_REVNO=$$bzr_revno I presume? [23:14] + cmake ../trunk_dir -DINSTALL_TESTS=off -DCLICK_MODE=on -DBZR_REVNO=363 [23:14] ok [23:14] thanks popey [23:14] no problem [23:14] http://paste.ubuntu.com/9690174/ [23:14] probably should have just done that ☻ [23:15] :) [23:16] popey: hey, venturing into app space, pulled an existing project source...using qtcreator/ubuntusdk, it built ok, but not running [23:16] popey, all good, working new splash screen, fixed the name :) [23:17] popey: what should the executable path be ? [23:17] ahoneybun: hurrah [23:17] kgunn: que? [23:17] thanks popey! [23:17] np [23:17] kgunn: which project OOI? [23:17] popey: ubible [23:18] in lp? [23:18] no...it's from github [23:18] kgunn: stupid question, can you not click the icon? [23:18] ok [23:19] popey: icon as in? the little green triangle meaning run ?...i can but it says [23:19] Starting /home/kg/workspace/build-uBible-Desktop-Default/app/ubible.desktop... [23:19] Failed to start program. Path or permissions wrong? [23:19] /home/kg/workspace/build-uBible-Desktop-Default/app/ubible.desktop exited with code -1 [23:19] popey: so wondering...is the desktop file what should be in the exe path ? [23:19] you can't execute a .desktop file [23:19] uh [23:19] popey, is the source available for the UI Showcase? [23:19] that is whats there atm [23:20] stupid me [23:20] https://github.com/uBible/uBible ? [23:20] popey: yep [23:20] * popey clones [23:20] dobey: so it should be .... ? [23:20] kgunn: you want to run this on desktop or device? [23:20] popey: i should admit, i did a vivid update sort of in between first attempts and now [23:20] heh [23:20] Ruh-Roh [23:20] popey: was just trying to run on desktop [23:21] popey: ... :) yeah, it couldn't find some header, and i was like "doh, need to upgrade" [23:21] is it not just the "run" part of the cmake? https://github.com/uBible/uBible/blob/master/CMakeLists.txt#L81 [23:21] not sure what you mean by exe path exactly [23:21] pass, sorry. [23:22] the Exec line in the .desktop file? [23:23] dobey: under project->desktop->run tab..there's a field under "run" called "executable"....do i just leave it blank [23:23] popey: but it should be possible, assumiing i didn't screw something to simply build/run on desktop [23:23] assuming it works [23:23] right [23:23] kk [23:26] ahayzen: just now noticed your post, thanks [23:27] kgunn, no problem, i assume if you run that it might work [23:27] oh i don't know where that tab is. [23:27] cool, just trying to learn [23:32] popey, if I want to have each tab have it's own qml file how to I load it into the tab [23:32] ? [23:32] ...progress, still failed...but more sensible [23:33] popey, http://pastebin.ubuntu.com/9690234/ === marcoceppi_ is now known as marcoceppi [23:42] Do any other Nexus 5 users have problems with torch apps? [23:44] i haven't tried any [23:46] ok, just tested utorch on krillin and it works [23:46] just tested torch on n5 and it doesn't work [23:46] n5 is special though [23:47] I'm curious because the camera app does manage to use the LED when recording a video. [23:48] i'll try utorch instead (which does work on my n4) [23:48] and it doesn't work on n5 [23:48] not sure why [23:49] iBelieve: ! [23:49] probably related to why taking pictures with flash on results in way overexposed pictures [23:49] kgunn: was playing with ubible just now... kgunn iBelieve is the author ☻ [23:49] (also, happy new year) [23:49] Hey popey [23:49] you as well [23:49] Yes, I’m one of the two main others of uBible [23:50] ** authors [23:50] there we go, opportune moment to arrive [23:50] Aren't you the guy from quartzOS/quantumOS? [23:50] JoannisO: Yes I am :) [23:52] i thought moses and peter were the two main authors :P [23:53] gah, click [23:53] the manifest.json is too in the .ubuntu-sdk-deploy directory; stop lying and just build the thingf [23:53] dobey: :) [23:53] lulz [23:56] iBelieve: hey so, i don't really know my way round qtcreator and apps per se...just picked something i was interested in to learn a little [23:56] so i just (re)cloned my fork and followed the readme [23:57] but...it's whining about building for "desktop" [23:57] if i target it to ubuntu-vivide-i386 it seems happy [23:57] kgunn: I haven’t worked on uBible in a while, so I have no idea if it works with the latest Ubuntu SDK or not. [23:58] ah-ha...that was my next ques :) [23:58] ok...i'll keep pokin' [23:58] makes me learn [23:58] kgunn: What about running cmake directly from the command line? [23:58] one sec