[Pkg] Installer: Installer-Core-mtf.247.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Thu Oct 23 23:10:29 UTC 2008


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-mtf.247.mcz

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

Name: Installer-Core-mtf.247
Author: mtf
Time: 23 October 2008, 4:11:36 pm
UUID: bd538b3b-3a6f-49a4-be0f-a27c6b83e3ec
Ancestors: Installer-Core-kph.246

Installer installFile: was broken.
Installer file: was broken
Made the syntax "Installer file install: 'filename'" work

=============== Diff against Installer-Core-kph.246 ===============

Item was added:
+ ----- Method: Installer class>>file: (in category 'file') -----
+ file: fileName
+  
+ 	^ InstallerFile new file: fileName; yourself
+ !

Item was changed:
  ----- Method: InstallerFile>>file (in category 'accessing') -----
  file
  
+ 	^ self package!
- 	^ afile!

Item was added:
+ ----- Method: Installer class>>installFile: (in category 'file') -----
+ installFile: fileName
+  
+ 	^ (self file: fileName) install.
+ !

Item was changed:
  ----- Method: InstallerFile>>file: (in category 'accessing') -----
  file: f
+ 	self package: f!
- 
-   afile := f!

Item was changed:
  Installer subclass: #InstallerFile
+ 	instanceVariableNames: ''
- 	instanceVariableNames: 'afile'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'Installer-Core'!

Item was added:
+ ----- Method: Installer class>>file (in category 'file') -----
+ file
+ 
+ 	^ InstallerFile new!

Item was removed:
- ----- Method: InstallerFile class>>installFile: (in category 'instanciation') -----
- installFile: fileName
-  
- 	^ (self file: fileName) install.
- !

Item was removed:
- ----- Method: InstallerFile class>>file: (in category 'instanciation') -----
- file: fileName
-  
- 	^ InstallerFile new file: fileName; yourself
- !



More information about the Packages mailing list