/srv/irclogs.ubuntu.com/2014/09/27/#ubuntu-app-devel.txt

ahoneybunAkiva-Thinkpad, Channel ubuntu-rtm not found on server, Channel rtm not found on server00:00
Akiva-Thinkpadahoneybun, is there a release to manufacturer channel?00:00
ahoneybunAkiva-Thinkpad, https://system-image.ubuntu.com/ubuntu-touch/00:01
Akiva-Thinkpadis this an irc channel00:02
* Akiva-Thinkpad is super tired, about to go to bed00:02
Akiva-Thinkpadmmmm go00:02
Akiva-Thinkpadahoneybun, gonna head to bed00:07
Akiva-Thinkpadnight all00:08
* ahoneybun is tired of the icons on ubuntu touch flicking everytime he scrolls00:12
ahayzen+100:17
* ahoneybun thinks he understand anchors now!00:30
ahoneybunI got my textfield to not be inside my button!00:36
ahoneybunthanks balloons00:37
kenvandinepopey, thx!00:46
ahoneybuncan you link a textfield to a button so that a listitem will show what you typed in the textfield?00:52
=== salem_ is now known as _salem
ahoneybunhow do you link a toolbarbutton to something?01:42
ahoneybunis there a limit to the buttons you can have?02:07
ahoneybunI have one button on one row and another button on the other row but if I add a 2nd button to either row it gets rid of the single button02:12
ahoneybunanyone?02:21
ahoneybunhttp://imgur.com/OcGg3iv02:34
* ahoneybun has a button and a textfield and is looking good lol02:52
ahoneybuncan you make it then when you click a button that the text in the textfield will be put into a listitem?03:37
FestourHi all!04:21
FestourSomeone can help me enable R/W system? touch cant create writable_image in userdata04:22
FestourIm use rtm version04:22
=== IbrahimA|znc is now known as IbrahimA
=== IbrahimA is now known as IbrahimA|znc
=== IbrahimA|znc is now known as IbrahimA
=== IbrahimA is now known as IbrahimA|znc
rpadovaniWhat package have I to install to have Ubuntu.Contacts?09:34
vitimitihi10:32
ahoneybunI'm trying to make a database of the states mhall11914:19
=== frecel_ is now known as frecel
* ahoneybun really dislikes timezones14:36
=== AceLan_ is now known as AceLan
ahoneybunI need to make a List scollable17:49
ahoneybunping18:07
ahayzenpong?18:13
ahoneybunahayzen, hey!18:33
ahayzenahoneybun, o/18:33
ahoneybunI think I'm almost done with my app18:33
ahayzenyey18:34
ahayzenahoneybun, what type of list are you trying to make scrollable?18:34
ahoneybuna list of states18:35
ahayzenahoneybun, what objects are they?18:35
ahoneybunI'm going to post a screenshot give me a min18:35
ahoneybunum18:35
ahayzenahoneybun, like a ListView normally is scrollable IIRC...but otherwise just put a Flickable {} around it?18:35
ahoneybunum I did not use ListView18:36
ahoneybunI was trying!18:36
ahoneybunbut they are all ListItem.Standard18:36
ahayzenahoneybun, yeah depends what you are trying to do i suppose ;)18:36
ahoneybunwell it is a list of 31 states so I need to scoll lol18:37
ahayzenhah yeah18:37
ahoneybunahayzen, http://imgur.com/a/ep1Is18:37
ahayzenahoneybun, ah i see18:38
ahayzenahoneybun, have you tried to put that in a ListView? it looks like it would work18:38
ahoneybunI'm trying to find the docs about listview18:38
ahoneybunI'm still learning here but I have gotten so far in just 1 1/2 days!18:39
ahayzenahoneybun, https://developer.ubuntu.com/api/qml/sdk-14.10/QtQuick.ListView/18:39
ahoneybunhttp://developer.ubuntu.com/api/qml/sdk-14.10/QtQuick.ListView/18:39
ahoneybunlol18:39
ahoneybunI tried that but it said something about model not found ro something18:39
ahoneybunfrom that example18:39
ahoneybunContactModel is not a type18:40
ahoneybunthat is the error with that example18:40
ahayzenahoneybun, your doing well :) ... so you want a ListModel with ListElements with each of the texts... then in the ListView reference that model and then set the delegate to ListItem.Standard with the text set to the model text18:41
ahayzenahoneybun, yeah ContactModel {} won't exist ... you see the bit above with ListModel {} ?18:41
* ahoneybun if more of the visual person18:41
ahayzenahoneybun, put an id in that eg ListModel { id: myModel }18:41
ahayzenahoneybun, then from the view.. ListView { model: myModel }18:42
ahayzenahoneybun, in their example they had that ListModel in a file called ContactModel.qml thats why it worked...but you can put it all together for now to keep it simple18:42
ahoneybunthat worked!18:42
ahayzen:)18:43
ahoneybunyay18:43
ahoneybunnow to right all 31 states by hand!18:43
ahoneybunagain!18:43
ahayzenheh thats where u really want it reading from a db/json list of something18:43
ahoneybunyea that would be nice18:45
ahoneybunI was looking at mhall119's loco team app18:45
ahoneybunthats where I got the tab thing to work :)18:45
ahayzenah cool :)18:46
ahayzenahoneybun, you will probably want to eventually split each page into separate QML files otherwise u'll have one massive main.qml :)18:47
ahoneybunbut I might need help with that as well18:47
ahoneybunyea that is how mhall119 did it as well18:47
ahoneybunhow do I make QML files, like18:49
ahayzenahoneybun, you have the sidebar hidden in qtc...do Window->Show sidebar18:50
ahayzenahoneybun, then on your project right click -> Add new.. then from the dialogue select Qt->Qml file (qt quick 2)18:51
ahoneybunahayzen, would I make something like this http://bazaar.launchpad.net/~mhall119/loco-team-portal/ubuntu-app/view/head:/models/FilterableJsonModel.qml?18:51
ahayzenahoneybun, give it a name of something.qml18:51
ahoneybunon my project?18:52
ahayzenahoneybun, you could do depends how complex a really really simple thing which just pushes a list into a model could look like this http://pastebin.ubuntu.com/8442305/18:52
* ahoneybun does not have anything to right click18:53
ahoneybunjust a main.qml file18:53
ahayzenahoneybun, ah18:53
ahayzenahoneybun, how did you create the project?18:53
* ahoneybun makes new project with same code18:53
ahayzenahoneybun, yeah make a new project using one of the Ubuntu templates... probably "App with Tabbed UI"18:54
ahoneybunopps18:54
ahoneybunahayzen, this is what my screen looks like http://imgur.com/awruITD18:56
ahoneybunbrb18:57
ahoneybunback18:57
ahayzenahoneybun, where it says "Open documents" you probably want to change to "Projects" ...in the sidebar at the top18:57
ahoneybunthat did it18:57
ahoneybunon my main.qml I have to import the new qml file right?19:00
ahoneybunimport legal.qml19:00
ahoneybunahayzen, on my main.qml I have to import the new qml file right?19:01
ahayzenahoneybun, if it is in the same folder you should just be able to do legal {} ... note normally i/we name files with upper case so Legal.qml... so then you do Legal {}19:01
ahayzenahoneybun, if it is a different folder then you do import "myfolder" and then u can use any of the qml files in that folder19:02
ahoneybunwhere would I put "legal {}"19:02
ahoneybunoh!!19:02
ahayzenahoneybun, what are you putting in legal.qml ? the Page { ... stuff.... }  ?19:02
ahoneybunmodel: legal {}19:02
ahayzenthat may work :)19:03
ahoneybunwhat states have legal same sex and which do not19:03
TroyHi everybody out there!19:03
ahoneybunso two models19:03
ahoneybunhey Troy !19:03
ahayzenahoneybun, what i would do is have each page in a separate file... so like NotLegalPage {} or something19:03
TroyI am hosting a Linux User Group in Ventura County CA19:03
ahayzenahoneybun, then in the Tab { page: NotLegalPage{} }19:04
ahoneybunoh I was thinking about doing that as well ahayzen19:04
TroyWas wondereing if anybody nearby would like to come?19:04
ahoneybunTroy, sweet19:04
ahoneybunI'm in Fl so I can't19:04
ahayzenahoneybun, are you looking at the coreapps as well for reference?19:05
ahoneybunahayzen, I was looking at the notes one when I was making a note app before19:05
ahoneybunbut not currently19:05
ahayzenahoneybun, alot of them have the code structured quite nicely or have solved alot of problems so if u have a component similar to one of them remember u can check through their code here https://launchpad.net/ubuntu-phone-coreapps19:06
TroyHello Everybody ou there!19:06
ahoneybunyea thanks ahayzen19:06
TroyI am hosting a Linux User Group in Camarillo CA, and am trying to get more people to come.19:07
TroyMight anybody know a way of advertising it?19:07
ahayzenTroy, have you tried the relevant US loco team irc channel? https://wiki.ubuntu.com/IRC/ChannelList19:08
Troyno.19:09
ahayzenTroy, i assume Camarillo CA is California? so you probably want #ubuntu-us-ca19:09
TroyOK.19:10
TroyI'm trying to meet at the Camarillo Library.19:10
ahayzenTroy, or the general US one #ubuntu-us19:10
TroyI am still 13 years old so I am not that good.19:10
Troythank a ton.19:11
ahoneybunTroy, also try the ubuntu-us-ca mailing list19:13
TroyOk19:13
ahoneybunthats how I heard about FossetCon!19:13
ahoneybunwell for Fl anyway19:13
TroyFossetCon?19:13
ahoneybunopen source software con19:13
TroyOh.19:13
ahoneybunfossetcon.org19:13
Troyok.19:14
TroyIt seems like ubunut-us-ca is empty19:14
TroyI am new to IRC19:14
ahayzenTroy, it is the weekend ;)...and note you had a typo "ubunut" instead of "ubuntu"19:16
Troyoh woops...19:17
TroyI keep doing that by mistake19:17
ahoneybunahayzen, Expected type name on both lines with model: legal {}19:17
ahoneybunand I tried model: legal.qml {}19:17
ahayzenahoneybun, can you pastebin your main.qml and your legal.qml ?19:18
ahayzenahoneybun, http://pastebin.ubuntu.com/19:19
ahoneybunoh19:19
ahoneybunI think I forgot to put a id19:19
ahoneybunnope19:20
ahoneybunthat did not fix it19:20
ahoneybunahayzen, http://pastebin.ubuntu.com/8442464/19:20
ahayzenahoneybun, i just tried it ...it has to be upper case so change legal.qml to Legal.qml and legal {} to Legal {}19:21
ahayzenahoneybun, oh and ur Legal.qml....19:21
TroyAlso I forgot to mention, I am starting my own OS....www.kanagawa-os-project.weebly.com....19:21
ahayzenahoneybun, if u really want to put only the model in another file then all u need in ur Legal.qml is this http://pastebin.ubuntu.com/8442469/19:22
ahayzenahoneybun, not the MainView and Page again etc19:22
ahoneybunI think I got it wait a min19:23
ahayzen:)19:23
ahoneybunType Legal unavailable19:29
ahoneybunand I'm getting a syntex error19:29
ahayzenhah oh god19:29
ahayzenahoneybun, so you renamed the legal.qml -> Legal.qml ?19:30
ahoneybunyea19:30
ahayzenahoneybun, ok sounds like that actual Legal.qml has a syntax error in it19:30
ahayzenahoneybun, should be red in the editor19:30
ahoneybunfixed19:31
ahayzen:)19:31
ahoneybunok it ran but it is showing nothing in the legal and nonlegal tabs19:32
ahayzenhmm19:32
ahayzenahoneybun, mind reposting them on pastebin again?19:32
ahoneybunsure19:33
ahoneybunahayzen, http://pastebin.ubuntu.com/8442576/19:33
ahayzenahoneybun, ok your NotLegal page the Listview is outside of the Page {} ?19:35
ahoneybunI copied what you put in that pastiebin ahayzen19:36
ahayzenahoneybun, also if you want the ListView to fill the page you can do anchors { fill: parent } instead of width/height19:36
ahoneybunthat is from the example still...19:36
ahayzenahoneybun, and you may want to do model.state instead of text: state as state is used internally19:37
* ahoneybun gets errors when doing that19:39
ahoneybunoh19:39
ahoneybunon the legal.qml and notlegal.qml you mean?19:39
ahayzenno..in the main.qml ... ahoneybun hang on let me do a little mini app19:40
ahayzenahoneybun, http://pastebin.ubuntu.com/8442627/19:41
ahoneybunthat worked!19:42
ahoneybunnow to center the text!19:43
ahoneybunsomething is wrong with the Notlegal one though19:44
ahoneybunthe text from that is going into the top19:44
ahayzenahoneybun, the ListView {} is not inside the Page { }19:44
ahoneybunneither have that19:44
ahoneybunoh19:45
ahayzenahoneybun, to centre the text you may need to put a Label in the listitem19:45
ahayzenahoneybun, eg http://pastebin.ubuntu.com/8442649/ .. but have a play about19:46
ahoneybunlistview you mean?19:48
ahoneybunI made a label, I put that without a Label and still nothign19:50
ahayzenahoneybun, ^^ was an example delegate19:52
ahoneybunguess I can't center then19:54
ahayzenahoneybun, ^^ works for me :)19:55
ahoneybun?19:55
ahayzenahoneybun, the full main.qml http://pastebin.ubuntu.com/8442699/19:55
ahoneybunCannot assign to non-existent property "delegate"19:56
ahayzenheh sounds like the delegate is not inside a ListView?19:57
ahoneybunoh19:57
ahoneybunI copied you and still get the same error19:59
ahoneybungot it19:59
ahoneybunwas not inside the ListView20:00
ahayzenyey20:00
ahoneybunyay more problems20:05
ahoneybunahayzen, http://imgur.com/i1AYme120:05
ahayzenheh20:05
ahayzenahoneybun, i've seen that before20:06
ahoneybunI tried vericalAlignment as well20:06
ahayzenahoneybun, have you put anchors { fill: parent } in the ListView instead of setting width, height ?20:07
ahoneybunyes20:07
ahayzenhmmm ahoneybun mind posting ur main again just so i can catch up with wht u've done20:08
ahoneybunahayzen, one second adding states to the notlegal one20:09
ahayzencool20:09
ahoneybunahayzen, http://pastebin.ubuntu.com/8442785/20:14
ahoneybunI tried adding Row {20:15
ahayzenahoneybun, ok for both tabs u have the ListView {} still outside the Page { } ... so lines 67->84 need to go before 6620:16
ahayzenahoneybun, and then the same for the other page... so 100->117 before 9820:16
* ahoneybun 's mind explodes20:16
ahayzenahoneybun, ahah20:17
ahoneybuncan't I just move the } that closes the Page up down20:17
ahoneybun?20:17
ahoneybunso that the ListView is inside of the Page?20:18
ahayzenahoneybun, yeah but basically the ListView needs be inside the Page { }20:18
ahoneybunqml: WARNING! Do not put Page/Tabs/PageStack inside another Page because that causes confusion which is the active page that sets the title and actions.20:18
ahayzenahoneybun, heh if u look at lines 31->33 in the pastebin u have a random page?20:19
ahoneybunthat was so the title would be Same Sex Marriage when you started the app20:20
ahayzenahoneybun, you may also want to sort out you indentations... if you press Ctrl+A and then press Ctrl+I it will autoformat the code for you20:20
ahayzenahoneybun, ok that should be on the page in line 38?20:21
ahayzenahoneybun, oh no that is ur "about" page :P20:21
ahoneybunfixed20:22
ahayzenahoneybun, IIRC it just starts on whatever the first tab is... so you should be able to put that page into its own tab20:22
* ahoneybun hungs ahayzen just for the ctrl a and ctrl i thing!20:23
ahoneybunhugs20:23
ahayzen:)20:23
ahoneybunopps lol20:23
ahoneybunahayzen, http://imgur.com/zJl3HN6 !!!!20:24
ahayzenahoneybun, yey \o/ now ur gonna ask for vertical alignment? lol20:24
ahoneybunidk20:24
* ahayzen wonders if there is actually a standard component to centre the text20:24
ahoneybunyou think it is ready to upload to the store?20:25
ahoneybunI just need to make a icon which is not hard20:26
ahayzenahoneybun, have you managed to build a click package?20:26
ahayzenahoneybun, and do you have a device to test on?20:26
ahoneybunahayzen, not for this one20:26
ahoneybunahayzen, yea my Nexus 4 with Ubuntu20:26
ahoneybun:)20:26
ahoneybunnever could get install to device to work though20:27
ahayzenahoneybun, u'll need to build a click to upload? ... go to "publish" on the sidebar is the option "create and validate click package" available ?20:27
ahayzenahoneybun, and does your nexus 4 have developer mode enabled?20:28
ahoneybunyep20:28
ahoneybunyep20:28
ahoneybunwell20:28
ahayzenok click and build that click20:28
ahayzenas u'll need that anyway20:28
ahoneybunI just use click build . in the command line20:28
ahayzenhah20:29
ahoneybunoh no errors20:29
ahoneybunfrom click build .20:29
ahayzenahoneybun, are you able to validate that resultant .click?20:29
ahoneybuni could not make a .click20:29
ahayzenahoneybun, "validate existing click package" ... oh what happened?20:29
ahoneybunwait20:30
ahayzentoo many things! lol20:30
ahoneybunsays it build20:30
ahoneybunhttp://pastebin.ubuntu.com/8442879/20:30
ahoneybunbut did not pass the check20:30
ahayzeneewww hmm do you have an apparmor policy?20:31
ahayzenahoneybun, heh i get the same when doing $ click build .20:31
ahayzenand yeah it fails review20:32
* ahoneybun runs update && upgrade20:32
ahayzenahoneybun, ok so probably best to try and build via qtc... so do you have any kits setup?20:32
ahoneybunyea20:32
ahoneybunubuntusdk for amd6420:33
ahoneybunand something called Desktop20:33
ahayzenhmm even when trying that mine still fails :/20:33
ahayzeni haven't used qmlprojects in a while20:34
* ahayzen hugs click-buddy20:34
ahoneybunlooks like it seems my phone20:35
ahayzenahoneybun, i mean the resulting .click looks ok so maybe just the review tools are broken20:36
* ahoneybun sees the update for bash20:36
ahayzenahoneybun, are you able to install it on device?20:36
ahoneybunahayzen, I can't click the button20:36
ahayzenahoneybun, do you have shell access to ur device? eg adb and phablet-shell?20:37
ahoneybunsould20:37
ahoneybunshould20:37
ahoneybunyep20:37
ahoneybunadb shell works20:37
ahayzenahoneybun, ok so if you adb push the click into /tmp... eg ... adb push my.click /tmp/my.click20:37
ahoneybunahayzen, how the heck20:38
=== AceLan_ is now known as AceLan
ahayzenahoneybun, cd to the dir where your click you made is20:39
ahoneybunhow???20:39
ahoneybunI used adb shell20:39
ahoneybunnow I'm in my phoen20:39
ahoneybunI cant see the click package from therer20:39
ahayzenahoneybun, no on the pc20:39
ahoneybunwell it cant see the phoen20:40
ahayzenahoneybun, but u just adb shell? ... so if u open a normal terminal you would be able to adb push?20:40
ahoneybundont think so20:40
ahayzenhmm20:40
ahoneybunI can use adb push20:41
ahoneybunbut I can say where to send it20:41
ahoneybunlike /tmp will not work20:41
* ahoneybun head is hurting20:41
ahayzenyeah so ... $ adb push inputonpc.click /tmp/outputondevice.click20:41
ahayzenahoneybun, ah maybe ur device is read-only?20:41
ahoneybunyep20:42
ahoneybunno one would explain how to make it r/w mode20:42
ahayzenarg ahoneybun really you want to do it via qtcreator20:42
ahoneybunwell I can't20:42
ahoneybuncan't click the button20:42
ahayzenif other people with more knowledge were around i'm sure they would know  .... have you tried selecting that "UbuntuSdk for armhf" as the kit to use?20:43
ahoneybunahayzen, http://imgur.com/fVgnxF320:43
ahoneybunI dont have that kit made20:43
ahayzenahoneybun, ok so where u see that desktop/monitor looking thing... change it from "desktop" to another kit....ah20:43
ahoneybunnever really understand how to make a kit20:43
ahayzenu'll probably need that20:44
ahoneybunthe first one the sdk made for me but I never really got what I was doing lol20:44
vitimitiHi20:45
ahayzeni haven't really figured them out totally yet either as i just use click-buddy lol20:45
ahayzenvitimiti, o/20:45
ahoneybunlol20:45
ahoneybunhey vitimiti20:45
vitimitiHi, ahoneybun and ahoneybun20:46
ahoneybunlol20:46
ahayzenhah20:46
=== tgm4883_ is now known as tgm4883
ahayzenahoneybun, you may be better off asking in the week when people are about to help you setup your kits and get pushing to device working20:47
ahoneybundarn20:47
ahayzenahoneybun, nik90 may have a bit more knowledge if he is around ;)20:47
ahoneybunyea20:47
vitimitiHow can I copy an error on the SDK with the Ubuntu.Components? It says it should be 'Name major.minor' and it is highlighted as an error, though it's properly written and works, but it gives more exact data I don't know how to copy. It shows it on mouse over20:47
ahoneybunthanks a lot!!! ahayzen20:48
ahayzenahoneybun, no problem20:48
ahoneybundamn kits20:50
ahoneybunbrb20:50
justcarakashey20:53
justcarakasI have  a question, I'm working on an app and I want to test it on my ubuntu phone (nexus4) it is connected to my laptop but I can't seem to run my app on my phone20:54
justcarakasow wait, never mind, it was the usb cable :)20:55
justcarakashow can I install the device developer tools on my phone ?21:04
justcarakaswhen I try to do that with the switch in the device tab it asks are you root and throws some errors21:04
justcarakasor is that not needed ?21:05
ahoneybunback21:19
=== IbrahimA|znc is now known as IbrahimA
ahoneybunnik90, ping21:49
ahoneybunahayzen, bump21:49
ahoneybunAkiva-Thinkpad, o/21:50
Akiva-Thinkpadahoneybun, \o21:50
Akiva-Thinkpadahoneybun, whats new?21:50
ahoneybunAkiva-Thinkpad, thanks to ahayzen I almost have my first "real" app ready21:51
Akiva-Thinkpadahoneybun, oh really!?21:52
Akiva-Thinkpaddo tell21:52
IbrahimAdo people doing html5 apps generally use jquery or what?21:52
Akiva-Thinkpadwhat is it?21:52
ahoneybunAkiva-Thinkpad, qml21:52
Akiva-ThinkpadIbrahimA, ask justcarakas21:52
Akiva-Thinkpadhe does all his apps in html521:52
ahoneybunit list what states have same sex marriage  and which do not21:52
IbrahimAah ok21:52
IbrahimAtrying to figure out if there are best practices in place and whatnot21:53
ahayzenahoneybun, yo21:53
IbrahimAfeels like things are in the early stages right now so maybe not21:53
ahoneybunAkiva-Thinkpad, right now I am getting this http://imgur.com/fVgnxF321:53
Akiva-Thinkpadahoneybun, can't say I'm expert in that; sorry21:54
ahoneybunAkiva-Thinkpad, thanks anyway though21:54
ahoneybunAkiva-Thinkpad, http://imgur.com/A1moVye21:54
ahayzenahoneybun, interestingly when i tried that on the default "Simple UI" template it failed as well so maybe an issue with the tools themselves...i assume ur on trusty as well?21:55
ahoneybunahayzen, I'm installing a new click build target for armrf21:55
ahayzen\o/21:55
ahoneybunahayzen, no I'm on utopic21:55
ahayzenahoneybun, ah urs should be better than mine then :P21:56
IbrahimAanyone here do html5 apps? is there a way to restart the running application if i launch it with ubuntu-html5-app-launcher ?21:56
Akiva-ThinkpadI still have yet to push out my own app... huh, the documentation is tough :)21:56
ahoneybunahayzen, I've been running utopic for about a week I think, since I got my N4 I think21:57
ahoneybunAkiva-Thinkpad, what do you think of my app?21:57
ahayzenahoneybun, yey i should make the jump soon i suppose...then i would actually be able to test/use the music-app on the desktop while developing lol21:57
ahoneybunahayzen, you work on the music app?21:57
ahayzenahoneybun, yup :)21:57
ahoneybunahayzen, I got problem with the ui design, but thank you for making one at all :) lol21:58
ahoneybun*problems21:58
ahayzenahoneybun, there are new designs on their way :) and they look awesome ;)21:58
ahoneybunahayzen, sweet21:58
ahayzen:)21:58
ahoneybunI know I could make a music app lol21:58
ahoneybun*not21:58
ahayzenhah21:58
ahayzenits still a long way off where we want it to be ... but we're getting there21:59
ahoneybunahayzen, I have buttons now!22:00
ahoneybunfor the publish tabl22:00
ahayzen\o/ ahoneybun click them!22:00
ahoneybunyay errors still!22:00
ahayzenyey :/22:01
ahayzenahoneybun, did it actually push to device though?22:01
ahoneybundid not try that22:01
ahoneybuni tried to build it22:01
ahayzenah well at least u have a .click now?22:02
ahoneybunI did before22:03
ahoneybunI just had to do it in the commandline22:03
ahayzenhah yeah22:03
ahoneybunalso I fixed one erro22:03
ahoneybunr22:03
ahoneybunit was on my end22:03
ahoneybunbut I think the rest are not from me22:03
ahoneybunthose are from the packages that the devs are uploading22:04
ahoneybunI don;t think it is from my 1 ppa22:04
ahoneybunfrom libreoffice22:04
ahayzenahoneybun, yeah i think it is something in the review tools themselves22:05
ahoneybunyea it talks about /usr/bin/click-review22:06
* ahoneybun made a icon for his app22:09
Akiva-Thinkpadahoneybun, sorry was caught in the middle of playing the piano22:26
ahoneybunAkiva-Thinkpad, np22:26
* ahoneybun is stuck on "Installing updates - In progress"22:28
IbrahimAfor html5 apps is there a special storage api or should we use stuff like localstorage?23:07
SturmFlutIbrahimA: I don't know, sorry.23:26
dakerIbrahimA: localstorage23:26
ahoneybunthere should be a twitter scope23:42
IbrahimAdaker: thanks!23:58

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!