[squeak-dev] The Trunk: MonticelloConfigurations-mt.170.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Dec 2 15:09:24 UTC 2021


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

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

Name: MonticelloConfigurations-mt.170
Author: mt
Time: 2 December 2021, 4:09:23.873715 pm
UUID: c5da41de-7a1d-dc43-a5c7-47ac7387de1a
Ancestors: MonticelloConfigurations-mt.169

Minor cosmetic tweak in the update dialog.

Now that we can set the font size (and color) in dialogs, make the font for that ALPHA/BETA/RC-Warning smaller.

=============== Diff against MonticelloConfigurations-mt.169 ===============

Item was changed:
  ----- Method: MCMcmUpdater>>updateMessageFor: (in category 'private') -----
  updateMessageFor: previousUpdateLevel
  
  	^ ('Update completed.<br><br>Version: {1}<br>Update: {3}<b>{2}</b><br><br>Url: <a href="{4}">{4}</{10}><br>Map: ''{5}''<br>CI status: <a href="{8}"><img src="{7}" /> {9}</{10}>{6}' translated format: {
  			SystemVersion current version.
  			SystemVersion current highestUpdate.
  			previousUpdateLevel = SystemVersion current highestUpdate
  				ifTrue: ['']
  				ifFalse: [previousUpdateLevel asString, ' -> '].
  			self repository.
  			MCMcmUpdater updateMapName.
  			SystemVersion current description ifEmpty: [''] ifNotEmpty: [:d |
+ 				'<br><br><font face="{2}" size="{3}">{1}</font>'
+ 					format: {
+ 						d copyReplaceAll: String cr with: '<br>'.
+ 						Preferences standardButtonFont familyName.
+ 						Preferences standardButtonFont pointSize.
+ 					}].
- 				'<br><br>', (d copyReplaceAll: String cr with: '<br>')].
  			SystemVersion current ciStatusBadgeUrl.
  			SystemVersion current ciStatusPageUrl.
  			SystemVersion current ciStatusTimestamp ifNil: ['(build inaccessible!!)' translated].
  			"mt: Avoid triggering the Windows Defender. See http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217346.html"
  			'a'.
  				}) asTextFromHtml!



More information about the Squeak-dev mailing list