lp://staging/~mterry/unity8/split
Created by
Michael Terry
and last modified
- Get this branch:
- bzr branch lp://staging/~mterry/unity8/split
Only
Michael Terry
can upload to this branch. If you are
Michael Terry
please log in for upload directions.
Branch merges
Propose for merging
No branches
dependent on this one.
- Albert Astals Cid (community): Approve
- PS Jenkins bot (community): Needs Fixing (continuous-integration)
- MichaĆ Sawicz: Needs Fixing
- Timo Jyrinki: Needs Fixing
-
Diff: 4988 lines (+2256/-853)104 files modifiedCMakeLists.txt (+1/-0)
data/51-unity8-greeter.conf (+2/-0)
data/CMakeLists.txt (+13/-0)
data/unity8-greeter-init.conf (+12/-0)
data/unity8-greeter-wrapper (+98/-0)
data/unity8-greeter.desktop.in (+5/-0)
debian/changelog (+6/-0)
debian/control (+16/-0)
debian/copyright (+1/-1)
debian/rules (+0/-4)
debian/unity8-greeter.install (+6/-0)
debian/unity8-private.install (+1/-0)
debian/unity8.install (+0/-1)
plugins/AccountsService/AccountsService.cpp (+34/-11)
plugins/AccountsService/AccountsService.h (+9/-0)
plugins/CMakeLists.txt (+1/-0)
plugins/LightDM/CMakeLists.txt (+6/-9)
plugins/LightDM/Greeter.cpp (+3/-0)
plugins/LightDM/Greeter.h (+2/-0)
plugins/LightDM/URLDispatcher.cpp (+55/-0)
plugins/LightDM/URLDispatcher.h (+34/-0)
plugins/LightDM/plugin.cpp (+9/-0)
plugins/SessionBroadcast/SessionBroadcast.cpp (+35/-0)
plugins/SessionBroadcast/SessionBroadcast.h (+11/-0)
plugins/SessionManager/CMakeLists.txt (+22/-0)
plugins/SessionManager/SessionManager.cpp (+124/-0)
plugins/SessionManager/SessionManager.h (+61/-0)
plugins/SessionManager/plugin.cpp (+35/-0)
plugins/SessionManager/plugin.h (+35/-0)
plugins/SessionManager/qmldir (+2/-0)
plugins/Unity/Launcher/backend/launcherbackend.cpp (+16/-2)
plugins/Unity/Launcher/backend/launcherbackend.h (+7/-1)
plugins/Unity/Launcher/launcheritem.cpp (+14/-9)
plugins/Unity/Launcher/launcheritem.h (+2/-1)
plugins/Unity/Launcher/launchermodel.cpp (+41/-11)
plugins/Unity/Launcher/launchermodel.h (+2/-0)
po/ug.po (+2/-1)
qml/Components/BasicShell.qml (+84/-0)
qml/Components/EdgeDemo.qml (+1/-53)
qml/Components/Lockscreen.qml (+0/-20)
qml/Components/PageHeader.qml (+3/-2)
qml/Dash/ScopeListView.qml (+3/-2)
qml/Greeter/Clock.qml (+1/-1)
qml/Greeter/Greeter.qml (+36/-3)
qml/Greeter/GreeterContent.qml (+0/-38)
qml/Greeter/GreeterEdgeDemo.qml (+102/-0)
qml/Greeter/Infographics.qml (+0/-2)
qml/GreeterShell.qml (+283/-0)
qml/Hud/Hud.qml (+1/-4)
qml/Notifications/NotificationMenuItemFactory.qml (+29/-13)
qml/Panel/Panel.qml (+1/-1)
qml/Shell.qml (+31/-177)
run.sh (+6/-4)
src/CMakeLists.txt (+15/-3)
src/main.cpp (+18/-4)
tests/autopilot/unity8/application_lifecycle/tests/__init__.py (+0/-2)
tests/autopilot/unity8/application_lifecycle/tests/test_application_lifecycle.py (+1/-29)
tests/autopilot/unity8/application_lifecycle/tests/test_greeter.py (+75/-0)
tests/autopilot/unity8/application_lifecycle/tests/test_url_dispatcher.py (+1/-0)
tests/autopilot/unity8/indicators/tests/test_indicators.py (+0/-2)
tests/autopilot/unity8/process_helpers.py (+0/-56)
tests/autopilot/unity8/shell/tests/__init__.py (+16/-4)
tests/autopilot/unity8/shell/tests/disabled_test_hud.py (+1/-7)
tests/autopilot/unity8/shell/tests/test_emulators.py (+0/-3)
tests/autopilot/unity8/shell/tests/test_lock_screen.py (+12/-13)
tests/autopilot/unity8/shell/tests/test_notifications.py (+2/-14)
tests/mocks/AccountsService/AccountsService.cpp (+9/-0)
tests/mocks/AccountsService/AccountsService.h (+7/-0)
tests/mocks/CMakeLists.txt (+2/-1)
tests/mocks/LightDM/demo/CMakeLists.txt (+0/-21)
tests/mocks/LightDM/demo/GreeterPrivate.cpp (+0/-70)
tests/mocks/LightDM/demo/UsersModelPrivate.cpp (+0/-41)
tests/mocks/LightDM/qmldir (+0/-3)
tests/mocks/SessionManager/CMakeLists.txt (+19/-0)
tests/mocks/SessionManager/SessionManager.cpp (+43/-0)
tests/mocks/SessionManager/SessionManager.h (+49/-0)
tests/mocks/SessionManager/plugin.cpp (+34/-0)
tests/mocks/SessionManager/plugin.h (+34/-0)
tests/mocks/SessionManager/qmldir (+2/-0)
tests/mocks/liblightdm/CMakeLists.txt (+0/-46)
tests/mocks/liblightdm/Greeter.cpp (+11/-0)
tests/mocks/liblightdm/Greeter.h (+4/-0)
tests/mocks/liblightdm/full/CMakeLists.txt (+3/-2)
tests/mocks/liblightdm/single-passphrase/CMakeLists.txt (+3/-2)
tests/mocks/liblightdm/single-pin/CMakeLists.txt (+3/-2)
tests/mocks/liblightdm/single/CMakeLists.txt (+3/-2)
tests/plugins/CMakeLists.txt (+2/-1)
tests/plugins/LightDM/CMakeLists.txt (+5/-4)
tests/plugins/SessionManager/CMakeLists.txt (+48/-0)
tests/plugins/SessionManager/LightDMSessionServer.cpp (+38/-0)
tests/plugins/SessionManager/LightDMSessionServer.h (+40/-0)
tests/plugins/SessionManager/LoginManagerServer.cpp (+34/-0)
tests/plugins/SessionManager/LoginManagerServer.h (+37/-0)
tests/plugins/SessionManager/LoginSessionServer.cpp (+25/-0)
tests/plugins/SessionManager/LoginSessionServer.h (+39/-0)
tests/plugins/SessionManager/client.cpp (+88/-0)
tests/plugins/SessionManager/interfaces.xml (+22/-0)
tests/plugins/SessionManager/server.cpp (+57/-0)
tests/qmltests/CMakeLists.txt (+40/-49)
tests/qmltests/Greeter/tst_Lockscreen.qml (+1/-2)
tests/qmltests/Greeter/tst_Phone.qml (+1/-17)
tests/qmltests/tst_GreeterShell.qml (+88/-0)
tests/qmltests/tst_Shell.qml (+10/-64)
tools/unlock-device (+10/-18)
Related bugs
Related blueprints
Branch information
Recent revisions
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp://staging/unity8