The Trunk: PreferenceBrowser-mt.106.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: PreferenceBrowser-mt.106.mcz

commits-2
Marcel Taeumel uploaded a new version of PreferenceBrowser to project The Trunk:
http://source.squeak.org/trunk/PreferenceBrowser-mt.106.mcz

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

Name: PreferenceBrowser-mt.106
Author: mt
Time: 17 September 2020, 8:51:08.314726 am
UUID: b9d92cdc-bbf8-6441-bd0a-e3b2a287e934
Ancestors: PreferenceBrowser-mt.105

Let the wizard install FFI through Metacello again to manage different Squeak versions.

Note that the Metacello script was fixed so that it should work for Squeak 5.3, too.

=============== Diff against PreferenceBrowser-mt.105 ===============

Item was changed:
  ----- Method: PreferenceWizardMorph>>installFFI (in category 'actions - packages') -----
  installFFI
 
+ Metacello new
- " Metacello new
  configuration: 'FFI';
+ load.
+ "
- load."
  (Installer squeak)
  project: 'FFI';
  install: 'FFI-Pools';
  install: 'FFI-Kernel';
  install: 'FFI-Tools';
  install: 'FFI-Tests';
+ install: 'FFI-PoolsTests'.
+ "!
- install: 'FFI-PoolsTests'.!