[Vm-dev] VM Maker: VMMakerUI-mt.38.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jun 30 13:01:51 UTC 2021


Marcel Taeumel uploaded a new version of VMMakerUI to project VM Maker:
http://source.squeak.org/VMMaker/VMMakerUI-mt.38.mcz

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

Name: VMMakerUI-mt.38
Author: mt
Time: 30 June 2021, 3:01:50.858141 pm
UUID: a1b136c4-ecdf-284c-91da-d1427695bc02
Ancestors: VMMakerUI-eem.37

Adds updater and update entry to Squeak menu in world-main docking bar. Needs Morphic-mt.1775 to show up. Uses update map "update.oscog" for the update.

=============== Diff against VMMakerUI-eem.37 ===============

Item was added:
+ ----- Method: TheWorldMainDockingBar>>updateVMMaker (in category '*VMMakerUI-updater') -----
+ updateVMMaker
+ 	<updater: 'Update VMMaker'>
+ 
+ 	| updater |
+ 	updater := MCMcmUpdater
+ 		updateMapNamed: 'update.oscog'
+ 		repository: 'http://source.squeak.org/VMMaker'.
+ 	updater lastUpdateMap ifEmpty: [
+ 		"If this is the first time that you use the updater, start at 5.mcm to avoid loading old code."
+ 		updater lastUpdateMap at: updater repository put: 5].
+ 	updater doUpdate: true.!

Item was added:
+ (PackageInfo named: 'VMMakerUI') postscript: 'TheWorldMainDockingBar updateInstances. "Adds updater for VMMaker to Squeak menu"'!



More information about the Vm-dev mailing list