Merge lp:~lukas-kde/unity8/liveCaption into lp:unity8
| Status: | Merged |
|---|---|
| Approved by: | Michał Sawicz on 2015-10-08 |
| Approved revision: | 1950 |
| Merged at revision: | 2007 |
| Proposed branch: | lp:~lukas-kde/unity8/liveCaption |
| Merge into: | lp:unity8 |
| Prerequisite: | lp:~unity-team/unity8/mousePointer |
| Diff against target: |
37 lines (+4/-1) 3 files modified
qml/Stages/ApplicationWindow.qml (+2/-0) qml/Stages/DecoratedWindow.qml (+1/-1) qml/Stages/SurfaceContainer.qml (+1/-0) |
| To merge this branch: | bzr merge lp:~lukas-kde/unity8/liveCaption |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Daniel d'Andrada (community) | 2015-10-08 | Approve on 2015-10-21 | |
| PS Jenkins bot | continuous-integration | 2015-10-08 | Pending |
| Albert Astals Cid | 2015-10-08 | Pending | |
|
Review via email:
|
|||
This proposal supersedes a proposal from 2015-09-30.
Commit Message
React to window title (aka surface name) changes
Description of the Change
React to window caption (surface name) changes
Cf. https:/
* Are there any related MPs required for this MP to build/function as expected? Please list.
Yes: unity-api: https:/
Functionality also depends on qtmir: https:/
* Did you perform an exploratory manual test run of your code change and any related functionality?
Yes
* Did you make sure that your branch does not contain spurious tags?
Yes
* If you changed the packaging (debian), did you subscribe the ubuntu-unity team to this MP?
Yes
* If you changed the UI, has there been a design review?
N/A
| Daniel d'Andrada (dandrader) wrote : | # |
| Daniel d'Andrada (dandrader) wrote : | # |
Unrelated changes in po/sr.po.
There's debug output in qml/Stages/
In qml/Stages/
| Daniel d'Andrada (dandrader) wrote : | # |
In qml/Stages/
"""
property string name: surface && surface.name !== "" ? surface.name : ""
"""
Has some redundancy. It could be written as:
property string name: surface ? surface.name : ""
| Lukáš Tinkl (lukas-kde) wrote : | # |
> Unrelated changes in po/sr.po.
Fixed
> There's debug output in qml/Stages/
Fixed
> In qml/Stages/
> sessionContaine
> sessionContaine
Fixed
| Lukáš Tinkl (lukas-kde) wrote : | # |
> In qml/Stages/
>
> """
> property string name: surface && surface.name !== "" ? surface.name : ""
> """
>
> Has some redundancy. It could be written as:
> property string name: surface ? surface.name : ""
Fixed
| Lukáš Tinkl (lukas-kde) wrote : | # |
> Please rebase it on top of mousePointer, as you did for the unity-api one.
Done
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:1942
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:1947
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| Daniel d'Andrada (dandrader) wrote : | # |
In qml/Stages/
"""
+ Connections {
+ target: root.surface
+ onNameChanged: {
+ if (name !== "") {
+ root.name = name;
+ }
+ }
+ }
"""
I don't think we need this code. Let name be empty if it was set like that.
| Daniel d'Andrada (dandrader) wrote : | # |
You have to resubmit your proposal to add lp:~dandrader/unity8/mousePointer as a prerequisite. Otherwise launchpad will think your MP includes mousePointer changes as well.
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:1948
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:1949
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| Albert Astals Cid (aacid) wrote : | # |
Was top approved.
Text conflict in CMakeLists.txt
1 conflicts encountered.
| Michał Sawicz (saviq) wrote : | # |
Resubmitted on top of the new prerequisite. Needs merging that to clear the conflict.
- 1951. By Lukáš Tinkl on 2015-10-08
-
merge trunk and fix conflict
| Lukáš Tinkl (lukas-kde) wrote : | # |
> Resubmitted on top of the new prerequisite. Needs merging that to clear the
> conflict.
Merged, fixed the conflict, tags clean
- 1952. By Lukáš Tinkl on 2015-10-08
-
merge prereq
- 1953. By Lukáš Tinkl on 2015-10-15
| Daniel d'Andrada (dandrader) wrote : | # |
In qml/Stages/
"""
+ property string name: surface ? surface.name : ""
"""
Since ApplicationWind
| Daniel d'Andrada (dandrader) wrote : | # |
> In qml/Stages/
>
> """
> + property string name: surface ? surface.name : ""
> """
>
> Since ApplicationWind
> property is not being used.
As in you can just remove it.
| Lukáš Tinkl (lukas-kde) wrote : | # |
> > In qml/Stages/
> >
> > """
> > + property string name: surface ? surface.name : ""
> > """
> >
> > Since ApplicationWind
> > property is not being used.
>
> As in you can just remove it.
Done

Please rebase it on top of mousePointer, as you did for the unity-api one.