[Indicators] Complete greeter profiles
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Indicator Date and Time |
Invalid
|
High
|
Unassigned | ||
Messaging Menu |
Fix Released
|
High
|
Ted Gould | ||
Transfer Indicator |
Fix Released
|
High
|
Ted Gould | ||
Ubuntu UX |
Fix Released
|
Critical
|
Olga Kemmet | ||
gsettings-ubuntu-touch-schemas (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned | ||
indicator-datetime (Ubuntu) |
Invalid
|
Undecided
|
Unassigned | ||
indicator-messages (Ubuntu) |
Fix Released
|
High
|
Ted Gould | ||
indicator-sound (Ubuntu) |
Fix Released
|
High
|
Ted Gould | ||
indicator-transfer (Ubuntu) |
Fix Released
|
High
|
Ted Gould | ||
ubuntu-system-settings (Ubuntu) |
Fix Released
|
Critical
|
Michael Terry | ||
unity8 (Ubuntu) |
Fix Released
|
Critical
|
Nick Dedekind | ||
unity8 (Ubuntu RTM) |
New
|
Undecided
|
Unassigned |
Bug Description
A recent change in the interest of security removed access to the indicators when the phone is locked and the greeter is showing.
This was an accentual change based on a misunderstanding
There had been a plan to support media playback control via the sound indicator. Without this the user must unlock the phone in order to simply pause the music or change songs, etc.
-------
Desired resolution:
- Revert the change that caused this issue
- Add a switch to System Settings to enable security conscious user to switch off Launcher and Greeter access while the phone is locked. This setting should *always* be off by default. <https:/
Related branches
- Albert Astals Cid (community): Approve
- PS Jenkins bot (community): Needs Fixing (continuous-integration)
-
Diff: 304 lines (+105/-8)7 files modifieddebian/control (+1/-1)
plugins/AccountsService/AccountsService.cpp (+38/-0)
plugins/AccountsService/AccountsService.h (+14/-0)
qml/Shell.qml (+2/-2)
tests/mocks/AccountsService/AccountsService.cpp (+24/-0)
tests/mocks/AccountsService/AccountsService.h (+16/-0)
tests/qmltests/tst_ShellWithPin.qml (+10/-5)
- Sebastien Bacher (community): Approve
- PS Jenkins bot: Needs Fixing (continuous-integration)
- Ken VanDine: Needs Fixing
- Matthew Paul Thomas: Pending (design) requested
-
Diff: 178 lines (+92/-16)4 files modifieddebian/control (+1/-1)
plugins/security-privacy/PhoneLocking.qml (+29/-8)
plugins/security-privacy/securityprivacy.cpp (+48/-7)
plugins/security-privacy/securityprivacy.h (+14/-0)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
-
Diff: 624 lines (+373/-8)13 files modifiedconfigure.ac (+2/-1)
data/com.canonical.indicator.messages (+4/-1)
debian/control (+1/-0)
src/Makefile.am (+2/-0)
src/im-accounts-service.c (+223/-0)
src/im-accounts-service.h (+53/-0)
src/im-application-list.c (+9/-0)
src/im-menu.c (+33/-0)
src/im-menu.h (+2/-0)
src/im-phone-menu.c (+9/-4)
src/im-phone-menu.h (+2/-1)
src/messages-service.c (+3/-1)
tests/manual (+30/-0)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
-
Diff: 624 lines (+373/-8)13 files modifiedconfigure.ac (+2/-1)
data/com.canonical.indicator.messages (+4/-1)
debian/control (+1/-0)
src/Makefile.am (+2/-0)
src/im-accounts-service.c (+223/-0)
src/im-accounts-service.h (+53/-0)
src/im-application-list.c (+9/-0)
src/im-menu.c (+33/-0)
src/im-menu.h (+2/-0)
src/im-phone-menu.c (+9/-4)
src/im-phone-menu.h (+2/-1)
src/messages-service.c (+3/-1)
tests/manual (+30/-0)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
- Antti Kaijanmäki: Pending requested
-
Diff: 33 lines (+26/-0)1 file modifiedtests/manual (+26/-0)
- PS Jenkins bot: Pending (continuous-integration) requested
- Antti Kaijanmäki: Pending requested
-
Diff: 33 lines (+26/-0)1 file modifiedtests/manual (+26/-0)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
-
Diff: 10 lines (+1/-1)1 file modifieddata/com.canonical.indicator.transfer (+1/-1)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
-
Diff: 10 lines (+1/-1)1 file modifieddata/com.canonical.indicator.transfer (+1/-1)
- Charles Kerr (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
- Ted Gould: Pending requested
-
Diff: 442 lines (+268/-9)5 files modifieddebian/changelog (+13/-0)
src/service.vala (+21/-2)
src/sound-menu.vala (+39/-1)
src/volume-control.vala (+96/-6)
tests/manual (+99/-0)
- Ted Gould: Pending requested
-
Diff: 406 lines (+267/-2)5 files modifieddebian/changelog (+13/-0)
src/service.vala (+19/-0)
src/sound-menu.vala (+39/-1)
src/volume-control.vala (+97/-1)
tests/manual (+99/-0)
- PS Jenkins bot (community): Approve (continuous-integration)
- Nick Dedekind (community): Approve
- Michał Sawicz: Needs Information
- Albert Astals Cid (community): Abstain
- Olga Kemmet: Pending requested
-
Diff: 630 lines (+201/-43)17 files modifiedplugins/Unity/Indicators/indicator.cpp (+23/-8)
plugins/Unity/Indicators/indicator.h (+5/-1)
plugins/Unity/Indicators/indicatorsmanager.cpp (+17/-3)
plugins/Unity/Indicators/indicatorsmanager.h (+6/-1)
plugins/Unity/Indicators/indicatorsmodel.cpp (+25/-2)
plugins/Unity/Indicators/indicatorsmodel.h (+6/-1)
plugins/Unity/Indicators/modelactionrootstate.cpp (+4/-2)
plugins/Unity/Indicators/unitymenumodelcache.cpp (+8/-11)
plugins/Unity/Indicators/unitymenumodelcache.h (+2/-2)
qml/Shell.qml (+3/-1)
tests/mocks/Unity/Indicators/fakeindicatorsmodel.cpp (+13/-1)
tests/mocks/Unity/Indicators/fakeindicatorsmodel.h (+6/-0)
tests/plugins/Unity/Indicators/indicatorsmanagertest.cpp (+30/-5)
tests/plugins/Unity/Indicators/indicatorsmodeltest.cpp (+6/-3)
tests/plugins/Unity/Indicators/sharedunitymenumodeltest.cpp (+2/-2)
tests/qmltests/tst_Shell.qml (+29/-0)
tests/qmltests/tst_ShellWithPin.qml (+16/-0)
description: | updated |
Changed in ubuntu-ux: | |
assignee: | nobody → Olga Kemmet (olga-kemmet) |
importance: | Undecided → Critical |
status: | New → Fix Committed |
Changed in unity8: | |
importance: | Undecided → Critical |
assignee: | nobody → Michael Terry (mterry) |
status: | New → Triaged |
description: | updated |
summary: |
- Indicators are not available when the phone is locked + [Indicators] are not available when the phone is locked |
Changed in ubuntu-system-settings (Ubuntu): | |
assignee: | nobody → Michael Terry (mterry) |
importance: | Undecided → Critical |
status: | New → In Progress |
tags: | added: rtm14 touch-2014-08-28 |
Changed in unity8: | |
status: | In Progress → Fix Released |
Changed in unity8 (Ubuntu RTM): | |
status: | New → In Progress |
tags: |
added: touch-2014-09-11 removed: touch-2014-08-28 |
Changed in indicator-sound (Ubuntu): | |
importance: | Undecided → High |
status: | New → Confirmed |
Changed in indicator-transfer (Ubuntu): | |
importance: | Undecided → High |
status: | New → Confirmed |
tags: |
added: touch-2014-09-25 removed: touch-2014-09-11 |
Changed in indicator-messages (Ubuntu): | |
assignee: | nobody → Ted Gould (ted) |
importance: | Undecided → High |
status: | New → Confirmed |
Changed in indicator-sound (Ubuntu): | |
assignee: | nobody → Ted Gould (ted) |
Changed in indicator-messages: | |
assignee: | nobody → Ted Gould (ted) |
status: | Confirmed → In Progress |
Changed in indicator-sound: | |
assignee: | nobody → Ted Gould (ted) |
tags: |
added: touch-2014-10-02 removed: touch-2014-09-25 |
tags: |
added: touch-2014-10-09 removed: touch-2014-10-02 |
tags: |
added: touch-2014-10-23 removed: touch-2014-10-09 |
Changed in indicator-messages: | |
status: | In Progress → Fix Released |
Changed in indicator-transfer: | |
status: | In Progress → Fix Released |
no longer affects: | indicator-sound |
Changed in ubuntu-ux: | |
status: | Fix Committed → Fix Released |
Changed in unity8 (Ubuntu): | |
assignee: | nobody → Michael Terry (mterry) |
importance: | Undecided → High |
status: | Triaged → In Progress |
Changed in unity8 (Ubuntu RTM): | |
status: | Triaged → New |
Changed in unity8 (Ubuntu): | |
assignee: | Michael Terry (mterry) → nobody |
Changed in unity8 (Ubuntu): | |
importance: | High → Critical |
status: | In Progress → Fix Released |
no longer affects: | unity8 |
Should enabling the setting actually prevent you from accessing the launcher / indicators? Or is it meant to just reduce the scope of the indicators instead?