[squeak-dev] The Inbox: System-ct.1247.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 1 21:04:05 UTC 2021


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1247.mcz

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

Name: System-ct.1247
Author: ct
Time: 1 November 2021, 10:04:00.342754 pm
UUID: 6e390f87-148f-d346-a397-a0b1b38a3d88
Ancestors: System-eem.1244

Enables shout and improves multilingual support when editing a changeset postscript.

=============== Diff against System-eem.1244 ===============

Item was changed:
  ----- Method: ChangeSet>>editPostscript (in category 'accessing') -----
  editPostscript
  	"edit the receiver's postscript, in a separate window.  "
  	self assurePostscriptExists.
  	UIManager default
  		edit: self postscript 
+ 		label: ('Postscript for change set named {1}' translated format: {name})
+ 		shouldStyle: true
+ 		accept: [:string | self postscript: string].!
- 		label: 'Postscript for ChangeSet named ', name
- 		accept:[:aString| self postscript: aString].!



More information about the Squeak-dev mailing list