[squeak-dev] The Trunk: ToolBuilder-Kernel-mt.164.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 15 14:43:51 UTC 2023


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

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

Name: ToolBuilder-Kernel-mt.164
Author: mt
Time: 15 March 2023, 3:43:50.929667 pm
UUID: 4bf54839-c35e-514b-bd06-1e88a2fcc023
Ancestors: ToolBuilder-Kernel-mt.163

Clean up EToys dependency.

=============== Diff against ToolBuilder-Kernel-mt.163 ===============

Item was added:
+ ----- Method: ProgressInitiationException class>>display:during: (in category 'signalling') -----
+ display: aString during: workBlock 
+ 	"Show progress bar; the position should be standardize from 0 to 1"
+ 	"ProgressInitiationException display: 'progress' during: [:bar | 
+ 		0 to: 1 by: 0.1 do: [:x | bar value: x.
+ 			(Delay forMilliseconds: 100) wait]]"
+ 	^ self new
+ 		display: aString
+ 		at: Sensor cursorPoint
+ 		from: 0
+ 		to: 1
+ 		during: workBlock!



More information about the Squeak-dev mailing list