diff -Nru unity-tweak-tool-0.0.7ubuntu4/data/media/48/unity-settings-webapps.svg unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/data/media/48/unity-settings-webapps.svg --- unity-tweak-tool-0.0.7ubuntu4/data/media/48/unity-settings-webapps.svg 1970-01-01 00:00:00.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/data/media/48/unity-settings-webapps.svg 2019-03-27 07:45:08.000000000 +0000 @@ -0,0 +1,1367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru unity-tweak-tool-0.0.7ubuntu4/debian/changelog unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/debian/changelog --- unity-tweak-tool-0.0.7ubuntu4/debian/changelog 2017-08-24 21:15:21.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/debian/changelog 2019-03-27 07:45:08.000000000 +0000 @@ -1,3 +1,9 @@ +unity-tweak-tool (0.0.7ubuntu4+201903270745~ubuntu19.04.1) disco; urgency=low + + * Auto build. + + -- Khurshid Alam Wed, 27 Mar 2019 07:45:08 +0000 + unity-tweak-tool (0.0.7ubuntu4) artful; urgency=medium * Actually remove unity-webapps-common from the deps. diff -Nru unity-tweak-tool-0.0.7ubuntu4/debian/git-build-recipe.manifest unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/debian/git-build-recipe.manifest --- unity-tweak-tool-0.0.7ubuntu4/debian/git-build-recipe.manifest 1970-01-01 00:00:00.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/debian/git-build-recipe.manifest 2019-03-27 07:45:08.000000000 +0000 @@ -0,0 +1,2 @@ +# git-build-recipe format 0.4 deb-version {debversion}+201903270745 +lp:~khurshid-alam/unity-tweak-tool/+git/unity git-commit:8b004a5560d53cf73e711c3afa4b4ad5e3d91ed0 diff -Nru unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/__init__.py unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/__init__.py --- unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/__init__.py 2017-08-24 18:25:23.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/__init__.py 2019-03-27 07:45:08.000000000 +0000 @@ -37,7 +37,11 @@ import sys import logging import dbus, dbus.service + +import gi +gi.require_version('Gtk', '3.0') from gi.repository import Gtk + from dbus.mainloop.glib import DBusGMainLoop from UnityTweakTool.config.logging import LOGFILE,LOGFMT,LOGLVL,CACHEDIR @@ -142,7 +146,8 @@ 'unity_dash' :(1,1), 'unity_panel' :(1,2), 'unity_switcher' :(1,3), - 'unity_additional' :(1,4), + 'unity_webapps' :(1,4), + 'unity_additional' :(1,5), 'compiz_general' :(2,0), 'compiz_workspace' :(2,1), diff -Nru unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/dynamic.py unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/dynamic.py --- unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/dynamic.py 2016-03-28 04:36:37.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/dynamic.py 2019-03-27 07:45:08.000000000 +0000 @@ -39,3 +39,10 @@ touchpad_schema = 'settings-daemon' else: touchpad_schema = 'desktop' + +# Desktop feature was removed in nautilus >=3.28. So we use nemo to draw desktop icons. +#See https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1814506 +if "org.gnome.nautilus.desktop" not in schema_list: + desktop_schema = 'org.nemo.desktop' +else: + desktop_schema = 'org.gnome.nautilus.desktop' diff -Nru unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/spaghetti/gsettings.py unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/spaghetti/gsettings.py --- unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/spaghetti/gsettings.py 2017-08-24 18:22:45.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/spaghetti/gsettings.py 2019-03-27 07:45:08.000000000 +0000 @@ -108,7 +108,7 @@ antialiasing = gnome('settings-daemon.plugins.xsettings') background = gnome('desktop.background') -desktop = gnome('nautilus.desktop') +desktop = dynamic.desktop_schema interface = gnome('desktop.interface') lockdown = gnome('desktop.lockdown') wm = gnome('desktop.wm.preferences') diff -Nru unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/system.py unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/system.py --- unity-tweak-tool-0.0.7ubuntu4/UnityTweakTool/section/system.py 2016-03-28 04:36:37.000000000 +0000 +++ unity-tweak-tool-0.0.7ubuntu4+201903270745~ubuntu19.04.1/UnityTweakTool/section/system.py 2019-03-27 07:45:08.000000000 +0000 @@ -44,7 +44,7 @@ tb_home_folder= ToggleButton({ 'id' : 'tb_home_folder', 'builder' : System.builder, - 'schema' : 'org.gnome.nautilus.desktop', + 'schema' : dynamic.desktop_schema, 'path' : None, 'key' : 'home-icon-visible', 'type' : 'boolean', @@ -55,7 +55,7 @@ tb_network= ToggleButton({ 'id' : 'tb_network', 'builder' : System.builder, - 'schema' : 'org.gnome.nautilus.desktop', + 'schema' : dynamic.desktop_schema, 'path' : None, 'key' : 'network-icon-visible', 'type' : 'boolean', @@ -66,7 +66,7 @@ tb_trash= ToggleButton({ 'id' : 'tb_trash', 'builder' : System.builder, - 'schema' : 'org.gnome.nautilus.desktop', + 'schema' : dynamic.desktop_schema, 'path' : None, 'key' : 'trash-icon-visible', 'type' : 'boolean', @@ -77,7 +77,7 @@ tb_devices= ToggleButton({ 'id' : 'tb_devices', 'builder' : System.builder, - 'schema' : 'org.gnome.nautilus.desktop', + 'schema' : dynamic.desktop_schema, 'path' : None, 'key' : 'volumes-visible', 'type' : 'boolean',