[squeak-dev] The Trunk: Monticello-mt.760.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Dec 9 15:26:29 UTC 2021


Marcel Taeumel uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mt.760.mcz

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

Name: Monticello-mt.760
Author: mt
Time: 9 December 2021, 4:26:26.656766 pm
UUID: 254d6724-f790-3d48-a9ff-6714c698ac21
Ancestors: Monticello-mt.759

Makes the "No changes" dialog more descriptive by explaining what was checked, which makes the dialog more self-contained (in a world full of other stuff that tends to distract users.)

=============== Diff against Monticello-mt.759 ===============

Item was changed:
  ----- Method: MCWorkingCopyBrowser>>viewChanges (in category 'actions') -----
  viewChanges
  	| patch |
  	self canSave ifTrue:
  		[patch := workingCopy changesRelativeToRepository: self repository withCache.
  		patch isNil ifTrue: [ ^self ].
  		patch isEmpty
  			ifTrue: [ workingCopy modified: false.
+ 				self inform: ('No changes between your working copy of the package\\	{1}\\ and the repository at location\\	{2}' withCRs translated asText format: { workingCopy packageName asText allBold. self repository description asText allBold })]
- 				self inform: 'No changes' ]
  			ifFalse:
  				[ workingCopy modified: true.
  				(MCPatchBrowser forPatch: patch)
  					label: 'Patch Browser: ', workingCopy description;
  					environmentInDisplayingImage: workingCopy environment;
  					show ] ]!



More information about the Squeak-dev mailing list