I have made the following changes intended for : CE:Apps / qmlmessages Please review and accept or decline. BOSS has already run some checks on this request. See the "Messages from BOSS" section below.
https://build.pub.meego.com//request/show/8198 Thank You, John Brooks [This message was auto-generated] --- Request # 8198: Messages from BOSS: State: review at 2013-02-26T09:04:11 by bossbot Reviews: accepted by bossbot : Prechecks succeeded. new for CE-maintainers : Please replace this text with a review and approve/reject the review (not the SR). BOSS will take care of the rest Changes: submit: home:special:branches:CE:Apps / qmlmessages -> CE:Apps / qmlmessages changes files: -------------- --- qmlmessages.changes +++ qmlmessages.changes @@ -0,0 +1,4 @@ +* Tue Feb 26 2013 John Brooks <[email protected]> - 0.1.2 +- Make sure contact is updated in ConversationListDelegate +- Fix enum type in account selector (from Ruediger Gad) + old: ---- qmlmessages-0.1.1.tar.bz2 new: ---- qmlmessages-0.1.2.tar.bz2 spec files: ----------- --- qmlmessages.spec +++ qmlmessages.spec @@ -9,7 +9,7 @@ # << macros Summary: Messaging application for nemo -Version: 0.1.1 +Version: 0.1.2 Release: 1 Group: Applications/System License: BSD other changes: -------------- ++++++ qmlmessages-0.1.1.tar.bz2 -> qmlmessages-0.1.2.tar.bz2 --- qml/AccountSelector.qml +++ qml/AccountSelector.qml @@ -79,7 +79,7 @@ PropertyChanges { target: selector - selectedUid: dialog.model.get(dialog.selectedIndex, AccountsModel.AccountUidRole) + selectedUid: dialog.model.get(dialog.selectedIndex, TelepathyAccountsModel.AccountUidRole) } } } --- qml/ConversationListDelegate.qml +++ qml/ConversationListDelegate.qml @@ -44,6 +44,7 @@ opacity: pressed ? 0.7 : 1.0 property QtObject person: null + property int contactId: model.contactIds.length > 0 ? model.contactIds[0] : -1 Connections { target: person ? null : peopleModel @@ -52,6 +53,7 @@ } Component.onCompleted: updatePerson() + onContactIdChanged: updatePerson() function updatePerson() { person = peopleModel.personById(model.contactIds[0]) ++++++ qmlmessages.yaml --- qmlmessages.yaml +++ qmlmessages.yaml @@ -1,6 +1,6 @@ Name: qmlmessages Summary: Messaging application for nemo -Version: 0.1.1 +Version: 0.1.2 Release: 1 Group: Applications/System License: BSD
