=== chriadam|away is now known as chriadam === frecel_ is now known as frecel === ecloud is now known as ecloud_wfh === chihchun_afk is now known as chihchun === aaron__ is now known as ahoneybun [06:57] good morning [07:08] dholbach: Good afternoon [07:09] hi duflu [07:18] memory_used, memory_allocated, cpu_used, cpu_allocated [07:18] sorrry [07:19] quite some statement though... === willcooke is now known as francooke === francooke is now known as JupiterWhistles === JamesTait is now known as Guest73857 === JupiterWhistles is now known as willcooke === JamesTai1 is now known as JamesTait [08:44] pstolowski: does app installing from store use DBus at some point, somehow? === marcusto_ is now known as marcustomlinson [08:45] pstolowski: we've a silo affecting QDBus (only) and a suspicion that app installation has more problems than before with it [08:48] or alecu ^ [08:48] Mirv, dbus is used to monitor installation progress [08:49] Mirv, (for the progress bar in the preview) [08:49] pstolowski: ok. if there'd be a dbus error during installation, would there be an error log somewhere? [08:51] pstolowski: this is about silo 018 that has a fix for the blocker bug of unity8 hanging on boot sometimes, which started appearing when libusermetrics started using more DBus in February, and the only solution is to fix the QDBus with a huge patchset from upstream [08:52] uh [08:55] Mirv, apps store scope just passes dbus object path to unity8 dash and doesn't interact with dbus directly (at least when it comes to installation); probably unity8/dash logs are first to look at [08:55] pstolowski: ok, thanks [08:57] tvoss, Q: we're working on persisting suspended app screenshots so that we don't keep them all in memory and can unload them as needed... having done that, if you reboot when you've had an app open and start it again, it will show the screenshot, assuming the app will restore [08:58] Saviq, unload them as in unload the screenshot or unload the app? [08:59] tvoss, app's not there by then (it's OOM'ed) [08:59] Saviq, ack [08:59] tvoss, i.e. we only use the screenshot if the app's OOM'ed, or starting [08:59] that sounds good [08:59] tvoss, [...] which feels correct in how our lifecycle is meant to work, but almost no apps currently do restore [08:59] Saviq, aha ... so we have an issue with a visual glitch switching from stored screenshot to first screen provided by app? [09:00] tvoss, well, yeah, and some weirdness that you start the app but get the screenshot straight away [09:00] tvoss, it'll be reduced if/when we persist the right edge stack [09:00] Saviq, mind elaborating on the first statement? [09:01] tvoss, today, if you start the app after boot, we show the splash screen [09:01] tvoss, and since apps don't restore, this looks consistent because on reboot the apps just start from scratch [09:01] so splash screen → "fresh" app [09:01] yup [09:02] obviously when they're OOM'ed, it looks wrong too, because it's then screenshot → "fresh" app [09:02] but now we'd extend that ↑ behaviour to reboots, too [09:02] which, again, feels "correct", because we never said a reboot resets apps (or did we?) [09:03] but from a user perspective might feel weird [09:04] Saviq: it's what Android 5.0 does, at least. [09:04] It does feel slightly weird, but you get used to it. :) [09:05] nhaines, good enough for me :) [09:05] at least now we'll nudge app devs to start restoring state [09:06] Saviq, yup @restoring state. do you know the state of the SDK support facilities in that case? [09:06] Saviq, probably a cross fade from screenshot to first app frame might be helpful, too? [09:06] tvoss, there is https://developer.ubuntu.com/api/qml/sdk-14.10/Ubuntu.Components.StateSaver/ [09:06] bzoltan_, ^ [09:07] bzoltan_, do we have any idea how the adoption rate by developers is? also: iiuc, this is opt in? [09:08] tvoss, yeah sure, we can also apply some effect on the screenshot (desaturation was one idea) while it's loading [09:08] tvoss, an activity indicator in the middle of the screenshot likely makes sense, too [09:08] Saviq, yup, I think we should stick to "correct", minimizing visual disturbance when going from screenshot -> first frame [09:09] tvoss, [09:09] ack [09:09] tsdgeos, confirmed ↑ [09:09] Saviq, is there an easy way to get a simple video of "no effects", "with crossfade", "with desaturation"? [09:09] I like the idea of desaturating the screenshot [09:10] I think you should do a pallete cycle like those old DOS demos. Ambient demoscene loading music optional. [09:10] Saviq, just to make sure stakeholders can comment on the MP without understanding the code? [09:10] /we should stop calling it screenshot, it's an app-shot ;P [09:10] tvoss, sure [09:11] my apps would benefit from being taken out and shot [09:12] Saviq: beyond the StateSaver, is there a way for apps to save their state if shut down cleanly? A hook or signal which would allow a write to the config file? [09:12] true @appshot [09:12] mcphail, you can do whatever you need when your app becomes inactive [09:12] mcphail, you *should* even [09:13] Saviq: so if a user swipes away the app, how do I save state? [09:14] mcphail, right, that's a different pair of pants, and we'll likely resume the app in that case and let you know to shut down cleanly [09:14] tvoss, ↑? [09:15] mcphail, no need to, you will always receive a signal prior to suspension with a grace period before you are being shot [09:15] tvoss, no, but when the user swipes the app away [09:15] Saviq, no need to [09:15] tvoss, we need to let it know to actually clear state [09:15] Saviq, nope, not really [09:15] Saviq, that's unfocused, but nothing more [09:16] tvoss, no, swiped away in the spread [09:16] tvoss, as in closed [09:16] tvoss, when you launch the app again after that, you don't want it to restore [09:16] Saviq, ah okay, so actively closed: I *think* we send the same signal [09:16] oh okay, got it now :) sorry, need coffee [09:17] so yeah, about to be closed might make sense here [09:17] tvoss, not sure what ubuntu-app-launch does now, but it'd need to resume and SIGTERM, likely [09:17] Saviq, so yeah, it would need to resume if suspended, then deliver notification, then sigterm [09:17] hmmm, or could we leverage sigterm and a subsequent sigkill if app takes too long ... [09:17] why notification, sigterm not enough? [09:18] tvoss, yup, that's what upstart does already [09:18] as long as we expose sigterm in an easily consumable way: fine as well [09:18] tvoss, you generally get 5s after sigterm [09:18] yup [09:18] remembering now [09:18] so we should check if sigterm is translated/available in QML [09:18] bzoltan_, ^ [09:19] tvoss, http://doc.qt.io/qt-5/qml-qtquick-window-window.html#closing-signal [09:19] +1 - signal handling from qml would be great [09:19] Saviq, I would be surprised if sigterm is mapped tbh [09:20] tvoss, it is [09:20] tvoss, if you Ctrl+C qmlscene, the window just gets closed [09:20] Saviq, okay, that's probably fine then [09:20] tvoss, /me just not sure if MainView is a Window, it likely should be [09:21] it's not atm, but you can probably wrap a MainView in a Window to get the same [09:21] i dont think MainView is an actual window, only a fraction of it ... i.e. you cant fullscreen it properly [09:21] Saviq, one other bit is: this works in single-surface scenarios. the more general approach would be to have the signal on the app instance [09:22] search box in header (Messaging, Phone, for instance) does not pop the keyboard in vivid-proposed. is this a known bug? [09:22] open Messaging -> hit search -> search box shows up focused, no keyboard [09:23] tvoss, yeah true, just confirmed closing isn't emitted on Ctrl+C [09:42] kemmko, would you mind to take care of bug 1445106 ... i know we had a similar one before but cant find it [09:42] bug 1445106 in indicator-messages (Ubuntu) "Notifications turn the screen on" [Undecided,Confirmed] https://launchpad.net/bugs/1445106 [09:47] ogra_: having a look now [09:47] thanks ! [09:56] ogra_: assigned the corresponding designer but pasted a link to the new notifications spec, the desired behaviour should be defined there [09:56] kemmko, awesome, thanks :) [09:58] ogra_: no problem at all :) [10:02] good morning! [10:02] how do I update apps that are updated in the store? [10:03] or how do I get the updated version rather [10:03] AlanBell, they show in the updates in system-settings [10:04] (unlkike system updates you dont get a notification for them, so you need to manually check there) [10:04] I see [10:04] and I wasn't looking there because I made it writeable [10:05] writable rootfs doesnt change the upgrades :) [10:06] (system-image upgrades will revert all your changes though) [10:06] indeed, it just changes my probablility of looking in the right place [10:06] heh [10:06] * AlanBell installs 25 updates [10:22] Is it possible to have alternative keyboards on ubuntu-touch like with android? Or at least configure more meaningful long-press events? [10:24] richi__, not yet, but we certainly have our eye on that feature [10:25] tvoss: ack, i look after it [10:29] beuno: Above the keyboard are special key combinations that are valuable for a lot of use cases. But Ctrl-B for tmux is missing. [10:29] beuno: That's in the terminal app. [10:40] richi__, you can define that part of the terminal app via json files yourself [10:41] richi__, https://swordfishslabs.wordpress.com/2015/02/27/json-profiles-in-ubuntu-terminal-app/ === MacSlow is now known as MacSlow|lunch [11:30] nhaines, FYI bug #1447566 [11:30] bug 1447566 in ubuntu-ui-toolkit (Ubuntu) "Need to expose API to notify about user closing the app" [Undecided,New] https://launchpad.net/bugs/1447566 [11:37] does anyone know if someone is working on https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1436979 ? [11:37] Ubuntu bug 1436979 in messaging-app (Ubuntu) "BQ-Ubuntuphone: can not copy Text from SMS" [Undecided,Confirmed] [11:37] i think we have general copy/paste issues which are on the roadmap to be fixed, yes [11:38] yeah, not specific to apps at all ... [11:38] the toolkit needs to fix tht [11:39] popey: good. It's very annoying that "Telegram" is a better app than the basic SMS messaging app in that regard [11:39] (in Telegram you can copy/forward) [11:39] just convert all your friends to telegram then ... bug fixed ;) [11:39] :) [11:40] I'm a C++/Qt dev and I started looking into fixing some bugs, I have to get used to QML but it looks fairly similar to js [11:40] How easy it is to test stuffs? Just clone some bazaar branch, make some changes & run it in the SDK simulator? [11:41] Silex: yeah, the emulator isn't in a great state IMO [11:41] better off using a device [11:41] i even edit and test on the phone directly ... just in the /opt/click.ubunt.com/ dir of the app [11:42] QMl is simple enough for doing that [11:42] popey: I own an Aquaris 4.5 BQ [11:42] You can copy whole messages from the messaging app [11:42] jgdx: really? [11:42] * Silex tries [11:42] Silex, drag message to left [11:43] holy cow [11:43] not sure it's in r21 though [11:43] cool! [11:43] never noticed there was options there [11:43] I noticed left drag in other apps but never right drag [11:44] ogra_: this is great. Thanks for the URL. I'll do that. [11:44] popey: alright, I'll try to make a patch for https://bugs.launchpad.net/ubuntu-clock-app/+bug/1442518 [11:44] Ubuntu bug 1442518 in Ubuntu Clock App "Enabling alarm after midnight schedules it for the next day" [Undecided,Confirmed] [11:45] popey: this sounds easy to test & fix, so basically with my connected phone I can cross-compile & replace the alarm app that runs on my phone? [11:45] Silex: hi, I just noticed the bug this morning [11:45] Silex: let me know if you need help with building and testing it. [11:45] nik90: yeah it's kinda annoying. As a workaround, quickly edit the alarm and save it [11:46] nik90: I'm starting to get my hands into ubuntu touch dev, so I need to understand how the basic workflow goes [11:46] Silex: I was going through the code logic that does the rescheduling, but am yet to find a solution. [11:47] nik90: yeah as posted in the comment, the code *looks* correct, I think the bug is deeper in the alarmModel [11:48] Silex: the alarm model is provided to the clock app by the Ubuntu SDK..clock app just add/removes alarms from the model. [11:49] nik90: good to know [11:51] hi guys [11:51] i ve got 2 update, telegramm and my photo but they didn t downloading [11:52] i m connected on wifi [11:52] Se7: I had these this morning, upgraded fine. Try rebooting your phone? [11:53] nik90: any idea which one of these to look at? https://code.launchpad.net/~ubuntu-sdk-team [11:54] Silex: https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/staging [11:54] already had a reboot i will try again [11:54] nik90: thanks, I looked in the one without "staging" [11:55] Silex: usually fixes and new features land in staging before being copied over to trunk [11:55] Silex: sdk devs expect development to happen in staging [11:55] nik90: alright. I'll grep my way into finding the alarm model :) [11:57] Silex: https://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/staging/files/head:/modules/Ubuntu/Components/plugin/ [11:57] Silex: if you have any questions regarding the alarm model, it is best to talk to zsombi on #ubuntu-app-devel [11:57] Silex: he is the sdk dev working on it [11:59] still not downloading :( [12:02] mardy: ralsina you joining us in #ubuntu-touch-meeting ? [12:03] popey: one sec [12:11] nik90: thanks for all the infrmations === chriadam is now known as chriadam|away [12:15] 4 weeks of using UT and I forgot how to switch apps in android... [12:15] yeah, the missing right swipe is annoying [12:16] * ogra_ remembers that from 1y ago when he still touched android phones [12:16] perhaps I should file a bug [12:23] ogra_, switching on ios–what a nightmare [12:23] haha [12:24] mardy, yo, is there any doc for creating a account-plugin for a non-oauth based provider? [12:24] i own an ios6 ipad and I spend 90% of the time pressing 'the one button' [12:25] cwayne: not really, but you can look at the owncloud one: http://bazaar.launchpad.net/~danielholm/owncloud-app/trunk/files/head:/plugin/qml/ === MacSlow|lunch is now known as MacSlow [12:27] mardy, interesting, thanks. and owncloud is *just* user/pass? [12:27] nik90: I think I maybe found it [12:27] https://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/staging/view/head:/modules/Ubuntu/Components/plugin/ucalarm.cpp#L133 [12:27] in line 166, if alarmDate compares *only* the date and not the time, the our bug will happen [12:27] if it compares the time too, then the bug is somewhere else [12:28] s/the our/then our/ [12:28] cwayne: it's hostname, user and pass [12:30] ah no, it also compares the time === _salem is now known as salem_ [12:41] Silex, nik90: One thing about alarms, when I set one at night (usually around 23-01), I'm always a bit suprised that it suggests setting the alarm 30 minutes ahead of time. [12:42] I think ios got that right, now + 8 hours or something [12:42] jgdx: clock app usually rounds up the time to the closest multiple of 5...so if you press add alarm at 23:01 ... it should show 23:05 and you can decide to keep that or change it. [12:43] jgdx: does it show you 23:30 instead? [12:43] Wellark, the icon in the indicator is an alarm clock, used for waking people up :) [12:43] nik90, ^ [12:43] who sleeps for 5 minutes? [12:44] jgdx: me - this morning when I missed the snooze button :) [12:44] jgdx: well not like that, for instance now its 14:45 here..and when I open the new alarm page, it will show 14:45.. you can then change that to whatever time you want..its basically rounding of is what I meant to say [12:45] jgdx: which is why I am curious to know why it suggested setting the alarm to 30 minutes ahead of time [12:45] nik90, I meant 5, I just guessed [12:46] jgdx: so what exactly do you want alarms to show? [12:46] nik90, now + 8 hours [12:46] jgdx: and what If I want to set an alarm for the next hour? [12:46] if I want to boil eggs, or do something in one hour I use a timer [12:47] jgdx: people take power naps which last an hour or two. ... in which case a one-time alarm can be used [12:47] jgdx: true, but clock app doesnt have a timer [12:47] it will [12:47] in fact there is no timer for ubuntu touch yet [12:48] that's a good point though, I thought there was a timer [12:48] nik90, is that tracked? [12:49] yeah it is, let me try to find a bug [12:49] nik90, bug 1427566 [12:49] bug 1427566 in Ubuntu UX "[Clock] Add timers functionality" [Wishlist,Triaged] https://launchpad.net/bugs/1427566 [12:49] there you go :) [12:50] nik90, good feedback from you in that bug [12:51] jgdx: If you think that the new alarm page should set the default time to be "now + 8hrs", please create a bug report with a clear explanation as to why it should be so and I can take it up with the design team. [12:51] jgdx: Android doesn't do it..so may be there is a good reasoning to just use the current time [12:52] nik90, that wish implies the presence of a timer, though [12:52] nik90: jgdx: I don't like the "current time + 8 hours" idea [12:53] which OS doest this in that was? [12:53] *eay [12:53] *way [12:53] robin-hero, I thought ios did this, but I don't have one in front of me [12:53] robin-hero: well it is just an idea that we are discussing..if it is a valid use-case then I don't see why we can't use it [12:55] nik90: Of course, but this is very weird for me :) I use the alarm for many other things, not just for wakeup :) [12:56] robin-hero: fair enough [12:59] could be ios merely suggested the last alarm time, or alarm interval === marcust__ is now known as marcustomlinson_ [12:59] which could make more sense for robin-hero and myself [13:00] s/last/most recently used === marcustomlinson_ is now known as marcustomlinson [13:02] Mirv, pstolowski: hi, I'm catching up with the backlog regarding silo-18, dbus and installations [13:02] Mirv: did you guys found the issue? should I take a look also? [13:03] alecu: pstolowski: the problem is that with that silo U1 account gets removed upon reboot and/or clicking Install button, although if the account is readded installing apps works for the duration of that boot. [13:06] Mirv: weird. The u1 account should only be removed if the credentials are no longer valid; I find it very strange that it would be removed on installation. [13:07] nik90: what's your opinion on screenshots for the next podbird release, I'm thinking of maybe making them with the new header in vivid as it looks nicer (the counter argument being that it won't match exactly what the user will see until the vivid upgrade), what're your thoughts? [13:07] Elleo: it does look nicer but it will be inconsistent though..how about we update the scrreenshots when OTA-4 based on vivid lands instead? [13:08] nik90: could do [13:08] Elleo: the issue is that in the dark theme, the app header is barely distinct from the app content and is a tiny bit confusing [13:09] the header divider needs to be a bit more visible in the dark theme [13:09] alecu: so the silo changes DBus behavior, and it appears the account probably gets removed when a DBus request fails in some way [13:10] nik90: yeah, I guess; I'm not espeically fussed about it being a bit faint, as users are familiar with the idea of the header and there's enough cues there to show that it is a header [13:10] Elleo: btw are you creating the click at the moment? We got 100% translations for russian this morning, you will need to import the translations and merge them to trunk manually before uploading click to store. [13:10] nik90: yeah, I'm going to do a manual import [13:10] nik90: won't be doing the release until after work though [13:10] ok [13:11] Elleo: regarding the screenshots, its your call. Its just a smart part of the app screenshot which does make it look really modern [13:11] alecu: maybe it could be more fault tolerant, but of course it's the silo's fault most likely unless the accound handling made wrong assumptions on previous Qt behavior [13:12] Mirv: yes: " it appears the account probably gets removed when a DBus request fails in some way" sounds very likely. [13:14] nik90: yeah, and I like the fact that it means the "Add New Podcast" page gets its full title, which gets truncated with the old header [13:14] nik90: but I'm kind of on the fence [13:25] Mirv: so with silo18 the ubuntuone account is randomly lost on reboots but not without silo18? [13:26] Mirv: I'm talking to marcustomlinson, that worked on the integration of the scope frameworks with online accounts, and he tells me that the scopes are using a library provided by online accounts. And that it's likely that this library is using dbus to call online accounts itself [13:27] tsdgeos: yes [13:27] Mirv: weird [13:27] :D [13:27] mardy: do you know if the online accounts library uses qtdbus to talk to online accounts proper? [13:28] alecu: thanks, that's another useful piece to know in this puzzle! [13:28] Mirv: is the account lost on reboots or on installation? [13:29] alecu: libsignon-qt (and the QML bindings do), but the account part it an in-process SQLite DB [13:29] mardy, alecu: it may be an issue in QDBus used from OnlineAccountsClient::Setup() that we use in the shell: http://bazaar.launchpad.net/~online-accounts/ubuntu-system-settings-online-accounts/trunk/view/head:/client/OnlineAccountsClient/setup.cpp [13:30] tsdgeos: of course OA could be made more fault tolerant, but it's likely QDBus is simply still broken even though all our other issues with the patch set are gone [13:32] alecu: on a reboot, but not always. also, the first click of Install on the app after upgrading to the silo removes the account, but not if upgrade is done first and then account is added - app installations then work for the duration of that boot [13:33] "for the duration of that boot" is what makes no sense to me! :-( [13:35] yeah, it feels weird, but it certainly looks like that. so it's probably that some multi-threaded dbus usage during boot creates the problem, even though at times the removal only happens after that boot, when Install is clicked [13:36] right [13:40] ooh! http://people.canonical.com/~alan/screenshots/device-2015-04-23-143817.png [13:41] popey, you're kidding ! [13:41] wat? [13:41] I only just noticed :) [13:41] popey: thank you! I often pested that it lacked this [13:41] popey: Is it in vivid? :) [13:42] thats my up to date vivid phone [13:42] I think I need to buy another phone just fot testing :D [13:42] damnit, it's not there on the BQ 4.5 yet [13:42] yes, please buy more phones for "testing" or whatever [13:42] soooon [13:43] ah wait, maybe it only works with the Media PLayer app [13:43] ya [13:43] * Silex tests again [13:43] doesn't work with music [13:43] :( [13:44] popey: I got one for everyday use :) just I another one for testing :D [13:44] * Silex curses at media player [13:44] how does one simply select music to play in it? [13:44] * Silex tries file manager [13:45] still not downloading update after many reboot any idea? :( [13:46] * Silex curses at Media Player not being able to open mp3 files [13:46] c'mon [13:50] Hmm - my network status indicator has gone completely and the tab in the indicator bar has been replaced by a cogwheel icon labelled "indicator-network" [13:51] pete-woods, ^^ [13:52] mcphail, anything new in your /var/crash folder? [13:53] popey, ogra_ : it doesnt seem to work with media-player as well during my testing..perhaps more fixes are in the pipeline [13:53] ya [13:54] jgdx: lots of things :) Nothing from today, though [13:55] mcphail: anything interesting in ~/.cache/upstart/indicator-network.log* ? [13:57] pete-woods: one sec. trying to read/access through terminal app :) === Se7 changed the topic of #ubuntu-touch to: -78/74 === Se7 changed the topic of #ubuntu-touch to: -78/74/topic [14:15] sorry i don t know what s up my child put and on keyboards === jgdx changed the topic of #ubuntu-touch to: | Home: http://bit.ly/YEqEfo | Installing: https://wiki.ubuntu.com/Touch/Install | Porting guide (advanced) https://wiki.ubuntu.com/Touch/Porting | Bugs filing: http://bit.ly/1aV9AJG | Nexus Status: http://bit.ly/18kIrhM | Dashboard: http://bit.ly/12AQV53 | Changelog: http://bit.ly/1ljube1 | http://www.bq.com/gb/ubuntu.html | OTA-3 released [14:25] pete-woods: quite a bit of "terminate called after throwing an instance of 'std::out_of_range'" (sorry for delay in replying - internet issues) [14:25] mcphail: are you on RTM or vivid? [14:26] pete-woods: rtm [14:26] mcphail: sounds like we need to push the same fix out to RTM as we have in vivid then [14:26] not that I think there's another rtm image coming along [14:27] pete-woods: i suppose the fix _will_be_ vivid :) [14:27] pete-woods: do you need more info or shall I just reboot? [14:30] mcphail: if you can find an indicator-network crash file that would be useful [14:30] just so I can confirm it's the same crash [14:30] it doesn't matter if it's not from today === chihchun is now known as chihchun_afk [14:48] pete-woods: sorry - got cut off again. Do you want an email with a crash file from the 17th? [14:50] mcphail: that sounds good to me [14:50] mcphail: pete.woods@canonical.com [14:53] pete-woods, please can i pm you? [14:53] OerHeks: sure [15:08] Hi :) Where can I report incomplete translations concerning uubuntu touch? Openening a bugreport on launchpad seems to be the wrong place. [15:13] march, it's the right place, but it's best if you file it against the package/project in question. Where is the incomplete translation? [15:25] jgdx, If you choose your favorite contacts a new screen appears displaying the name of the person and some buttons. [15:26] On my phone it is a mixture of german and english. Should be german only [15:30] march, okay, could you file against https://bugs.launchpad.net/address-book-app/+filebug ? [15:43] * mcphail has just realised the podbird icon is an owl. [15:44] mcphail: not for long [15:44] nik90: I'd thought it was a close-up of a monkey's face... [15:46] The belly feathers were teeth... [15:46] * mcphail does not have the best eyesight [15:46] heh [15:46] lol [16:04] Mirv: after further manual testing, I found that logging into U1 from system settings is unreliable as logging from the scope. [16:05] I tap and tap on the "Ubuntu One" entry in system settings and still can't login [16:05] well, after a few taps it worked [16:05] but still, seems to be as broken [16:06] alecu: if you see #ubuntu-ci-eng, we now added mardy's https://code.launchpad.net/~mardy/ubuntu-system-settings-online-accounts/lp1421009/+merge/257267 which seems to help the boot up account disappearance at least (it now always survives boot but disappears when app is tried to be installed, although not every time), but we'd need something similar to some other potentially racy place [16:06] alecu: so if you apt update + upgrade you'd get that mardy's u-s-s-o-a update from the same PPA [16:06] ah, great. [16:06] alecu: do you know anything about that what happens / what's called when Install is pressed in the store, where something similar could be applied? [16:06] sil2100: ^ [16:07] Mirv: I suspect unity-scopes-shell, will check with people on my team [16:08] pstolowski: pete-woods: is that right? ^ [16:08] alecu: awesome! [16:12] mc [16:12] I'll do that jgdx [16:14] Mirv: actually, unity-scopes-shell is using libonline-accounts-client1, which is built from ubuntu-system-settings-online-accounts too [16:14] alecu, Mirv afaict after some grepping in unity-scopes-shell, it depends on libonline-accounts-client1-dev (ubuntu-system-settings-online-accounts) and doesn't do anything like in that diff directly [16:14] alecu, ah, at the same time ;) [16:14] hmmm [16:15] pstolowski: right, so I would suspect mardy's patch ought to fix that too [16:15] yeah [16:18] pstolowski, alecu, Mirv: that's not good then, I'm in overall worried that the raciness can cause accounts to go missing [16:18] sil2100: I wonder what happens with accounts other than the U1 account as used in the click scope. [16:19] I've been trying to install some other scope that uses online accounts, but been hitting the bug. [16:19] (other scopes that use online accounts are, eg: vimeo, soundcloud, instagram scopes) [16:22] I'm upgrading to vivid as well === pat__ is now known as pmcgowan === alecu is now known as alecu-lunch [16:36] nik90: podbird does not start on my mako 15.04 devel-proposed r183 [16:36] taiebot: known [16:36] fixed in trunk i believe [16:37] popey and the music stalling as well? on r183 [16:38] taiebot: yeah, there's a bug in the UITK, but we've got a workaround for it in 0.6 which we'll be releasing very soon [16:38] elleo: is it for podbird or music app? [16:38] taiebot: podbird, no idea about the music app side of things [16:47] if someone calls and you swipe the call notification away the phone vibrates and there is no way to answer it , opening the phone app lets you call but doesnt say theres a imcoming call still, vibrating goes away when the other person hangs up [16:54] taiebot: music app opens fine for me on r183 though [16:54] It does open but try to play two songs. [16:55] taiebot: I quickly seeked through 3-4 songs and it continues playing..what do you observe on your end? [16:56] nik90: was walking back home with headphones and after finishing the song. when starting the next one it starts to stutter and finally stops. [16:58] taiebot: ah ok...I will play an entire playlist and see if I can reproduce it [16:59] nik90 just starting an album here to see if i can always reproduce.. [17:03] nik90 its pretty weird i am not playing the music it is supposed to play=-O [17:03] eh [17:03] It says Jessie J Domino on the now playing while he plays some spanish guitar music. [17:05] ok there's something really weird going on then === alecu-lunch is now known as alecu === chihchun_afk is now known as chihchun === chihchun is now known as chihchun_afk [18:52] Can anyone point me to a guide for upgrading my phone to 15.04 ? [18:57] isleofmandan, are you ready for instabilities and bugs ? ... you can switch the channel to devel-proposed with th system-image-cli command ... but i would wait til 15.04 is ready [18:58] (there is a --switch option for system-image-cli) [18:58] (see --help) [18:59] ogra_: you don't need to minuses and you are missing a k, it's "But seek help" [18:59] lol [19:00] Thanks. I thought 15.04 was already released. My laptop is currently upgrading and I thought phone and desktop were same codebase? [19:00] isleofmandan: not yet we are getting there [19:00] phone is rolling and gets special QA treatment [19:01] the normal phone OTA mchanism will just switch you over automatically, you wont notice :) [19:01] So it will just do it by magic when it's ready [19:01] yeah : [19:01] cool. Thanms [19:01] :) [19:01] thanks [19:01] in about 4-6 weeks i'd say ... will still take a while [19:02] I can't type on it. :p [19:03] OK thanks. We have a local release party on Saturday and some folks wanted me to show my phone. First question I'll get is why is it only on 14.10 :) [19:04] isleofmandan: it isn't, it's on 14.09 rtm which is another thing all together [19:06] so confusing. It says 14.10 on the screen. :) [19:09] isleofmandan: that's just to confuse people ;) [19:12] anyway, thanks for the help. I'll get back to nursing laptop through its uograde from 14.10... /boot appears to be too full but I have seen that issue before so know what to do. It's the phone stuff that is all new and weird to me! [19:12] have a good evening === aaron__ is now known as ahoneybun [19:22] I could use a little help in understanding the difference between scopes and apps on Ubuntu Phone. As I understand it, a scope is something like a group or category of information, where that scope can take in data from an assortment of sources. an app is a single program, which just does it's own thing. is that a correct assessment? [19:23] yeah [19:24] d3z_, that's a pretty good top-level view yep :) [19:24] d3z_, the main focus of scopes is content rather than functionality [19:25] cool, thanks cwayne and ogra_ [19:25] I'm considering making a small app (i assume that's the correct approach here) which will make some requests to a web service and display data in a basic list. I'll also need to save some basic user preferences. given the minimal requirements, it seems like a good fit to do in html5 rather than qml. is that reasonable? [19:26] what kind of data? [19:27] for now it's just an excuse to try things out, but it'll tasks (as in todo list entries) [19:28] I imagine a user being able to set a few preferences in the app, but otherwise it's just requesting data via https and showing that data as text on a list [19:47] \o/ podbird update :) [19:51] d3z_: an html5 app would be fine for that. it would fit into the realm of scopes as well, if it's just displaying data and not really entering any. [20:54] Updating my desktop to vivid now! \o/ === K1773R_ is now known as K1773R === salem_ is now known as _salem