The Trunk: Monticello-bp.598.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-bp.598.mcz

commits-2
Bernhard Pieber uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bp.598.mcz

==================== Summary ====================

Name: Monticello-bp.598
Author: bp
Time: 5 August 2014, 9:36:41.563 am
UUID: e5d5434e-e1ab-4fb0-8da5-e934eecc0ba9
Ancestors: Monticello-cmm.597

When checking all packages for changes show the package name in the progress bar so that you know which package is currently checked.

=============== Diff against Monticello-cmm.597 ===============

Item was changed:
  ----- Method: MCWorkingCopy class>>checkModified: (in category 'as yet unclassified') -----
  checkModified: thorough
  "Verify that all working copies with a modified flag are really modified, by comparing them to their stored snapshot. If the 'thorough' argument is true, check all packages, even unmodified ones."
  "MCWorkingCopy checkModified: true"
  | workingCopies |
  workingCopies := self allManagers.
  thorough ifFalse: [
  workingCopies := workingCopies select: [:wc | wc modified]].
  workingCopies do: [:wc | wc checkModified]
+ displayingProgress: [:wc | 'Checking package {1} for changes ...' translated format: {wc packageName}]!
- displayingProgress: 'Checking package changes ...' translated.
- !