[squeak-dev] The Trunk: Graphics-mt.359.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 10 16:06:34 UTC 2016


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

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

Name: Graphics-mt.359
Author: mt
Time: 10 August 2016, 6:05:57.556211 pm
UUID: a9b47273-1f24-b34f-9925-34f5c749c939
Ancestors: Graphics-mt.358

In the course of fine-tuning window colors for the upcoming release, add the set of traditional mac crayon colors, which only slightly overlap with the existing named colors. Do "Color orderedCrayonColors explore." to check.

=============== Diff against Graphics-mt.358 ===============

Item was added:
+ ----- Method: Color class>>aluminum (in category 'named colors - crayons') -----
+ aluminum
+ 
+ 	^ Color r: 153/255 g: 153/255 b: 153/255!

Item was added:
+ ----- Method: Color class>>aqua (in category 'named colors - crayons') -----
+ aqua
+ 
+ 	^ Color r: 0.0 g: 128/255 b: 1.0!

Item was added:
+ ----- Method: Color class>>asparagus (in category 'named colors - crayons') -----
+ asparagus
+ 
+ 	^ Color r: 128/255 g: 128/255 b: 0.0!

Item was added:
+ ----- Method: Color class>>banana (in category 'named colors - crayons') -----
+ banana
+ 
+ 	^ Color r: 1.0 g: 1.0 b: 102/255!

Item was added:
+ ----- Method: Color class>>blueberry (in category 'named colors - crayons') -----
+ blueberry
+ 
+ 	^ Color r: 0.0 g: 0.0 b: 1.0!

Item was added:
+ ----- Method: Color class>>bubblegum (in category 'named colors - crayons') -----
+ bubblegum
+ 
+ 	^ Color r: 1.0 g: 102/255 b: 1.0!

Item was added:
+ ----- Method: Color class>>cantaloupe (in category 'named colors - crayons') -----
+ cantaloupe
+ 
+ 	^ Color r: 1.0 g: 204/255 b: 102/255!

Item was added:
+ ----- Method: Color class>>carnation (in category 'named colors - crayons') -----
+ carnation
+ 
+ 	^ Color r: 1.0 g: 111/255 b: 207/255!

Item was added:
+ ----- Method: Color class>>cayenne (in category 'named colors - crayons') -----
+ cayenne
+ 
+ 	^ Color r: 128/255 g: 0.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>clover (in category 'named colors - crayons') -----
+ clover
+ 
+ 	^ Color r: 0.0 g: 128/255 b: 0.0!

Item was added:
+ ----- Method: Color class>>eggplant (in category 'named colors - crayons') -----
+ eggplant
+ 
+ 	^ Color r: 64/255 g: 0.0 b: 128/255!

Item was added:
+ ----- Method: Color class>>fern (in category 'named colors - crayons') -----
+ fern
+ 
+ 	^ Color r: 64/255 g: 128/255 b: 0.0!

Item was added:
+ ----- Method: Color class>>flora (in category 'named colors - crayons') -----
+ flora
+ 
+ 	^ Color r: 102/255 g: 1.0 b: 102/255!

Item was added:
+ ----- Method: Color class>>grape (in category 'named colors - crayons') -----
+ grape
+ 
+ 	^ Color r: 128/255 g: 0.0 b: 1.0!

Item was added:
+ ----- Method: Color class>>honeydew (in category 'named colors - crayons') -----
+ honeydew
+ 
+ 	^ Color r: 204/255 g: 1.0 b: 102/255!

Item was added:
+ ----- Method: Color class>>ice (in category 'named colors - crayons') -----
+ ice
+ 
+ 	^ Color r: 102/255 g: 1.0 b: 1.0!

Item was added:
+ ----- Method: Color class>>iron (in category 'named colors - crayons') -----
+ iron
+ 
+ 	^ Color r: 76/255 g: 76/255 b: 76/255!

Item was added:
+ ----- Method: Color class>>lavender (in category 'named colors - crayons') -----
+ lavender
+ 
+ 	^ Color r: 204/255 g: 102/255 b: 1.0!

Item was added:
+ ----- Method: Color class>>lead (in category 'named colors - crayons') -----
+ lead
+ 
+ 	^ Color r: 25/255 g: 25/255 b: 25/255!

Item was added:
+ ----- Method: Color class>>lemon (in category 'named colors - crayons') -----
+ lemon
+ 
+ 	^ Color r: 1.0 g: 1.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>licorice (in category 'named colors - crayons') -----
+ licorice
+ 
+ 	^ Color r: 0.0 g: 0.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>lime (in category 'named colors - crayons') -----
+ lime
+ 
+ 	^ Color r: 128/255 g: 1.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>magnesium (in category 'named colors - crayons') -----
+ magnesium
+ 
+ 	^ Color r: 179/255 g: 179/255 b: 179/255!

Item was added:
+ ----- Method: Color class>>maraschino (in category 'named colors - crayons') -----
+ maraschino
+ 
+ 	^ Color r: 1.0 g: 0.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>maroon (in category 'named colors - crayons') -----
+ maroon
+ 
+ 	^ Color r: 128/255 g: 0.0 b: 64/255!

Item was added:
+ ----- Method: Color class>>mercury (in category 'named colors - crayons') -----
+ mercury
+ 
+ 	^ Color r: 230.0 g: 230.0 b: 230.0!

Item was added:
+ ----- Method: Color class>>midnight (in category 'named colors - crayons') -----
+ midnight
+ 
+ 	^ Color r: 0.0 g: 0.0 b: 128/255!

Item was added:
+ ----- Method: Color class>>mocha (in category 'named colors - crayons') -----
+ mocha
+ 
+ 	^ Color r: 128/255 g: 64/255 b: 0.0!

Item was added:
+ ----- Method: Color class>>moss (in category 'named colors - crayons') -----
+ moss
+ 
+ 	^ Color r: 0.0 g: 128/255 b: 64/255!

Item was added:
+ ----- Method: Color class>>nickel (in category 'named colors - crayons') -----
+ nickel
+ 
+ 	^ Color r: 128/255 g: 128/255 b: 128/255!

Item was added:
+ ----- Method: Color class>>ocean (in category 'named colors - crayons') -----
+ ocean
+ 
+ 	^ Color r: 0.0 g: 64/255 b: 128/255!

Item was added:
+ ----- Method: Color class>>orchid (in category 'named colors - crayons') -----
+ orchid
+ 
+ 	^ Color r: 102/255 g: 102/255 b: 1.0!

Item was added:
+ ----- Method: Color class>>orderedCrayonColors (in category 'other') -----
+ orderedCrayonColors
+ 	"self orderedCrayonColors explore."
+ 	
+ 	^ OrderedDictionary newFrom: (#(cantaloupe honeydew spindrift sky lavender carnation licorice snow salmon banana flora ice orchid bubblegum lead mercury tangerine lime seaFoam aqua grape strawberry tungsten silver maraschino lemon spring turquoise blueberry magenta iron magnesium mocha fern moss ocean eggplant maroon steel aluminum cayenne asparagus clover teal midnight plum tin nickel) collect: [:ea |
+ 		ea -> (self perform: ea)])!

Item was added:
+ ----- Method: Color class>>plum (in category 'named colors - crayons') -----
+ plum
+ 
+ 	^ Color r: 128/255 g: 0.0 b: 128/255!

Item was added:
+ ----- Method: Color class>>salmon (in category 'named colors - crayons') -----
+ salmon
+ 
+ 	^ Color r: 1.0 g: 102/255 b: 102/255!

Item was added:
+ ----- Method: Color class>>seaFoam (in category 'named colors - crayons') -----
+ seaFoam
+ 
+ 	^ Color r: 0.0 g: 1.0 b: 128/255!

Item was added:
+ ----- Method: Color class>>silver (in category 'named colors - crayons') -----
+ silver
+ 
+ 	^ Color r: 204/255 g: 204/255 b: 204/255!

Item was added:
+ ----- Method: Color class>>sky (in category 'named colors - crayons') -----
+ sky
+ 
+ 	^ Color r: 102/255 g: 204/255 b: 1.0!

Item was added:
+ ----- Method: Color class>>snow (in category 'named colors - crayons') -----
+ snow
+ 
+ 	^ Color r: 1.0 g: 1.0 b: 1.0!

Item was added:
+ ----- Method: Color class>>spindrift (in category 'named colors - crayons') -----
+ spindrift
+ 
+ 	^ Color r: 102/255 g: 1.0 b: 204/255!

Item was added:
+ ----- Method: Color class>>spring (in category 'named colors - crayons') -----
+ spring
+ 
+ 	^ Color r: 0.0 g: 1.0 b: 0.0!

Item was added:
+ ----- Method: Color class>>steel (in category 'named colors - crayons') -----
+ steel
+ 
+ 	^ Color r: 102/255 g: 102/255 b: 102/255!

Item was added:
+ ----- Method: Color class>>strawberry (in category 'named colors - crayons') -----
+ strawberry
+ 
+ 	^ Color r: 1.0 g: 0.0 b: 128/255!

Item was added:
+ ----- Method: Color class>>tangerine (in category 'named colors - crayons') -----
+ tangerine
+ 
+ 	^ Color r: 1.0 g: 128/255 b: 0.0!

Item was added:
+ ----- Method: Color class>>teal (in category 'named colors - crayons') -----
+ teal
+ 
+ 	^ Color r: 0.0 g: 128/255 b: 128/255!

Item was added:
+ ----- Method: Color class>>tin (in category 'named colors - crayons') -----
+ tin
+ 
+ 	^ Color r: 127/255 g: 127/255 b: 127/255!

Item was added:
+ ----- Method: Color class>>tungsten (in category 'named colors - crayons') -----
+ tungsten
+ 
+ 	^ Color r: 51/255 g: 51/255 b: 51/255!

Item was added:
+ ----- Method: Color class>>turquoise (in category 'named colors - crayons') -----
+ turquoise
+ 
+ 	^ Color r: 0.0 g: 1.0 b: 1.0!



More information about the Squeak-dev mailing list