MatthewAllen | balloons, can you have a look at my task? https://codein.withgoogle.com/dashboard/task-instances/4963286344794112/?sp-page=1 | 03:30 |
---|---|---|
darkxst | MatthewAllen, ha, guess google doesnt know my timezone! you submitted that one 1 hour in the future ;) | 05:01 |
MatthewAllen | darkxst, wow time zones must be crazy diffrent - I submitted that 18 hours ago. | 05:04 |
darkxst | well they are spread over 24 hours | 05:09 |
MatthewAllen | it's just funny that the website can't work it out for you :) | 05:09 |
* darkxst blames daylight savings | 05:10 | |
Girish | DanChapman: Wher do I declare bool m_includeInReply such that it remains global for the project? | 08:52 |
meverynoob | ping popey | 09:56 |
DanChapman | Girish, you don't declare m_includeInReply globally as it's a private member. You expose it to qml as a property via the Q_PROPERTY macro. Take a look at the smtp settings header file to see how the other properties work | 10:32 |
meverynoob | hi | 12:20 |
meverynoob | sorry to disturb but | 12:21 |
meverynoob | when trying to import the ubuntu calculator app into ubuntu sdk | 12:21 |
meverynoob | it says it requires a cbp file which requires an argument passed to CMake to create that file | 12:22 |
meverynoob | I'm not sure what's going on or what to do at this point | 12:22 |
meverynoob | can someone please help? | 12:22 |
meverynoob | https://developer.ubuntu.com/en/community/core-apps/calculator/ | 12:22 |
DanChapman | meverynoob, what do you mean by "import into the sdk"? | 12:50 |
meverynoob | whups i afked for too long | 13:00 |
meverynoob | what i meant by importing into ubuntu sdk was basically like treating the file as a project | 13:01 |
meverynoob | it was built using the sdk | 13:02 |
meverynoob | to begin with | 13:02 |
meverynoob | so i thought it should definitely be a project i could import into the sdk | 13:02 |
meverynoob | maybe im wrong | 13:04 |
DanChapman | meverynoob, did you open the CMakeLists.txt file in the root of the project folder with the sdk ide? Or did you try using the "New project" -> "Import project" approach? | 13:31 |
meverynoob | import project, then chose the CMakeLists.txt file | 13:31 |
meverynoob | i couldnt find anything else to import so | 13:32 |
meverynoob | actually i did open project | 13:33 |
meverynoob | not new project | 13:33 |
meverynoob | but i think i've tried the new project option and the outcome was the same: it was missing a cbp file | 13:33 |
DanChapman | meverynoob, right. Let's try a different approach. Try deleting the CMakeLists.txt.user file in the project folder. Then right click the CMakeLists.txt file and open with the sdk ide | 13:34 |
meverynoob | huh? | 13:44 |
meverynoob | where's the CMakeLists.txt.user file? | 13:46 |
meverynoob | I only see the CMakeLists.txt files | 13:46 |
meverynoob | none of them have a .user behind them | 13:46 |
DanChapman | Ok jsut try opening the CMakeLists.txt file then. | 13:51 |
meverynoob | with the ide? | 13:55 |
meverynoob | it still says the same thing | 13:56 |
meverynoob | that the directory im under is missing the cbp file | 13:56 |
meverynoob | it gives me this window to pass in arguments for CMake to create this file | 13:56 |
DanChapman | and have you run cmake? | 13:57 |
DanChapman | the arguments are optional | 13:57 |
meverynoob | i have no idea what to write | 13:58 |
meverynoob | if i leave it blank | 13:58 |
meverynoob | they will request for an executable to be chosen | 13:58 |
meverynoob | "Selected Kit has no valid CMake executable specified." | 13:58 |
DanChapman | check you have cmake install. $ apt-cache policy cmake | 13:59 |
DanChapman | *installed | 13:59 |
meverynoob | installed | 13:59 |
meverynoob | version 3.2.2 | 13:59 |
DanChapman | cool. point it at /usr/bin/cmake | 14:00 |
meverynoob | ? | 14:01 |
DanChapman | Select /usr/bin/cmake as the executable. The project generator can't find it | 14:02 |
meverynoob | oh | 14:02 |
meverynoob | erm | 14:03 |
meverynoob | its not working..? | 14:03 |
DanChapman | what's it saying? | 14:04 |
meverynoob | same thing | 14:04 |
meverynoob | "Selected Kit has no valid CMake executable specified." | 14:04 |
DanChapman | meh :-/ that's annoying. What's your task btw? | 14:04 |
meverynoob | https://codein.withgoogle.com/dashboard/task-instances/5154263609114624/?sp-page=1 | 14:05 |
meverynoob | build calculator and run all testsuites | 14:05 |
meverynoob | i've realised that the testsuite bit didnt need the building | 14:05 |
meverynoob | i did that first | 14:06 |
DanChapman | right, it's probably quicker to do it from the command line as it's just a pure qml project. The building part is just for translations. You can run the app with $ qmlscene -qt5 app/ubuntu-calculator-app.qml from the root of the project. | 14:07 |
meverynoob | oh | 14:08 |
meverynoob | is that considered building it? | 14:08 |
DanChapman | i'd say so yeah, you don't build a pure qml project. And the sdk ide will just run the same as what you are doing on the command line anyway | 14:10 |
DanChapman | You should also explain the issues you faced trying to do it with the IDE and what you tried but didn't succeed | 14:11 |
Girish | DanChapman: So I add bool m_includeInReply to the private data members of class SmtpSettings? | 14:13 |
Girish | How do I do the exposing part? | 14:13 |
DanChapman | Girish look at how the Q_PROPERTY macros work :-) | 14:15 |
DanChapman | Girish, i would suggest having a read of http://doc.qt.io/qt-5/qtqml-tutorials-extending-qml-example.html | 14:16 |
meverynoob | o0k thanks so much dan! | 14:16 |
DanChapman | Your welcome :-) | 14:17 |
DanChapman | Girish, also http://qmlbook.github.io/en/ch15/index.html#the-qobject is quite a good explanation | 14:18 |
Girish | Okay, on it. | 14:18 |
MatthewAllen | balloons, can you take a look at my task? https://codein.withgoogle.com/dashboard/task-instances/4963286344794112/?sp-page=1 | 14:25 |
Girish | DanChapman: So I have to make m_includeInReply a Q_PROPERTY? | 14:29 |
Girish | Also, what is an enum? | 14:29 |
MatthewAllen | Girish, have a look here - https://en.wikipedia.org/wiki/Enumerated_type | 14:30 |
Girish | MatthewAllen: Got it, thanks! | 14:42 |
Girish | DanChapman: I'm not able to push to launchpad. I'm getting '1remote: Authorisation required.' | 15:27 |
Girish | whenever I do git push | 15:28 |
MatthewAllen | Girish, are you trying to push to the main branch? Or your own? I don't think you're able to push to the main one | 15:28 |
Girish | I'm pushing to my own. | 15:30 |
MatthewAllen | Have you got your SSH keys and such setup? | 15:30 |
Girish | It's giving me 'Permission denied (publickey).' | 15:39 |
Girish | But I've pushed to launchpad before. | 15:39 |
Girish | This is the repo I'm trying to push to - https://code.launchpad.net/~emailgirishrawat/dekko/+git/dekko | 15:40 |
Girish | With the command git push git+ssh://git.launchpad.net/~emailgirishrawat/dekko | 15:40 |
MatthewAllen | hmm, not sure then :/ | 15:47 |
balloons | if xcub asks, he's still in 6th place | 15:51 |
balloons | I can't update the leaderboard today though | 15:51 |
balloons | Girish, you have 22 complete, at #3 | 15:51 |
balloons | malevasquez, you have 26, while MatthewAllen has 27 | 15:52 |
balloons | adueppen, you have 18 | 15:52 |
balloons | mcintireevan, you have 8 | 15:52 |
DanChapman | Girish its git push git+ssh://emailgirishrawat@git.launchpad.net/~emailgirishrawat/dekko <branchname> | 15:56 |
Girish | DanChapman: Getting the same errors. | 15:59 |
Girish | Agent admitted failure to sign using the key. | 15:59 |
Girish | Permission denied (publickey). | 15:59 |
Girish | I used git+ssh://emailgirishrawat@git.launchpad.net/~emailgirishrawat/dekko master | 16:00 |
balloons | knome, I added a bunch of qatracker tasks, and made you mentor on a couple. IF you want to mentor them all, let me know | 16:39 |
balloons | fyi, I of course am also a mentor on all of them, heh | 16:40 |
knome | i can do as much as time permits | 16:53 |
knome | also, i have something likely interesting to you | 16:53 |
knome | ..in a while | 16:53 |
malevasquez | Thanks balloons for letting me know | 16:56 |
malevasquez | :-) | 16:57 |
balloons | knome, ok.. tasks perhaps? I'm going to head out in a minute | 16:57 |
knome | no tasks, and can wait | 16:57 |
* balloons is excitied now though | 16:58 | |
knome | haha | 16:58 |
knome | well i can give you a hint | 16:58 |
knome | in PM | 16:58 |
tsimonq2 | balloons: have you updated the rankings in a bit? | 17:00 |
balloons | tsimonq2, I can't today, but will tomorrow | 17:03 |
balloons | I posted so snippets above | 17:04 |
balloons | or you can run the same code | 17:04 |
tsimonq2 | balloons: well yeah I have done it | 17:07 |
tsimonq2 | balloons: but some students have been PMing me about it | 17:07 |
balloons | yea sorry.. ok, ok.. let me try | 17:07 |
tsimonq2 | :) | 17:10 |
balloons | leaderboard updated | 17:18 |
balloons | you can blame tsimonq2 for making me jump through the hoops to get on the VPN to go it | 17:18 |
tsimonq2 | hey hey hey now :P :) | 17:35 |
xcub | Hello :) Could someone here help me build the address-book-app? | 22:52 |
mcintireevan | xcub: I would, but I have a bunch of homework to do, so I gotta leave in a minute, sorry :( | 23:22 |
mcintireevan | balloons: Thanks for the update; I hope you pick the winners on more than just number of tasks ;) Either way, some of those numbers are impressive, I still have no clue how they have all that time though | 23:23 |
xcub | alright, that's fine :) | 23:24 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!