Nicolas Cellier uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-nice.99.mcz==================== Summary ====================
Name: Graphics-nice.99
Author: nice
Time: 18 January 2010, 6:14:01.341 pm
UUID: 9164600d-8d62-e14f-a46f-2e1db921590b
Ancestors: Graphics-nice.98
Use ByteArray literals
=============== Diff against Graphics-nice.98 ===============
Item was changed:
SystemOrganization addCategory: #'Graphics-Display Objects'!
SystemOrganization addCategory: #'Graphics-Files'!
+ SystemOrganization addCategory: #'Graphics-Fonts'!
SystemOrganization addCategory: #'Graphics-Primitives'!
SystemOrganization addCategory: #'Graphics-Text'!
SystemOrganization addCategory: #'Graphics-Transformations'!
- SystemOrganization addCategory: #'Graphics-Fonts'!
Item was changed:
----- Method: PNGReadWriter>>writeFileSignature (in category 'writing') -----
writeFileSignature
+ stream nextPutAll: #[ 16r89 16r50 16r4E 16r47 16r0D 16r0A 16r1A 16r0A ]!
- stream nextPutAll: #(16r89 16r50 16r4E 16r47 16r0D 16r0A 16r1A 16r0A) asByteArray!