click-update-manager-0.1+14.04.20140306/0000755000015201777760000000000012306050250017714 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/tests/0000755000015201777760000000000012306050250021056 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/tests/autopilot/0000755000015201777760000000000012306050250023076 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/tests/autopilot/CMakeLists.txt0000644000015201777760000000045512306047726025660 0ustar pbusernogroup00000000000000set(AUTOPILOT_DIR click_update_manager) execute_process(COMMAND python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" OUTPUT_VARIABLE PYTHON_PACKAGE_DIR OUTPUT_STRIP_TRAILING_WHITESPACE) install(DIRECTORY ${AUTOPILOT_DIR} DESTINATION ${PYTHON_PACKAGE_DIR} ) click-update-manager-0.1+14.04.20140306/tests/autopilot/click_update_manager/0000755000015201777760000000000012306050250027217 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/tests/autopilot/click_update_manager/__init__.py0000644000015201777760000000725512306047726031357 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- """Ubuntu Touch App autopilot tests.""" import os import shutil import subprocess from autopilot.input import Pointer from autopilot.matchers import Eventually from testtools.matchers import Equals from ubuntuuitoolkit import base, emulators def _get_module_include_path(): return os.path.join(_get_path_to_source_root(), 'modules') def _get_path_to_source_root(): return os.path.abspath( os.path.join( os.path.dirname(__file__), '..', '..', '..')) def _get_local_desktop_file_directory(): return os.path.join(os.environ['HOME'], '.local', 'share', 'applications') class ClickUpdateManagerTestCase(base.UbuntuUIToolkitAppTestCase): qml_file_name = 'updatemanager.qml' path_to_installed_app = '/usr/share/click-update-manager/' desktop_file_name = 'click-update-manager.desktop' path_to_installed_desktop_file = '/usr/share/applications/' local_desktop_file_path = None def setUp(self): super(ClickUpdateManagerTestCase, self).setUp() self.pointing_device = Pointer(self.input_device_class.create()) self.app_qml_source_path = os.path.join( _get_path_to_source_root(), self.qml_file_name) self.test_qml_file_path = self._get_test_qml_file_path() self.desktop_file_path = self._get_desktop_file_path() self.launch_application() def _get_test_qml_file_path(self): if self._application_source_exists(): return self.app_qml_source_path else: return os.path.join( self.path_to_installed_app, self.qml_file_name) def _application_source_exists(self): return os.path.exists(self.app_qml_source_path) def _get_desktop_file_path(self): if self._application_source_exists(): local_desktop_file_dir = _get_local_desktop_file_directory() if not os.path.exists(local_desktop_file_dir): os.makedirs(local_desktop_file_dir) source_desktop_file_path = os.path.join( _get_path_to_source_root(), self.desktop_file_name) local_desktop_file_path = os.path.join( local_desktop_file_dir, self.desktop_file_name) shutil.copy(source_desktop_file_path, local_desktop_file_path) # We can't delete the desktop file before we close the application, # so we save it on an attribute to be deleted on tear down. self.local_desktop_file_path = local_desktop_file_path return local_desktop_file_path else: return os.path.join( self.path_to_installed_desktop_file, self.desktop_file_name) def launch_application(self): arch = subprocess.check_output( ["dpkg-architecture", "-qDEB_HOST_MULTIARCH"]).strip() self.app = self.launch_test_application( os.path.join('/usr/lib', arch, 'qt5/bin/qmlscene'), '-I' + _get_module_include_path(), self.test_qml_file_path, '--desktop_file_hint={0}'.format(self.desktop_file_path), emulator_base=emulators.UbuntuUIToolkitEmulatorBase, app_type='qt') self.assertThat( self.main_view.visible, Eventually(Equals(True))) def tearDown(self): super(ClickUpdateManagerTestCase, self).tearDown() # We can't delete the desktop file before we close the application, # so we save it on an attribute to be deleted on tear down. if self.local_desktop_file_path is not None: os.remove(self.local_desktop_file_path) @property def main_view(self): return self.app.select_single(emulators.MainView) click-update-manager-0.1+14.04.20140306/tests/autopilot/click_update_manager/test_main.py0000644000015201777760000000204412306047726031572 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- """Tests for PageUpdate""" from autopilot.matchers import Eventually from testtools.matchers import Equals import click_update_manager class PageUpdateTestCase(click_update_manager.ClickUpdateManagerTestCase): """Page Update Tests.""" def test_loading_disappear(self): """Check the loading indicator disappears""" loading = self.main_view.select_single(objectName="loadingIndicator") self.assertThat(loading.visible, Eventually(Equals(False))) def test_check_again(self): """Check the loading indicator disappears""" loading = self.main_view.select_single(objectName="loadingIndicator") self.assertThat(loading.visible, Eventually(Equals(False))) retry_button = self.main_view.select_single(objectName="retryButton") self.pointing_device.click_object(retry_button) self.assertThat(loading.visible, Eventually(Equals(True))) self.assertThat(loading.visible, Eventually(Equals(False))) click-update-manager-0.1+14.04.20140306/tests/unit/0000755000015201777760000000000012306050250022035 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/tests/unit/tst_pageupdate.qml0000644000015201777760000002651412306047726025607 0ustar pbusernogroup00000000000000import QtQuick 2.0 import QtTest 1.0 import Ubuntu.Components 0.1 import "../../Components" import "unit_test.js" as UT // See more details @ http://qt-project.org/doc/qt-5.0/qtquick/qml-testcase.html // Execute tests with: // qmltestrunner Item { // The objects QtObject { id: modelItem1 property string packageName: "com.canonical.package1" property string title: "My App1" property string localVersion: "1.0" property string remoteVersion: "1.1" property bool toUpdate: true property string iconUrl: "" property int binaryFilesize: 5000 property bool updateState: false property bool selected: false property string dbusPath: "" property string error: "" } QtObject { id: modelItem2 property string packageName: "com.canonical.package2" property string title: "My App2" property string localVersion: "2.0" property string remoteVersion: "2.1" property bool toUpdate: true property string iconUrl: "" property int binaryFilesize: 5000 property bool updateState: false property bool selected: false property string dbusPath: "" property string error: "" } QtObject { id: modelItem3 property string packageName: "com.canonical.package3" property string title: "My App3" property string localVersion: "3.0" property string remoteVersion: "3.1" property bool toUpdate: true property string iconUrl: "" property int binaryFilesize: 5000 property bool updateState: false property bool selected: false property string dbusPath: "" property string error: "" } property var fakeModel: [modelItem1, modelItem2, modelItem3] PageUpdate { id: pageUpdate } TestCase { name: "PageUpdate" function cleanup() { for(var i=0; i < fakeModel.length; i++) { fakeModel[i].error = ""; } } function test_updatelist_items() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; compare(updatelist.count, 3, "expected 3 items in the list"); } function test_model_0_items() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = []; pageUpdate.updates = 0; var clickManager = UT.findChild(pageUpdate, "clickManager"); clickManager.updatesNotFound(); var retryButton = UT.findChild(pageUpdate, "retryButton"); var labelMessage = UT.findChild(pageUpdate, "labelMessage"); var installAllButton = UT.findChild(pageUpdate, "installAllButton"); compare(retryButton.visible, true, "Retry button should be visible"); compare(labelMessage.visible, true, "Label Message button should be visible"); compare(installAllButton.visible, false, "Install All button should not be visible"); } function test_model_1_item() { var updatelist = UT.findChild(pageUpdate, "updateList"); var clickManager = UT.findChild(pageUpdate, "clickManager"); clickManager.updateAvailableFound(); updatelist.model = [modelItem1]; pageUpdate.updates = 1; var retryButton = UT.findChild(pageUpdate, "retryButton"); var labelMessage = UT.findChild(pageUpdate, "labelMessage"); var installAllButton = UT.findChild(pageUpdate, "installAllButton"); compare(retryButton.visible, false, "Retry button should not be visible"); compare(labelMessage.visible, false, "Label Message button should not be visible"); compare(installAllButton.visible, false, "Install All button should not be visible"); } function test_model_n_items() { var updatelist = UT.findChild(pageUpdate, "updateList"); var clickManager = UT.findChild(pageUpdate, "clickManager"); clickManager.updateAvailableFound(); updatelist.model = fakeModel; pageUpdate.updates = 3; var retryButton = UT.findChild(pageUpdate, "retryButton"); var labelMessage = UT.findChild(pageUpdate, "labelMessage"); var installAllButton = UT.findChild(pageUpdate, "installAllButton"); compare(retryButton.visible, false, "Retry button should not be visible"); compare(labelMessage.visible, false, "Label Message button should not be visible"); compare(installAllButton.visible, true, "Install All button should be visible"); } function test_label_message_updates_not_found() { var clickManager = UT.findChild(pageUpdate, "clickManager"); clickManager.updatesNotFound(); var labelMessage = UT.findChild(pageUpdate, "labelMessage"); var installAllButton = UT.findChild(pageUpdate, "installAllButton"); var loadingIndicator = UT.findChild(pageUpdate, "loadingIndicator"); compare(labelMessage.visible, true, "labelMessage should be visible if there isn't a model"); compare(installAllButton.visible, false, "installAllButton should not be visible if there isn't a model"); compare(loadingIndicator.visible, false, "loadingIndicator should not be visible if there isn't a model"); compare(labelMessage.text, i18n.tr("No updates found"), "labelMessage text doesn't match"); } function test_label_message_credentials_not_found() { var clickManager = UT.findChild(pageUpdate, "clickManager"); clickManager.credentialsNotFound(); var labelMessage = UT.findChild(pageUpdate, "labelMessage"); var installAllButton = UT.findChild(pageUpdate, "installAllButton"); var loadingIndicator = UT.findChild(pageUpdate, "loadingIndicator"); compare(labelMessage.visible, true, "labelMessage should be visible if there isn't a model"); compare(installAllButton.visible, false, "installAllButton should not be visible if there isn't a model"); compare(loadingIndicator.visible, false, "loadingIndicator should not be visible if there isn't a model"); compare(labelMessage.text, i18n.tr("Please log into your Ubuntu One account in System Settings."), "labelMessage text doesn't match"); } function test_check_children() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; for(var i=0; i < fakeModel.length; i++) { updatelist.currentIndex = i; var obj = UT.findChild(updatelist.currentItem, "textArea"); compare(updatelist.currentItem.enabled, true, "Should be enabled"); var colLeft = UT.findChild(obj, "colLeft"); compare(colLeft.children[0].color, "#ffffff", "Should be an enabled color"); compare(colLeft.children[1].visible, true, "Should be visible"); compare(colLeft.children[1].text, "Version: " + fakeModel[i].remoteVersion, "Remote versions don't match"); var colRight = UT.findChild(obj, "colRight"); var mbvalue = "4.88 KiB"; compare(colRight.children[1].text, mbvalue, "Other Mb size expected"); } } function test_check_children_on_update() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; for(var i=0; i < fakeModel.length; i++) { fakeModel[i].updateState = true; updatelist.currentIndex = i; var obj = UT.findChild(updatelist.currentItem, "textArea"); compare(updatelist.currentItem.enabled, false, "Should not be enabled"); var colLeft = UT.findChild(obj, "colLeft"); compare(colLeft.children[0].color, "#808080", "Should not be an enabled color"); compare(colLeft.children[1].visible, false, "Should not be visible"); } } function test_check_children_tracker_error() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; for(var i=0; i < fakeModel.length; i++) { fakeModel[i].updateState = true; updatelist.currentIndex = i; var textArea = UT.findChild(updatelist.currentItem, "textArea"); var progress = UT.findChild(updatelist.currentItem, "progress"); var tracker = UT.findChild(progress, "tracker"); tracker.error(i18n.tr("network error")); compare(updatelist.currentItem.enabled, true, "Should be enabled"); var colLeft = UT.findChild(textArea, "colLeft"); compare(colLeft.children[0].color, "#ffffff", "Should be an enabled color"); compare(colLeft.children[1].visible, true, "Should be visible"); compare(colLeft.children[1].text, i18n.tr("network error"), "Error message doesn't match"); } } function test_check_children_tracker_finished() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; for(var i=0; i < fakeModel.length; i++) { fakeModel[i].updateState = true; updatelist.currentIndex = i; var textArea = UT.findChild(updatelist.currentItem, "textArea"); var progress = UT.findChild(updatelist.currentItem, "progress"); var tracker = UT.findChild(progress, "tracker"); tracker.finished("/path"); compare(updatelist.currentItem.enabled, true, "Should be enabled"); var colLeft = UT.findChild(textArea, "colLeft"); compare(colLeft.children[0].color, "#ffffff", "Should be an enabled color"); compare(colLeft.children[1].visible, true, "Should be visible"); compare(colLeft.children[1].text, i18n.tr("Installed"), "Error message doesn't match"); } } function test_check_children_app_error() { var updatelist = UT.findChild(pageUpdate, "updateList"); updatelist.model = fakeModel; for(var i=0; i < fakeModel.length; i++) { fakeModel[i].updateState = true; fakeModel[i].error = "download error"; updatelist.currentIndex = i; var textArea = UT.findChild(updatelist.currentItem, "textArea"); compare(updatelist.currentItem.enabled, true, "Should be enabled"); compare(fakeModel[i].updateState, false, "UpdateState should be false"); var colLeft = UT.findChild(textArea, "colLeft"); compare(colLeft.children[0].color, "#ffffff", "Should be an enabled color"); compare(colLeft.children[1].visible, true, "Should be visible"); compare(colLeft.children[1].text, "download error", "Error message doesn't match"); var colRight = UT.findChild(textArea, "colRight"); compare(colRight.children[0].text, i18n.tr("Retry"), "Button text should be: Retry"); } } } } click-update-manager-0.1+14.04.20140306/tests/unit/unit_test.js0000644000015201777760000000070712306047726024433 0ustar pbusernogroup00000000000000.pragma library // Find an object with the given name in the children tree of "obj" function findChild(obj,objectName) { var childs = new Array(0); childs.push(obj) while (childs.length > 0) { if (childs[0].objectName == objectName) { return childs[0] } for (var i in childs[0].children) { childs.push(childs[0].children[i]) } childs.splice(0, 1); } return undefined; } click-update-manager-0.1+14.04.20140306/click-update-manager.desktop0000644000015201777760000000034612306047726025305 0ustar pbusernogroup00000000000000[Desktop Entry] Name=Update Manager Comment=UpdateManager for Click packages Exec=/usr/bin/qmlscene $@ /usr/share/click-update-manager/updatemanager.qml Icon=update_manager_icon Terminal=false Type=Application X-Ubuntu-Touch=true click-update-manager-0.1+14.04.20140306/CMakeLists.txt0000644000015201777760000000161612306047726022476 0ustar pbusernogroup00000000000000project(click-update-manager) cmake_minimum_required(VERSION 2.8) include(GNUInstallDirs) set(CLICK_UPDATE_MANAGER_DIR ${CMAKE_INSTALL_DATADIR}/click-update-manager) file(GLOB QML_JS_FILES *.qml) install(FILES ${QML_JS_FILES} DESTINATION ${CLICK_UPDATE_MANAGER_DIR}) install(DIRECTORY Components DESTINATION ${CLICK_UPDATE_MANAGER_DIR}) install(DIRECTORY js DESTINATION ${CLICK_UPDATE_MANAGER_DIR}) install(FILES click-update-manager.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) install(DIRECTORY icons/hicolor DESTINATION DESTINATION ${CMAKE_INSTALL_DATADIR}/icons FILES_MATCHING PATTERN *.png) install(DIRECTORY icons/ubuntu-mobile DESTINATION DESTINATION ${CMAKE_INSTALL_DATADIR}/icons FILES_MATCHING PATTERN *.png) add_custom_target(check COMMAND xvfb-run -s '-screen 0 640x480x24' -a qmltestrunner -input ${CMAKE_CURRENT_SOURCE_DIR}/tests/unit ) add_subdirectory(tests/autopilot) click-update-manager-0.1+14.04.20140306/icons/0000755000015201777760000000000012306050250021027 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/ubuntu-mobile/0000755000015201777760000000000012306050250023616 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/ubuntu-mobile/apps/0000755000015201777760000000000012306050250024561 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/ubuntu-mobile/apps/144/0000755000015201777760000000000012306050250025071 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/ubuntu-mobile/apps/144/update_manager_icon.png0000644000015201777760000001713512306047726031610 0ustar pbusernogroup00000000000000PNG  IHDR2>bKGD pHYsUGtIME 0cIDATx}oǙﯺ{^7Q7x1%8㜇!H6އ d_p y9AYx^%Y^_{I,ʲd)DI~ gkĚ4g{F?fwկ]IRf} t8rH=>GȺM BdBD$I!Voa 8*IFQ !$IU$`ߞ$I{'IR)IҲ$I !+UIV<og~ hRlgܬu^=`prw$I#r{V( ` !mtC}vID޳IJ/$e(7_{oW_}_R0^9^t9t:LtZx]4:9v׀uMQLO]kT*# Df((˨T*ER nBEˋ1CEEhQA4k0A"@GGB(5oƑ PcXeE"ϛ3^XOR`"b}pmU5N)E"@OOzzzu6/ 9L3U5gDʿ@%NS< VOA9rP4"ic dmll`oo5|Y|0Q<z-v zCn$ь6wʛ9IT*V6VtRRai/b!v qItvvF8]cxZR 8L 5EN=:u Dzju]cuFŰV?kL؅ iZ_ ۨixd2anM R=5LXahh~( HT֛D5*ŬcEIe ejz@ P(H$bj:G4MR5xBR:tK;u 񳳳T*\-G)$IP ͛[2V"տ?_ /Bn* QI066p8,,W7o\.;jx<+DU*XZZj-*z;xD 8}tݘSc>>!oo,JFFF5\<GP0hɩTKYWA6Fr͎3UXxcǎn Ǐ?~MQj#,.." ׯ_фj} H,׏;/|Kg*PwraSݬm3I-(F$-K.B_")"[C[D$ hK}'I7kPJq7;ctt%4f6"˲줔ȉdlbV]Vw1>i&Nɉ'д L)E<GCQDu,;efeJ)N:Ѧh"J)v W^mJȁR8qµœI~"`1n4i]]]i'pddOTh/r3>w)aB)dzZ8 L,#bNǏA}}}ꙨF"zy_O4UHm祜"%4f#Eݻw}>W^z=M055j!^F@r!D퍍  M!Z"&&&|Bv/ je߽6_pcccѣ7䉔RW50˲B._9^ZZ?My+JZzH;^<Ԙ16@$q /WTr{ F)u&~ߠX hHpP`:ү/3rGP@XD>G>6ȈuRr,,ׇ?\F׫"M$ݍK.|MYf4;^yV- B\M`0X]DD6;&zؓE#,.3UU[:j2::*n^\bKMUd,GQ!R؊_J}q;QܔkH䚜lv֧)PJ]Ϫf ;R MPT;^[ _4 BB BFUUT*Mr5D M011}DA6=pwCyZi!'z$W/ixlO ҢЃ2J}Ʌ zm7_zm7FsǴ@ y80<6Tu!RgJvvvR>@ivww}Ʌvvvv;^ptm}^}ڪ4V4 $p)cfp҈~*a|+_m4 X]]i=8Hh )''z"_^wVj㾍 KPÉ$Q' lQT*3ծzOa777Q,k<)gץx]rRUH'|/aTu%7 +~ =W(lʕ1??rkǷĉUcyo(Ju1/':+@ 8>|ؒ!5l$6Ԝia /r& } "Q3LlJ`L'eh>_t Bպ,3öJZ7"Nh Ĵ,~ [u2{gV/+O`_EBO yˮ4? XM +[J]#x:}Je]UcO<D-G)0^)x`rr/4dY>ԩzmb+++nu7qᡪ#W^y ^y B{O >|)G4MC<( 7ex"b* zzzP*uLMMUk͈|g1"8U<,|wW^?l@ j"yx&gΜ>|u$  DM'nJ%.brr:OOFTzQmgJH&6_zݠX´r׮]3UR?~Νk%dY nݺBʡPgϞő#Gfy{aiizEuZ]7`/d^?nkG[@266heBp=ya`" ԩSH&1p%\W$LNNBAB= 777ڛ8N$< ~>cggg1??p8K.9^(R ׯ_wQR)$CZ^z bvvbdZէ߻wa-PD>l166&Lj)hu~ p]"0^dߞI.iTG/Ų89g[P;ww}7˸%/spo91g s.Bw*Lk,L&qf00F"֍L.>4V.?#݌\^^Fww7\~"ED Rk)^.ˣVWWC_ΫtO~%O/ DkkkT*DƉC.; # aqqIOid2T*Slf2\KCޒ #ݻn ]vʁf&Yh&JR\.2 Ө~X'`QP[ljglR\.Ns0tf"+dZ?ƃ@W$Z+Wn!```I-2gld2^&lJ(\I_;PJ_qP@KΩpt5Vi71OV277ǏsyUv?:pͫd^o;ϫѨ؉ yP zann<=^r"ěle+ sB8|K Oxd\ut(NP\8l0@PǨ~eYF{{;xj:Mf2r\\=&6ĩ>ͦj, k%k IY4ʒ;K1F"@UUcuuqpkp8)@.]G"b1D 02ώ_[[ ׫1SV> Nl6W xp2Qn.VbbD"rPcH}vizF !2$I2 NLJ% lnnb}}: c!؁1ʋ16-Z(!K0c}a)h4P(p8\Mxmb$FvɱklJ3̏DF4}gL>Ј֫;3]~IylW)z|' L9P|;=[Ĕi/]|.UaF bLl| D o7}}GÚ2$>G/>˜[-O>GϢXT0= u8 O:O!c'65jT d}1O>#TDfs*nu}// YQIi 8e"l6[!|6W> ]wU3O !kW.0|%_cybӠ }LC=zI$4|cCvN6\zh1Y0K{0st"{V3,04)_7)`o|vX3C:f)jEpD=]:tQǃm 0l &8dO?) I^hW/y[ K@` M7 a h ,Xf"Ea*bO,0&{`&?@5׏39͂I YPF:v,3uZh1|k̓ rFb|> Q}XN !`%' s} \ ,.[<,=,H-AD˜N O&M\vgr|{ii4RmqbhF(125С4MZ / ֹ{sxZ|$XfTTUTƧXIl%}_rӸc#}F a}3V@ ﹃B:kiME"M6Bݢu.+i\:%,ƾ$(a G7'vkEç>bOxUL>w_?J-A2kɎ.,~ P-6,e`R>36#RGG|`5FAE6}A2mC1J(Wvj;| ߵ!y8 TYQРA´8Ņ7dF Q7uKFeVRK{Q|]vNË@lR, ig6+ޘ?$oc?<9YS)aSUWMfKKb׹ܠ~ L)?l SWWW8 6/DR緰Ayh^3˞na[TXb;5c ܄69O\x5**s ,\mUYDQdt-F\e&hQZL6Nv;+ 9E3޼~Z.GR&Wrk3_I-34:p'BE 01WX[u9 _ˁ0!*Š4nf`7#L+xK)Ŗ\UHBME,Sf 4M=~Eyk% \Sab3ޡZ`5*>9jބk+<%ʻG}i!e 탲O\&Ŷ؊\ 9J. |'oR4rܕc4 ڥh /7%HXc.`Ȍ07cv$72&OY7if )f8[zUDK*aX)(M+D'Ojvz2ŕ:YzV^;r2ٙB6|>=6G-X/>~î5v Ɉcp3"$\c~9 'εy v% gtؼP{ C:9oРB["# x"$ZE[I+R%T Z>]&W .wRo w_*uTPKKm٤i $s|U(Aa0Yo}4xuuvS$_KhD܎x9nY_—S+y9$$ !BA5**8h%h[lCE M  \eu8̘w f #v Oq"#w=a}|(LIa)>m3)f"&q`pĒD ThѢ!NyjXHD7&1L(XFxq~}xCb8"61XLR%^ڡKLgD7+Lb␯8 N|#-e801gR2B'0ԣ޼3Dc<n1ɇP(.mez= 7ULʧڴ-XղBU%K{]z=cΞE')G;CW@W6HLp[t738d.K̏ۃhr:ڭUkB@TdЌb^R$@GAy˼ˍ ]Lt]`Dz>,yeC-t2oOOb}j3@zy4uB!]i~w)cQY~?qo7f܂˼MJ<;S{q6]O=GJK~2G,f:BtB‡t]ɇG\݂%7'! `R4UL(wŀ#8߉x-7,\. ;-}e)'ܻ;8 吞7}"P,r r~gH/ysݨ# CҕP<;Cl@(Iw+%z6Q{K%yL;܀os!>‘< HRz' 9T{8m.Go#??Ҵ ksi6yy^MNǶ<ƿ6 KSK>@L]cID-,MM禺$ meI_:m1:}~{LfT ugU^W:keݙVO%/q8b  MyNdS5eS6բ)[V-"J(!&%&TA:O>=luf>&/G۶%tEXtdate:create2013-09-30T19:00:27-06:00Zz%tEXtdate:modify2013-09-30T19:00:27-06:00ѯtEXtSoftwarewww.inkscape.org<IENDB`click-update-manager-0.1+14.04.20140306/icons/hicolor/256x256/0000755000015201777760000000000012306050250023427 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/hicolor/256x256/update_manager_icon.png0000644000015201777760000002767612306047726030161 0ustar pbusernogroup00000000000000PNG  IHDR|BgAMA asRGB cHRMz&u0`:pQ<bKGD̿ pHYsUG.IDATx{d}?ԭ~wkzޏݙ]N" a'%C``Ę)M?6,"3.vfv^=;'{}ֹU=̭{֭[} JE@PA:4Y`&4hP_CPA GC`c}e^a1wSiFΙ2,gX ˰ql6C͡qhCiƦOhsH O BAzihrɌ7E Jo6"T_S#zM3W5F861Mwb-vΖ&LpK\2Y4$QQ L塳tIGkcc{mqr I.%0x K>x6'x4?'1c|[ܵdό: >C|:%?=S}\J3J>>+DwW4s=~r<pG*QTiOψ3k|[× }6'x_馾LOʖl*3;ڟ`oG~vhu|O3d7o(TJ˓A!E'd0:e-B9$aCEXR@|FúHxl֓u -EG輡^$ŀ,7x/q'7!^AH~ЃEaCB{%ū@ _~s>ɏrv$VSѤB_J',zX-@*>K~lɏxPO F0$_n^UO8*W =!ңK#B&`|!NW/{EYWe jԨ6HVX:IڴuH$>b@-F|㋬%3G'~J1U~\D򃾙g1j>jI4#zK1xEᑱAWwmU0bu<ͽ:^]aP84 h8:2QK}9 P]fP*.-TE~3;B%?L2ESQ4SA,=:9R$_9~8ԡ1Y;. u&~PO6h}8 xH%_o_UW$;* 1"e~QQyuh0<-8p J~ B*Pq_~J'P0I)V$OnQ"tW1H١şxTWdl ,0"(Hu@ 2GI^MouW䫤]$LE Q~2wLqX#<&_߰\ +E>Lɏ_!g~cd>FwtŁӄ|Y opeԒo՘gZ$1t= | op&hi,i~_DdE 1EU]>wOuD9&b$&D;j*,1$ߣC~;%?5gi%)>e޳_sjɏw_UiH՗AAm}r?cR8SL ,78[lq8g^RUFs,3Ow#}T2 K~Ȏ 4` b?]/_c9Ww|Q(^uy%xLPgQ/3xpwLH'T,KCvry (.qD .r6 g315| romLŀۘ朝 ^nTҨ,&Q$,r~E*>DpmzNԻq4Wn0o'y9Nj%?*2%H~0MpT N UHatJ{"^f[ 8g\) Wsڙh\,SE8:ʺ:$0Kh-\: %VE{g$gև YޟV 7$y ]1\gEqEAvwNS#k@r  kvlXr<0 ߧ (FJOU7lCHhU5>CKfirlN9GO66b1޷^5T|S ^-hnjEN)ֳ|>91, XbMӀ9~6.L֊\}u#hb>FSd1iE,\Jv$>0{&/K%I~0 ȍ90 :y4"U(&asRoS)߰a iU~8X"QW/G-Gv$', , ΂iE%?ݳYV0֠+0hA Y#^5"yѠa*Xsw,+i0i3~8 5ԫ%_#g&kwMpaX&M3.?=cgKS<,hi8 졞I }r’ z.odNKZ|c9vZ %IYΰ$fF:m&3ޣ2,a:3A|/T`wrl)=c &:} 8)qO>t9gʪP7 &I8Gd al#YE1Nv&erUZtG}`Ѣ&Y"sF 8&bq.2i(LF.ͰyDk6)D|->trzl=Ns@H 嵌& 瘽2~Ni,`"/~mhp7;U`d/_-x]  `S\f1`7yz&Pa2F,ƂQ q^hA&HiLm/Jmߓ vqUNsZV! XdU$PeM{PȠ7yBQ]b3L 86g G yqA?3i 4McOQ|^?>۹/{lb|-#cA?3t7 &Lc0}R"Vc7z&p{ʊ_2K㡖i0]rvx-SGz) oƎw!^zQqy uk,t-[ g\vm.B$^7)LNUUՋWg꓊Oc9zn uXm~hU~U?)=y9uy60E=.i9fBdkjYlj'YF#$>B7+ۦǝӵà{(iQaz|> :i# -vG$wBq4ƬAuS4K~OW8 t)~ x.-3];_z`4LѰ>2Y <& UNMbdkΠ,̡esMJ~C{6T撞/3\yyɻI'\`JWL!F"^a/pe G>NΎ8 9]B0q@2F zԻxY-EŸ1^He~&Ha wA ]*A/bە S MMCm@" Xɯ%,l1[difxb`9mz xgF@J M]X\(xmB#\WK[қImuq^QHfx!(8&}Wuz_=>%6Vy>,6b`*Ө$"TCƠ5>tz ߅wRQ`P5%? mwQn1`: CDK~8s4HaK\̱(P\F(XTM/uH`^9Sڳij9F!$?uM~_21WyҊ5~DLx'I~j%ǭ-s<[Z5R`> Qjm-EhKӀw4X/uZB#:i2S}w`GZ4ZPEG]-laq=gr+xK(KlXgW |T\堤䚞Q}LqpM;|NBOXjZJJN}ENՀ+i,6[ڿ l%ODr>tEX ,湢##M TtJI3%3,z L ࠤUBj\6N!q4Tl R)֪pYW7NsľE3.GL HXt%4KK0x @~a(@^SM9딲Kb)\,!lQU>W&cd` tѡKxv }??*.CыLΤl;U1rVnH`ly$Y@gFS\"͈QK1g3m_D8.gXrAThgX>.Sخb{R;L*9r2"g ymg oѲQϵҠ!-%trV\7jy}%h,r!nȹJ?JiD?PN| $WKa7nDO|HYܽncrEVb+#XXnv e#58n`qiػ\,VZbƹZ5dj4+ @Wٰ8oiw!c<;t/P!V>!KZ4?pjD`\@ߜAOw5^ YCz& β0BXAPF\  =)x1"`x(0/ Q/'%S\>vKIrFși7,J 3C4ƴɛ''ÉrB2;,р|\ 'HpeJкth.Ț`qnḩ=I>4p4@paD?IJ]Hm;VQsPHZ,XB] J.ZնF^Lpv>dH}PH21f<\*MP$R&Ny0X9_?R5@2U$A䍡#t6K%NƏsJy%vJe\XqK-j`$%68qLΖ0Bϥ~V>y699HK;(,2݃^˹ YJTs@iX>Gtom@4O`PҹƵKUƘ`dV,Y@5v06X/%TJ[[X*Z)$\K -5w8?p9 d}Y| 77h΃BwiRظ"&Xvn vI:SL1uƜlN6B^6Gmж L0KOC;Xb-gTbbRŤ)~x<1tҥCYk)i<7BnTS0 z,UNsd O}\[ͥ hji45BeZ9hja;]Ҕ3p=;ZB0c U1S;N7$Z [SaeB;0K6Gz~ӏgۅTP^Bs@2iCV6peG#XeApFK8xL=d1h),N)UdZfNi ֦$Oa@p^LRo/E\`X!:%0{>/ܯs*SCJ}rapNvlj!մ Z^ak{`? (w})_S!0˙S 08h)Q-~c CMAg,)jv((O|7O`΍gg~ *\6߻Ł_DqkigqN.$ \D`/R 4_M1lklkW<q5eWvvq'HV=nJI&ӔKُB;{W1oy~Y C8ֲ]N'Ǵ쁩GNQtH[37PԎ .dӂUn*^Ni E2ZVbMjZˁ~*β]vj@}~ϦƻsC3 q3k(YiA @dap3jlL['ߢǶ3404 x0`e*8*OWL@{}Y~Qɏ 4 i1YPD}tf[ d-)ޏ9Tx%P|/.N0Hmt@ ;~$2ƋNm*3,+ @C~~ !?<SO,~H|>z;/&O;:-rh`Fi:~QZ?M=2tyo$Ld9k%?\[ LsmkD6A.kMv.Aĉe7 lg\`'A=&\l75ST McA`BYj7٤{b6 +\-vsT <˜=r|"*p*ڿ%`Ӊe~$Spu٬\?2;Î`Ui(#60i9kF ȋ\c :slg]]?oK9 #ՙ OMh; +LbWI0BpeqM#1,8KOo<Ìtyf_F\7,gN ;\D`BYԸyq x@IyγB)=ڦywRL_-׏ x}j1&21[Ԙp r3q(gk\ quCع`y.DWES6 & ӑ_ki%Lu8: [웴 pT3rM`;%^MJmQ<+lUvd*S, &,dž\f8uF0vHc(d0-NF3RW"!Ow0>&,q&5~|8+S\b*!+i$? v k,gjhmu`\ƙ<]Zlƽuα Ni#GgࡳA%V0JeUhpa- 2^aj?#m4t OP؃}xA2\*o=x'dA3vs:kRB1SI_7~%_tk=H15LIReΟQj OBz@V+C6]6Yh\枲š:5$xI~8}Mx̕3b Ї6tS5h>*~{̚/LT)(l;z$X9A,yf{(C^=ߧЪ宁entpXtH6,<%+z)Gyk;\eGv!Mg;ߋ@Iŧd`6)m9}~ɒO!$I~(@J{`mˮCSCB1@#pҨ/V..Y@_V5m] l[4^8,/n'ʏ~bޗ$qTӣWoFoʄ~W?4%fp#t /cNk1yQ\ /s>&9"u?+@݉tKGBoeJ2q fjϮ{y%5d gJ߻RܕyU;)a_ǰ~CJ <]h)28fCU U3L4!v.#hML ;pםo00,69b ٙ_{9W%,n*kN-;ۼ Mw(9b\:O}UϺd4XfPfiU{8f gbRNROq4] @[܀ 3mCz/Kq&-=™dgBGUBk)|?2R7ՃFI~o_cu~#'vGJ=._;) 9шdt߇"xZ6Q=ﰨ\'q;-K|I=T6}+T| #e HR^#9TQ6b7S"XŷQobgL0MJ{|ػyn5[?EZޡ?Un_1DmxnG8ewȵaO?=DCX)8fU8YxiP{Lp&^EDYxf™u8b~Kof0!>z>şX2 \?2`~\৮aPl MOܐ$ߏ5 Δ U+|;mu9`=T0bB=U@|C`}>ҡ >bxPdVpEH Ÿp|ϛUg1&hX,;w8bmJ?2R6LHsubO]leW}G]Q=s\߄a %hb58 ?"=|?Ȋ`u!o3 ҼG6-a8zg |#b56S_U6|+R,[}sLԩSWq[{qĢ1r]_>٢!z*9_dMPF\_bO頝~V~?f:Y]5*T"CCQw{xV;cp/5|Ȓ7RFM1dnW}9mUƑD7ܞ~at:GQ4UI@^;bʉ' 'e0 jA(Î$_z< &nqk5gZ$Wh4O '=L~jܟ@w;~NX 8qu[t'E#||?}?܀ ~cْ$aVnؓաڧLml-7Ͼ6j* ^uE6nIk*A!$^y$|*'Ҹ77g9ilvvr%?k>=WE.5.OX˗%dK~R- /RLrz^^/gU!UKU~]'ahZb%yY^\lP0:%?XI~%Y16co#g4si9'r&MiJ4<E:O|I:fo>lKOF@mUz¨ӐuYgB6\M9IC6d]6hȺluِ5)H!BVR(zq"_Jw3Co:lO6t^48%tEXtdate:create2013-09-30T19:00:27-06:00Zz%tEXtdate:modify2013-09-30T19:00:27-06:00ѯtEXtSoftwarewww.inkscape.org<IENDB`click-update-manager-0.1+14.04.20140306/icons/hicolor/64x64/0000755000015201777760000000000012306050250023261 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/icons/hicolor/64x64/update_manager_icon.png0000644000015201777760000000503312306047726027772 0ustar pbusernogroup00000000000000PNG  IHDR@;aDWgAMA asRGB cHRMz&u0`:pQ<bKGD̿ pHYsUGIDATXÍr?t70WRÛIH -Q˩ĉWJ2+heRHى؎IYHHAwg TU 8hN}HZ;%,@ <,ܵH@!H-Cʁ?}W-aG99}(eW333: :>D(w- o;1J$ ypzP<`1P{ bY;})|o$5ZѢwMȐ څ@9x ~^V-7^EOE'd0DrJ7SMr<+,w }Xlr[,|MVYK(H`$&S&s! 7Jt^ Xu Gh5+&ny,Ur<_:e&H|0qbaDg:DU5RðCXI<6ZkD:k>}%0m<)C?f3YY:.{oyg+6a n7/x3&P@]='>/=:Yl@")')0Aۂ1"۲O d0o5jԩSyι <XvX/kcv3$`\jhX5nzciqҐͧ\sB`H/>4];;ܯ4Srn‰_!Y٠c%ik0"[`#S͵D3 "}& VgPQPNjktJ_F$l!b jD|ɸd mvJzvNE+2Fp벑vݒ^jY Eqoj2W19 4rZ#sC0i_+ k8Ǖl ?U;%3ܲfbs=78$esynC)/KnO &m%{:&<u.(a\ !!=K.+ODUUoM9Mاlz?ۀD+WOd,XUC}E722esgXg񕓪YY92 1CNUIqiwV*N6LDh"" *|BnQ%)/^ "ѱ&g~ >aͽRMx q/49xgQY,ϓM J+ˀ{,1A>>QBpI[ZLXz&k4o9lZ㛔-Rf5F9p$,u6is֪i6S|6C F3&$d˜px@'X` 1P69+_%ǻ&\ɷ|#4}zws\qP [t!$ +,RG3f|< h#tSx(4˚ 4b?*`Kts\Fhe<)3 $["눎=0ct փ.XCg s{&_gLȗ+sS 3^;߱!)_UD L Ϙ%4Κ9Jog}(vֲ=j#0S2a G􉪼c%Yf_L6DDn~$;5ZK)'|@<]`S&~m,8 (@sV۩fDJӄ4Ք&j6"YnpSߊޙE aӳ{z 2dOp Gn '=:ވv&oK^ hRZkЄ 8]9cLjc,)y%tEXtdate:create2013-09-30T19:00:27-06:00Zz%tEXtdate:modify2013-09-30T19:00:27-06:00ѯtEXtSoftwarewww.inkscape.org<IENDB`click-update-manager-0.1+14.04.20140306/updatemanager.qmlproject0000644000015201777760000000173012306047726024652 0ustar pbusernogroup00000000000000/* File generated by Qt Creator (with Ubuntu Plugin), version 2.7.1 */ import QmlProject 1.1 Project { mainFile: "updatemanager.qml" /* Include .qml, .js, and image files from current directory and subdirectories */ QmlFiles { directory: "." } JavaScriptFiles { directory: "." } ImageFiles { directory: "." } Files { filter: "*.desktop" } Files { filter: "Makefile" } Files { directory: "html" filter: "*" } Files { directory: "js/" filter: "*" } Files { directory: "img/" filter: "*" } Files { directory: "css/" filter: "*" } Files { directory: "tests/" filter: "*" } Files { directory: "debian" filter: "*" } /* List of plugin directories passed to QML runtime */ importPaths: [ "." ,"/usr/bin","/usr/lib/x86_64-linux-gnu/qt5/qml" ] } click-update-manager-0.1+14.04.20140306/js/0000755000015201777760000000000012306050250020330 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/js/utils.js0000644000015201777760000000244012306047726022044 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ .pragma library function convert_bytes_to_size(bytes) { var SIZE_IN_GIB = 1024.0 * 1024.0 * 1024.0; var SIZE_IN_MIB = 1024.0 * 1024.0; var SIZE_IN_KIB = 1024.0; var result = ""; var size = 0; if (bytes / SIZE_IN_KIB < SIZE_IN_KIB) { size = (bytes / SIZE_IN_KIB).toFixed(2); result = size + " KiB"; } else if (bytes / SIZE_IN_MIB < SIZE_IN_KIB) { size = (bytes / SIZE_IN_MIB).toFixed(2); result = size + " MiB"; } else if (bytes / SIZE_IN_GIB < SIZE_IN_KIB) { size = (bytes / SIZE_IN_GIB).toFixed(2); result = size + " GiB"; } else { result = bytes + " bytes"; } return result; } click-update-manager-0.1+14.04.20140306/updatemanager.qml0000644000015201777760000000245612306047726023271 0ustar pbusernogroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import "Components" /*! \brief MainView with a Label and Button elements. */ MainView { // objectName for functional testing purposes (autopilot-qt5) objectName: "UpdateManager" // Note! applicationName needs to match the .desktop filename applicationName: "updatemanager" /* This property enables the application to change orientation when the device is rotated. The default is false. */ automaticOrientation: true width: units.gu(60) height: units.gu(80) backgroundColor: UbuntuColors.darkAubergine PageUpdate { id: pageUpdate objectName: "pageUpdate" } } click-update-manager-0.1+14.04.20140306/COPYING0000644000015201777760000010451312306047726020771 0ustar pbusernogroup00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . click-update-manager-0.1+14.04.20140306/Components/0000755000015201777760000000000012306050250022041 5ustar pbusernogroup00000000000000click-update-manager-0.1+14.04.20140306/Components/PageUpdate.qml0000644000015201777760000002143012306047726024611 0ustar pbusernogroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import com.ubuntu.click 0.1 import "../js/utils.js" as Utils Page { id: root title: i18n.tr("Updates") property int updates: 0 onUpdatesChanged: { if(root.updates > 1) { installAllButton.visible = true; } else { installAllButton.visible = false; } } ClickManager { id: clickManager objectName: "clickManager" Component.onCompleted: clickManager.checkUpdates() onUpdateAvailableFound: { labelMessage.visible = false; root.updates = clickManager.model.length; loadingIndicator.visible = false; } onUpdatesNotFound: { loadingIndicator.visible = false; installAllButton.visible = false; labelMessage.text = i18n.tr("No updates found") labelMessage.visible = true; } onCredentialsNotFound: { loadingIndicator.visible = false; installAllButton.visible = false; labelMessage.text = i18n.tr("Please log into your Ubuntu One account in System Settings."); labelMessage.visible = true; } } Button { id: retryButton objectName: "retryButton" text: i18n.tr("Check again") anchors { left: parent.left right: parent.right top: parent.top topMargin: units.gu(2) leftMargin: units.gu(4) rightMargin: units.gu(4) } visible: root.updates == 0 ? true : false color: UbuntuColors.orange onClicked: { loadingIndicator.visible = true; clickManager.checkUpdates(); } } Button { id: installAllButton objectName: "installAllButton" text: i18n.tr("Install %1 Updates").arg(root.updates) anchors { left: parent.left right: parent.right top: parent.top topMargin: units.gu(2) leftMargin: units.gu(4) rightMargin: units.gu(4) } visible: false color: UbuntuColors.orange onClicked: { for(var i=0; i < clickManager.model.length; i++){ var item = clickManager.model[i]; if(!item.selected) { clickManager.startDownload(item.packageName); } } } } ListView { id: updateList objectName: "updateList" anchors { left: parent.left right: parent.right top: installAllButton.bottom bottom: parent.bottom margins: units.gu(2) } model: clickManager.model clip: true delegate: ListItem.Subtitled { id: listItem icon: Qt.resolvedUrl(modelData.iconUrl) enabled: !modelData.updateState height: units.gu(9) Rectangle { id: textArea objectName: "textArea" color: "transparent" anchors.fill: parent anchors.topMargin: units.gu(1) property string message: modelData.error onMessageChanged: { if(message.length > 0) { labelVersion.text = message; buttonAppUpdate.text = i18n.tr("Retry"); modelData.updateState = false; } } Column { id: colRight objectName: "colRight" anchors.top: parent.top anchors.right: parent.right anchors.topMargin: units.gu(1) Button { id: buttonAppUpdate text: i18n.tr("Update") height: textArea.height / 2 onClicked: { modelData.selected = true; clickManager.startDownload(modelData.packageName); } } Label { text: Utils.convert_bytes_to_size(modelData.binaryFilesize) height: textArea.height / 2 anchors.right: parent.right } } Column { id: colLeft objectName: "colLeft" anchors { left: parent.left bottom: parent.bottom top: parent.top right: colRight.left rightMargin: units.gu(1) topMargin: units.gu(1) } Label { anchors { left: parent.left right: parent.right } text: modelData.title color: modelData.updateState ? "gray" : "white" font.bold: true elide: Text.ElideRight } Label { id: labelVersion anchors { left: parent.left right: parent.right } text: modelData.remoteVersion ? i18n.tr("Version: ") + modelData.remoteVersion : "" color: "white" visible: !modelData.updateState elide: Text.ElideRight } } } ProgressBar { id: progress objectName: "progress" width: textArea.width - colRight.width - units.gu(2) height: parent.height / 3 anchors.left: textArea.left anchors.leftMargin: units.gu(1) anchors.bottom: textArea.bottom anchors.bottomMargin: units.dp(5) opacity: modelData.updateState ? 1 : 0 value: 0 minimumValue: 0 maximumValue: 100 DownloadTracker { id: tracker objectName: "tracker" service: "com.canonical.applications.Downloader" dbusPath: modelData.updateState ? modelData.dbusPath : "" onProgress: { var percentage = parseInt(received * 100 / total); progress.value = percentage; } onFinished: { progress.visible = false; buttonAppUpdate.visible = false; textArea.message = i18n.tr("Installed"); root.updates -= 1; } onError: { textArea.message = error; } } Behavior on opacity { PropertyAnimation { duration: UbuntuAnimation.SleepyDuration } } } } } Label { id: labelMessage objectName: "labelMessage" anchors { left: parent.left right: parent.right verticalCenter: parent.verticalCenter margins: units.gu(2) } color: "white" opacity: .9 style: Text.Raised styleColor: "black" wrapMode: Text.WrapAtWordBoundaryOrAnywhere visible: false fontSize: "x-large" linkColor: UbuntuColors.orange onLinkActivated: { Qt.openUrlExternally(link); } } Rectangle { id: loadingIndicator objectName: "loadingIndicator" anchors.fill: parent color: "black" opacity: 0.8 visible: true ActivityIndicator { running: parent.visible anchors.centerIn: parent } MouseArea { anchors.fill: parent } } } click-update-manager-0.1+14.04.20140306/update_manager_icon_fullsize.png0000644000015201777760000007727012306047726026356 0ustar pbusernogroup00000000000000PNG  IHDR'YSsBIT|d pHYsUGtEXtSoftwarewww.inkscape.org< IDATxi$iz#]X(Ӗ/&\$hB٢ 6|2`Ib}0 D0 d^%wwfg9}U]}TUw]yՙGDfDoD=DO?*C6e<\c10 -J2(nh3ZZ}vO=@1VP®.%# #q"l 1;oEWdi)=".TT0Xx;!c5÷Ͽ qb٬F(HAh8J2(vs׿ۿ!4$N!ͦlzk"'Am[t'@wۓnoP%KG॰y/m~mzL ?a}~ &ĉNlp"ݾնUxLؼ7n BO 1d+R| 3r0Ѷ$ͻ}Ym[l?`)VW~18!*/ȇq"@ɒNvyomU{2ӄ+ KIG| @_C ͻ}lqxLؼ۷ cOBő g@Pbqhn_VwV&c|O~~qBQ$~YsÑ ؼۗݾY68d<&>c_??9$|)Õ/B,2&Iw}} _|;ߩBb'lV_5?IlQ02qN6e; ~W8݇H'N__c dn_{k"%Ke<&QlarqL"$H,\.W1KI6e%11ۏN6ʹ~?00B~a [kZ}uT*TUeu.Sl%\}?L.a*="n1)`0H$#2f'q _4Qb>jPVQTsgt$=Ώ w~ߘݐ镓l6 cjCmDݾA$A(B$A03_ jXT*hZ{&yA1a.s31Ud8W[3NÕݾv(B,C,C(Xh6I1Q>jR rZMvd뷵~ .x/˝Հ: $&FWcr\]1Fx%I NV*J%JSfO= ۰f5`Z$g);dn; vI8 k}nOR z}&;B7sdƎM'lv"xXeyoL&L&.2* {~ZQbg Ϥh4(J(j|EIHA\.խ`CajmU{2S0D"@2%|c>:&I4 EEç+i_$yޱᕓl6q-ۏN6;D"@ 0Ч$X՞U*]?"|y [\_CCI6 `Ѱ6=fffJ4 Q2gTчج( (C(&A(^rEvht߇„,w2S,C:F,(Cc>EMvszHRHR(( T*#cYyFаI6 c.CvhvqC*Lw`kO/$HcҳfbB $J-rgF?@„U6Lc+X,b1!وܗ}D\n$ $ eET*CoRH0u_3bgTN_og:xXEߖᘼ^/44<@-13_nG>W#|Z  8>盹\{Ĩ5YݾG& 5nQ(cOz6SM(Jh4B -'ԕl6-RDI~vDdLJneFL"HKQ>W}* ժ8|GISa.iv`D ؇&DHFlY1D"ODJ\"%6t^sLj}AA4 ye0鹀 {4;rf2?&q9Ynn(r!Ncvv^ײeђ J${0ʧjuWmۆ B'r|tƥb1y "ABcO&d-k7Yi͖: 3ozᑸDMZٗig;ӐI|l!O+D!F#j@^1Os]YY^>_#D]a6~TE!-(N>|9)m=ۈa=;;{ilޓcdN999ޞWV O>!\h4}M$) ,< p;i옓o~ !%K3liZ`mm HO/Z'Z^wBOJ!Lqա]X8M V٢3y`6ˍ<1il3NMDy/Űri^|DIO\ΎvvvNx.fM">L'''T*!d6Ɗ؇$B=8̰EffUwZ_'>/^z4M'ͻ}P(5|>BDZ:m.ggGDP>Ǩ!Cd&qosټj~=|ޙ^zx<~y$qH4Xq#~^ 7YNcrV؊`mmm'x3uUUqm[M`0}ICR1uVrްUNl9dͻ}~c.پV9JIn]Ybrfggma߆8R0%Abܾ8VWWkL{)g}jȌ( H$^#A"5Qh6QɴObEEȟ/ '-vvNی1\.|/ Q|:+Pn:-0JtlXmNvz/Dr#DiZA2m,N'| Nc8ѳcZ [͏\|W,*Nai~tl<ҳ5ab7NfD{hݥ >z% 鵝,NZ9::BziX!Z98'Avg=#}x^';Y c T (J!G{_}n*[o1`k=,..Ѳ'e}:=9;e1D""pc&N~~*I$ql=C0ETLj}&H엒3!;xZ(r1Gsi 3`0,-m~'fnn7G|D%FlDQ0要rO ֙h,@D{N1QE> WN~N"1΄/NcfNܲCQ,.."LQE(yLfMəpp1K3vv X̲5+++bcI++u:$ΜG((8>>\;t̉sm~`?EQ-yEv'^ӈ JpttDžh'o/b 'G`u{"ڌ6F~L8ߏd2#ޡq[GcEQ'zf}///wGJ\2gPft[ɪtH9@ pia"}\*'lH{engii DdN/p` Y{`@qٓ3ڜp b4҇1!' *M3[O8!-J477Ҷ>b=Cb h۴0dhdkyN1;;;Ч8k ӈFPUBw(6.:ލN8?1R)*AN{o1CŠ*, 'eh1???0) E`Z .nQ.yBf89?c,#Dy߱ClhQX4>A\&HjVN䣏>r*#Ncؓn/B콶Xԋ>m Z V nRg ~b=0ˇD R # !H H\Zi0vk4 I.zIn7VWWrhO몪\o4T*899ЩZb=3dI$* R ۍuIR3338<^o4xT&>}S\zpDzFLtȎ9==:+ɓ'PDdTJqZi۸}j0TUǏqxx>#*1r/z$v:%AhپVÇCc ޽{D4>r+FNNNh m>VURBMh?aIP(d$ IDATq-ۿwpVi ~+Ov;h4Y! (x1@I)/ '4O>>hڣ 4Mv}|>d2fg*> V~{x}[M,CDR q[vy?2! pzzO^cJ+P oWUիW(JCc VٳgxB1???t](MF?яpML"@٤ʤ a'wFي`ee”A$>n<{z+PzzE\zn.R =£GH$0??99>>Ƨ~jxŲvO?ׯ_Ғm(HR8<<4b~ff1---jLi/^ | Z޽-R$͛7x^~M'B,Lv=i#Nn߾mwKUUܹszinDGGGCq:+':'7NӈD"#}zIt^z5L6߿k׮afff`l>|^a kh888<氰 }ܾ}˔Gnիm@HUU++A%IP(Em<01KW*)_ΎGh4Ky+_nױ5iPUGGGVCq2\.WvpINU^[aXD0ƐL&qpp@# `#Nû}+mM]YgooC۶UUq}٢n˗ݥiT*/ǏŁ˗/&vvv3@,xA f{~~~_~&1BԌ{TNIG0Gn?gϞxSVq=<~X^^t/(yܹ#dفvP&"L:>_|0Iv<.`dUY]aI@h`wwϟ?7}&a=z,--auuՔޟ?;w_#݅DB!jnALDx+N7A^/tq~Vv&߿UU/ `Zbgg/^P&vvv3,,,`}}ݰp]Ce6_;tb-_VNc+'ZVIDhCQ,..BQłFΎmI a E{chZB3vϟ?˗/ƤIt[ EQL&; ,bV'}tz`eĮ~PRw(2~Wauoh7 x6t%Q$޽{4C Ka͛,v^l.1phiEQd. aFLb] JTUn5E0v+ٝcD"ZcSVq]O76~X,E3@{&'_0Gc . -8a>Fwܡu=N'|b[E0'@G譒?fggv fݻwmu" Bn*>St1\.bn6f٢ok CWO,F^xA!|;;;X__&B2{8nYdЋCV.#M!?,BP4H$ppp`WNx q~;Jp$zKm|FDv# E'FKnan$ՖqN?˗/qvv6З BNOO3EHR>/ǜ"G::Z[Aҋ!B$N;_\<5'nod,~HDwLMSQTnK!Jj~w((C3ɨduLtZ yxɍ7Lm(C؃T*e&ztk; V"ivy5bϨN>͛7i5C;p\.%DpMnjE'cq)1ePjec؁@[5DHL3*nI?. >ͦp8ׯ_l0Bl}]K3wFe^PRؓZjNƯs"Z͠Ͱ;c/Qbv#PxED:?x !6N&z2bEvZ|'`| p B!1-!.>l8?:eN.JD.^'> ~H2x>.Ef܅(0Ƥ\ EQ.Waي\*i|Q ftWM F-z5ݏ q!a2N{D"p\ Q Pd\.|_WU"aBU(B2Jl/{m2~0 ckkw077(` x qc` (rH$;,--!J&pݴtEuL;dB޸\.̊qu& أ[0vi(ess6+S=!aO/aV<k2HNCwN?Խc/HLcL1`GĊG(*H \|$Pls{@d:kb<UAvg lk$H h6`~{G|HL9֮s"ڣ lՄ~Bn޼; bv釺w+_  u+\.˗/y@ 9;Խ#(^F{%x*$ `|/^1;w{GP^|Sah`,:3Dɸc1ܻw#Lھ;%$Ia1P^rb}Z  %&իWt$ . 7n)ܸqք|>Oݻx>Rr?- *I?T:V֖49P<|fwIȪQ2NԌBuLgjxA~{G<6EQ9kDzʉ6pii6x0>ܝu0lwdN\dϟ?#;;eqa=Z-'-9Qt.ɡҬx0;CHyGӋ u Ov m3 }F &üp8Ua=4 <wikuND ‰1#PU;;; zr 0ʕ+4G0vww*0luNzlAr9J; m2˅ma=TU|w:7rbnQ8$f$Xd2ia؂t:L&; LuNm3 ČtwQpT 6n70J%Ö8)]v IPD,^ꨫ'#|z*02NcʨnVIz4xNNNpzz; -h4eDQao8::P1c'ǎ9'M#q`&?d8% s"N0R͛7 ޲X,; [Ũ$(JðNglU~cx<ð^3a4fG,<#mE^Zp5mbn׮]'a9b܉℮svvr;  x!sss㓓a'5ʼnՌ(ׯCJ_N3qB^HTU%q"to{60lՑN޼yF; ; Y[[: @ׯya+E~ԙ h*&t>!C>Djq"g4t#H$pDp:rr4'T57D"a8J-g'Ҋ]EQ;p4 !s(fCp4kkkBp4PosC9ϑ8!h4P(xX 666xA@0c)4kG29) cñR@ 1l!Qɬ&̀Nd2HR zHRd2p,GGGC;' 8( i"([[[^],C|'O jM:OPyH* * 0lĉá>~"8p$t^Ҏĉá^QۍլY'H'Nn7N֓H$077; Bsssr,I;H)P2~HfQ.QVy(cm0x(:"0lyĉY\\D$H$%a8:?iGƼGPnlnnWX6vd{҉d2Jpʕ+prvd{-dFDDڪ^vZh4N % ayyw,//4"&vvv4oc3rv/<>B׏tGdnQ,qvv|>|>Zfv;<`hP fя~;CKx|FG$pKӃTDQHEP 4?G$2 xBHF^G^GP/ H$Usr8'SNJ\*J{.pڵk dkk _*QU|oquaa v^0.3DӧO}Y]]E0a @n=@NNN?@D"8rrzzҨs; ;DUU<~X M4H%NDSݻ 8)w0Eq0SsTD4帷B; X Ldnnxw"vwwyqߴH%NDRѣG 8Aqׯ_)B )TDibfwxAX@$"0Z-)TG#҇y@p<677+8;;BHs4EA/-a&իWyAp@PrH#NDS$NG0 0,// 8aE˃ ͑4HH]&ɁcVv R Vw]Dʃ"͙TPVO 40R)UUQVyE<8-H qtLt|/wO#CJ B0X]]a!"Eʃ"͑e%ʕ+ bcc^wEt)N4G"҇")\i .n D:ߋE#CIIi01%a ^<8-Hψe%ʕ+R Pfs"Eʃ"͙UE/+ap:Ld~~HwɈt)N4D$DS%aRsa2t7i % *8-Fh"J!Lp2A'&@ ] zTˍH{H#N fggyA؈X,L&; ҈#!&1 &&(V wĉ D IDATT#caa'&" biiw t)N4 ֭̄ eccC[H#NDR")iVWWxAG7"i!qBcxIHRD" L$A*"i!qb"}Y m zbCD:ߋĉ e%CW($IDQa:|/R'& җ]"AU<{!^<8-$NL@/+1%AF&A0"iFZ-!tJfuuU*0t)N4D$xx@h`qqwqEx^a|/Riĉ,@YYYA\BQrH#NT#EQ; 2gbC"R3'&!җ x bV|e)ש YŠ(cijP(P(z]z 9y<6*&FwQ^zzwCQZY;)IDvKyx( xb;:XOgEJǃh4w}פIsNOO*h,FZfFAD#dĉZ-Z-j5Jga=4D;VMIrhFCA#s#qBд= r!6Ȝ'4M;A"L&S2|-8iZҮgsssC yH;k"8zt:M ,0lU@rq"g$U Ad24X_|K-Ndf~~wA8:CoIѐv3H$ a|>v-L@rqPD/tB,8!8!.; ] yMzq"{AZ ˈD"D"ðNkҋzUUya+* >TUʉ *!_ 1FD'FҋVC333 Br$|>0lLUUJ ]a6tя#Hz'z;,-gOi\.d2a؊v-x^!v8Tf( yA,--r:! $r|V EqW PkkkðvcDʼn0y;vcmَ'VK:+Y]]iAc ðzVwcJ `ߒO'02 0l(AXqb(P0AFAU1Mm3n'4X?p }t&n #N̨tvycN:\!bZ<2Bߎ qte!ؒX,d2; lJ<G"-ᕷ&J+Nkgr誇 IdXݥcU8!8q** 0lI*B4A6##NÖT*n6 #gFUI&ٯ 'S@W?Acf2fXd(oG٭ZOUu3;;H$B; l@80lI6|0loh96;Sd2c~:0 ۴1ۆu@v&'ӪA%,)6OM=Fo;ZmGvvZݲ{Bpxxh{=a=ڵkð-VkY:vg;rP4|>\rwA:~?0ldD6ԭ3ڙA4CgJiguݘm3V8vEzF; ۢ( yA`\vfCNA@^ ^UуJl -DDT*E7 Ayɬ*DG\-GWNY !&ΗjtұJێ6UNtni`A ά  ֔eZ-S T9k666hd>A8K3K 3qryl6yak\.xA'v;v鬉Ofj*Io;FVTN qzxakE΅~$~10ʿInA:(bB?~Ǐ N<}91%,:u(~{106VتrVj@ ;A„ J?IJq\!aM!J%':!aBD/O>c W^ ^X,ޮ6UNzVh4xc kkkC"H:vRA^l ۤģ('Ϟ=yAdt.xx +Dɸ{&fsrnQj5ux^ޡXݻ; $`auuՒxVIjT*#yۜۧnqyR^xw ɹ>cXYY1e" ONNDlT9GZuT׸s0p߇C&1l"t j(JenE-!NtNOOg A}6<Td3>NNNF8J2ȦZjj|C1RǴ:An駟>@$Ѽ]IJ2V؂-vKuh"4j>c4 ޡP&>@QvGwM1h{tƚ 7nCeêԭZj ;Ci6QVyBéjOkvT*T*hi@t?GXA.> l00 s||<:3=5DQvZFTƾxo޼A%ĂFO\P62O*dneRZF!,<@*Pfu$Nth4P. y2wAA@Z޽}k7JbOTBV3!xiO}$N& @1ޡL>^~; իWU^[UUyfjͻg4T91VBh4;x  4sA.Hz9==Duh>>'R( rxzNs rzbmh4t[0 :&#c'*ΦZn A]899x DIGGGhZ#*P4ea[wA8==IǮjV'ABrNOO1;;; hY B$zWVKf}ڝp JU/'Rm58kA؊h4*l. ݋@Ll81;M-N$C EHIsüٶ81;M-bP6R a]hZ%珏S=3̶HEP@0HEA2 lA,VE>*F~zgC$NBUաDڵk8>> AB.AQ>ZI/h܅Ĵvα81ZR;B!\rwA#Y^^F(\oOFOOOQ.{hmjn_8F=cʉќ r.'P(eUIz_o6lrb4v c -f,cz*/U,F]ŏfXCZ f>zcdOZ!A3T*T*CI8& ?C BXLUU|888 A&Lڵkkz*spp3 0&=?0Y 'S*2|zZL"F>-!:>Qi@NL({pw(A8@ 0}ڠ GoOXzX x8Ve;vq-+=AȃrbU`u^uIWqhEmc18rroí[zyb wq |/n7o&~qU~[O>0DO61Jw1\}{ڙ.+G_K91D"D@$Gd"e1j%R%)s;=WCo5UV9us׭/ۦ*=焰|>p8,wΉn݂,˨ñX,[n )'LC8ݻw]Sc`0XV h,|FpxY$I͛=K ={Z{G[CU6t'N}9z=qMM1k5<8<9pχu|CC= zk% C4U4U}ݰbOݻVLu|b|SVmvm-q r+./VI$A$LnܸAW/LD"~:n޼9]`poR(?c@`@M|6߿^ 9D3'h6XXXn$n޼ Yl6yc#Dٳgqlll`ssU ߏxjIH$z ?O\92L3l{r'}tEgw'Nha* "='QQݻw]%P @ ˗/cmm oHXZZիWu]E~8ƓO>^{U%}{Pa" Q퓓yKV}[<ȉfNx \s R)W X,۷o#Xn+'DTeayy/^D"oF"<x]!PTaҿ_ G3Sհoifv('PYӼ"Jp-ܽ{Wd&Z8_˗/css4A~… =ʪ-{n(`W^8WY-f=c!!l<1e\D"XZZrbQثx&èΎ+f{8wΟ?H$H/ӻ t~w?OQ[09# Ѿrlhx0c /PoJT x e0Mb-P]$3'Gd~"wgPxEh|8{,Ξ=J}l F8{,VWWG_-z 6-PB^ڽ\_4Q2ΧncggՇvAN#gN4Mcaau'ێj{~~O=O|bt.]|>}i!z BX^^j`f݅6 ڵkw u ʕ+Cg"HV5ͻ6͜LZ xbX,gy?@뮚i}Qbt9~,..buuu :$N@ { #υREw(rTlj+NP(QYҜhDtJ 8P qmk8::u<裮aRQoҵft:=:?T XYY陁udիWt:=t$ <#}z|r+sdߢM3'n # sχ~oe<#E0Ĺsp9TUd2r9 '077,//DkkkLh4/ŋP|\GGG899!&FJ0??R=~3EBkUB!lll0,//?T*فse[l'ŃS9fN܃t9s'|ʕ+Ž{,Au@IDATff׮]"a~~tZbX,QXDWw,ɸ "0666,]I"gGQ:72M6miMZ@qӉZz!,..7q+WV"`ii KKKF*\n/SFXXXi/+ i$$ \v L&sȟZ677h4x`65̉h48::r3xT"z)᭷um4ŵkװ@# aee+++(xWyč7n<^(,(e177-](l:Fa5v>j~Nv;'=bYW$nB(b' ).SOV\\\̓i'< =n{|&ZjpxxBrsC,C<Ғ E)lmY^|9J{hQot6|rdTʵC?Խ1$^Ʈ( * * "fgg{NֻGO{{{8>>ݿ]Zz=ADxJR/8U'`*,2#Jƶ'(1~:F.P,ȶ־&NP,L&';Ĕb[I"hL{([-1V5 | bw3_]&rF}&'"Ll{2ނ6~z͜|>W Xc%J q9c5#qfQEmȉx|>χYޡ7}>E6qvڢl-Nܹ$u9<B;g:>}XNNNˬ`Y`#'@ŗ^z)nON. bjh̉xP(`{{ E_t>w&NW(,,,t/ $iEb<ɟHpǮ~NfYlkl݇uprrEQFmT0lVJ&A:mͻ6֙6ԇyVhOoE)NiqU9M'wKԿp'ba1F؎B9_QX߿l6;v]"0y~Σa3'@gĉ(Jhۘ=lB+BJDXvwwqtt4ioњq#.Rncaa~w8a+v' 3˶S vZ噟y'tŎGj8<<p̉}L{n%F T*Eq3'Gi4888Bp$H/HT*666Pק`kba:iZ8<<fffxC0 bF]tYeGԜJ677l6'˲`[].9' [a6,n 50Ag|D\.]EYBkͻrj8sNM~ar[j\N wU|>~؂OoIm3OxF.VI~"`Nw0qZP(l6Rc@ 3>-De\AS㖜E6.ӔSW0IcRlbqqq0Jq&CхKbSױr<#Jݿ9'@@SD^G&""p>&i=d{_6l[n̩T*acc+"`]_IAGg ewxsr»mX,xv0*2DQm]#Oqq9e2?G$m7;v9yY͗_~97z-+M!< :2Uh7Ê0i=n.39#R,F};yݿ9<';0jFt6гF Lppk 3SVûヒZ6v}'mRNΉbi6888?aU0\z 8 b籵5p+6]X}@M:SC"@2ˍ`G!((BcffFlGXd&6w.iEAs bS,,,LɗV߰.Xl.'D"c?[+3˶8)$OT*=d:GeÏˍ:q(D"ѽ4z^;YY}gbŧhZvͻLDZJJq٨HXl6|>?m7ؼpNL=YK:|)Zv/7wp`[=uA`03g >̬W,3Z̬Ҷ]ʩ΢+2X$͉TǑJdY'6qzױ0S߇b3WQ"bŇE{Frcar2g? ~Ѝ: Ib>Ql]kW;362 鴥Yg-JqL?e31ҹ7J\F*xҬѶ٬}D+p,q)+>,*SN1 7c"GXnZb{{{^ ƻɜ+/Y07sρ a#Q$j`*Jf/Bu?dG짧ёϐt%*ϙYɬ8y > RTPT0;;D"1pwP; /QRHXz%pi*cD%W騘:$`je0(|bH$C왦FDXg^G:!B*Bq$Z>+Y |cg avRr=,o,JVdAeٖ(ߙ򱳿Ft: ]ŒgbNbN0$U "χx"b>&qxxq벶E(A;,c+[9?f`  fgg3)'' 1ccwd2fUB":QlOli$I[lbja=sR lˌ(l˪Wrb8RL&|>vKs,Xi | $N9JJ"Dfn< <;kbD'''d2( emP\)'OYm @Q BH&w/jѵ3hɉ>t:Z6v]EŕE^i:b\3'@G%8!kfrg_'^V> 崏Wrr;k4fd2h6cuz9 $ )09I 1ip5v:m|>DQqDQ|>Į>E)+>NyrrC."3m;a _˲,b5s}Ͻ'2VrR `xx|Y a9ꓗ$?5Sq}lzxeP\YF%-tt͜$IElĔ`vzp L< ([)Wr2+Ȍ(3K2n]ƙS}RN$Z>'2Ƴ9?[K@W)OD6#H,HXqZl6#4 ~"WD>:LgN@F DftD0bXP[xD-v啜$\ǨV(x]/4,d sq$/aqtNnv8F<,BWƵfbDrrVcem2(' enaOxM6BAfD"=BEԢkHXqJ#ˡR]to:9̜$I 4N0g`:DvD03ӫŝ,vKH62NNNprr2TkM̉>Ө]'dYs;M$IQ: ,cA8 ٞ[WTbcgF|Ji֥q69,̮:p~FŞZbY'[Xէ((J'8ΜmN} [gN@g`,BQx<[rFݿH$2Y?8QvgGvJR bR Vk:nM^ɉGzb evvb8IglA' wkN>HG N;}Xl6Q.Q,Q.Q.n'$0ezna 8TCsR{7z_ @ DQj)>W$d| 9ё#3' I Kt85Nn!#}+-3>VڪVVT*VjM΃UNc7w~]9&N@: >XA' @ 0 XBЀh)$Xm48==EV Zf)7.?ؼwž2^K,8ա$I:  ;I9D(ǻmSNlU y2 H0ڨPNZwqw90ŷ;Y7x2 WI>ŮsSNG9)'w4*0~_oD/' IR}ώ;rxoͻɜMȲ\\'NT$I5; 夵yO9yO9鷇&L>)\+NT$I WYk tzp;a{1'M9#'M9#QOɲ}ށXDEg)ooaSNyO9 &(@Xq"I?~E?mT('kb&礵Er(?2 ?ɲ]ށsDE8`]Ŝ6䎜6?^6/,o<+NT$IA.(/t" zʉݿ6)'s6WeYNrrM0aH^e9ǙJq_G1B0Yۼ?d?d&M 2DW?̪<(ʇblm#Bs"N9Eȃr2.a}ރ?vA/_a<,blpn(yʦir2gy WdY  +0: EQr6Ӳ?d?d& :td.HXK_RB\ή|@01aC:'M9#'M9#Q!#ʲ\!q˜>(et\U^UXoHD(pvڼۼX9<6w4eYn k8q{. +\EG@JͻɸͻɜMàx;,x6M8/| Ċj_0t6&<7^NG9#'M9#QqL)y"BdY>'.|HQ3X~`/8("lؼۼtF|Hx|3bf^QƎ*SۢB@9imSNaFAʐcLb&l ç?iŨV:YE?x_}=οkkp8QXxڔ;r-mt.gU}Ϩѿ,T.&bIENDB`