summaryrefslogtreecommitdiff
path: root/UpdateManager
AgeCommit message (Collapse)AuthorFilesLines
2006-09-27* Fixed a missing importSebastian Heinlein2-8/+9
* Hopefully some strings can now be translated * Wording: Normal -> Distribution updates, to better separate them from the third party updates
2006-09-27* Make some strings translatable - seems that gettext doesn't like beingSebastian Heinlein3-10/+11
part of string addition. the other one was my fault and not the one of gettext. fix #62519 and #62458 * Fix the imports and calls of human_size
2006-09-27* move the humanize_size method to common.utilsSebastian Heinlein3-25/+28
* make the strings in the download progress less cryptic for the translators - fix #62494 * Remove the "unkown speed" - just don't display any
2006-09-25* merged from glatzor (place the cancel button inside the text area)Michael Vogt1-2/+5
2006-09-24* place the cancel button into the changes textview Sebastian Heinlein1-2/+5
2006-09-23* DistUpgrade/DistUpgradeCache.py:Michael Vogt1-1/+1
- fix in clear() * UpdateManager/UpdateManager.py: - fixes in the new DistUpgrader code
2006-09-19* DistUpgrade/DistUpgradeCache.py, UpdateManager/UpdateManager.py:Michael Vogt1-0/+4
- filter out python-apt warnings * UpdateManager/UpdateManager.py: - make sure that src_ver is always initialized
2006-09-18* typo fixes (thanks to Bruce Cowan)Michael Vogt1-1/+1
2006-09-16* bugfixes for the non-interactive modeMichael Vogt2-6/+9
2006-09-13* removed brandingMichael Vogt1-7/+6
2006-09-12* merged with glatzorMichael Vogt3-61/+13
2006-09-12* UpdateManager/UpdateManager.py:Michael Vogt1-1/+4
- make sure to always have a srcver
2006-09-12* improve wording of the context menu for updates: select is for a glatzor@ubuntu.com1-2/+2
selection and not for check buttons
2006-09-12* Remove the obsolete Enabled property completely from the codeglatzor@ubuntu.com1-8/+4
2006-09-12* Remove the SourceEntryTemplates since they are obsolete now - theyglatzor@ubuntu.com1-51/+0
have only been in use by the former add dialog
2006-09-11* Reuse the base_uri, match_uri and valid_mirrors property of the parentglatzor@ubuntu.com1-0/+7
suite, if it was not declared explicitly for a child suite * remove the obsolete enabled property from the channel templates
2006-09-11* merged from glatzorMichael Vogt1-4/+13
2006-09-11* do not allow to toggle deactivated updates by row activationglatzor@ubuntu.com1-1/+5
2006-09-11* Gtk seems to require that you set the activatable property of a cellglatzor@ubuntu.com1-3/+5
renderer explictly to True if there is one with False * Rebuild channel templates
2006-09-11* merged with glatzorMichael Vogt1-3/+4
2006-09-11* merged from sebastianMichael Vogt1-39/+28
* fix bug in the "sort-by-origin" code
2006-09-11* use the update manager desktop file instead of the synaptic one, whenglatzor@ubuntu.com1-3/+4
we call synapitc - the user doesn't need to know that we use synaptic for the installation process
2006-09-11* use a different label for the cache progress dialog if it gets glatzor@ubuntu.com1-3/+4
reinitiated * clear the store after the long caching process to reduce visual noise * move the check_all_updates_installable call into fillstore itself
2006-09-11* show not installable updates as disabled in the update listglatzor@ubuntu.com1-4/+8
* also check for non installable updates after an "apt-get update"
2006-09-11* Move the "run full dit upgrade" dialog into the UpdateManager class -glatzor@ubuntu.com1-32/+14
to avoid spliting the UI stuff into several classes * Use a glade based dialog with better buttons instead of yes/no * Improved wording
2006-09-10* added new "MirrorsFile" keyword for the DistInfo TagfileMichael Vogt2-5/+23
* look for mirros as well when matching distros
2006-09-09* UpdateManager/Common/aptsources.py:Michael Vogt1-40/+42
- fix "add_component" to correcly add components even under difficult conditions * tests/data/sources.list.testDistribution: - changed the sources.list to make it sufficiently difficult for aptsources * tests/test_aptsources.py: - added other testcase for add_component()
2006-09-07* merged with glatzorMichael Vogt1-7/+26
2006-09-07* only add a component to a source once if the repo is splitted intoglatzor@ubuntu.com1-3/+22
more than one apt line
2006-09-06* tests/test_aptsources.py:Michael Vogt1-1/+4
- added another test for the "Distribution()" class
2006-09-06* UpdateManager/Common/aptsources.py, tests/test_aptsources.py:Michael Vogt1-0/+12
- fix test-case-failure in aptsources.py when compents are added
2006-09-06* UpdateManager/UpdateManager.py:Michael Vogt1-66/+68
- use the apt.Cache() to display if a certain package is marked for upgrade or not
2006-09-05* tests/test_aptsources.py:Michael Vogt1-0/+8
- added unittest code and implement some basic tests for the aptsources.py code * UpdateManager/Common/aptsources.py: - added __eq__ method to SourceEntry
2006-09-05* DistUpgrade/forced_obsoletes.txt:Michael Vogt1-26/+19
- no longer needed, part of DistUpgrade.cfg now * DistUpgrade/mirrors.txt, DistUpgrade/removal_blacklist.txt: - renamed for consitency * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgradeCache.py: - added "RemovalBlacklistFile" instead of hardcoding it * DistUpgrade/DistUpgradeConfigParser.py: - added "datadir" to constructor * DistUpgrade/DistUpgradeControler.py: - added datadir * DistUpgrade/DistUpgradeView.py: - added "hideStep()" method - added STEP_PREPARE, STEP_MODIFY_SOURCES, STEP_FETCH_INSTALL, STEP_CLEANUP, STEP_REBOOT * DistUpgrade/DistUpgradeViewGtk.py: - implemendted hideStep() - added datadir arguemnt for constructor * dist-upgrade.py - run it with the "." as arguemnt for the config * UpdateManager/UpdateManager.py: - if it can't be updated, ask about a dist-upgrade instead * update-manager. - added --dist-upgrade * po/*.po - make update-po
2006-09-04* merged from SebastianMichael Vogt1-4/+7
2006-09-02* Fix #58453: handle disabled child sources correctlyglatzor@ubuntu.com1-4/+7
2006-08-29* DistUpgrade/DistUpgradeControler.py:Michael Vogt1-2/+2
- if run in CDROM mode and the cd fails to mount, fail * UpdateManager/Common/aptsources.py: - from DistInfo import DistInfo (relative now instead of absolute)
2006-08-28* merged with the ~ubuntu-core-dev branchMichael Vogt1-2/+3
2006-08-28* merged with mvo devel branchMichael Vogt1-7/+7
2006-08-24* properly added -proposedMichael Vogt1-2/+3
2006-08-24* merged with the latest uploadMichael Vogt1-2/+31
2006-08-24* merged from glatzorMichael Vogt1-7/+31
2006-08-15* DistUpgrade/DistUpgradeControler.py:Michael Vogt1-7/+7
- always enable "main" on upgrades, this ensures that we do not end up with a system without the main archive (various bugs for breezy->dapper) * data/channels/Debian.info, data/channels/Ubuntu.info: - added pre-generated files (required for the upgrader) * UpdateManager/Common/aptsources.py: - add a "matcherPath" parameter to SourcesList (for the upgrader)
2006-08-15* UpdateManager/UpdateManager.py:Michael Vogt1-5/+7
- print the error when dbus fails - send org.gnome.PowerManager.Inhibit before applying upgrades
2006-08-15* merged from glatzorMichael Vogt1-7/+58
* send Inhibit command to gnome-power-manager when applying updates
2006-08-11* no need to convert the path to a string in call of toggledglatzor@ubuntu.com1-2/+8
* support row activation (pressing space) to toggle updates
2006-08-10* Convert the download size to a nice and well readalbe unitglatzor@ubuntu.com1-5/+23
2006-08-07* merged with glatzorMichael Vogt1-1/+47
2006-08-07* finalized changelogMichael Vogt1-1/+0
2006-08-07* Allow to select all or none update - fixes #42296glatzor@ubuntu.com1-1/+47
* Do not set the cursor by default in the treeview sources - fixes #54046