The Trunk: System-bf.323.mcz

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

The Trunk: System-bf.323.mcz

commits-2
Bert Freudenberg uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-bf.323.mcz

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

Name: System-bf.323
Author: bf
Time: 30 April 2010, 1:07:04.646 am
UUID: cf1cf12c-ec20-4a02-8983-2b2b4a651bed
Ancestors: System-ul.322, System-sbw.320

Merge System-sbw.320: Sets default condition for Annotations Preference to true if undefined.


=============== Diff against System-ul.322 ===============

Item was changed:
  ----- Method: Preferences class>>lexiconWindowColor (in category 'standard queries') -----
  lexiconWindowColor
  ^ self
  valueOfFlag: #lexiconWindowColor
  ifAbsent: [Color
+ r: 0.878
+ g: 1.0
+ b: 0.878]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>instanceBrowserWindowColor (in category 'standard queries') -----
  instanceBrowserWindowColor
  ^ self
  valueOfFlag: #instanceBrowserWindowColor
  ifAbsent: [Color
+ r: 0.806
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>annotationPanes (in category 'standard queries') -----
  annotationPanes
  ^ self
  valueOfFlag: #annotationPanes
+ ifAbsent: [true]!
- ifAbsent: [false]!

Item was changed:
  ----- Method: Preferences class>>fileListWindowColor (in category 'standard queries') -----
  fileListWindowColor
  ^ self
  valueOfFlag: #fileListWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 0.8
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>debuggerWindowColor (in category 'standard queries') -----
  debuggerWindowColor
  ^ self
  valueOfFlag: #debuggerWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 0.8
+ b: 0.8]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>defaultWindowColor (in category 'standard queries') -----
  defaultWindowColor
  ^ self
  valueOfFlag: #defaultWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>workspaceWindowColor (in category 'standard queries') -----
  workspaceWindowColor
  ^ self
  valueOfFlag: #workspaceWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 1.0
+ b: 0.8]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>classCommentVersionsBrowserWindowColor (in category 'standard queries') -----
  classCommentVersionsBrowserWindowColor
  ^ self
  valueOfFlag: #classCommentVersionsBrowserWindowColor
  ifAbsent: [Color
+ r: 0.769
+ g: 0.653
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>fileContentsBrowserWindowColor (in category 'standard queries') -----
  fileContentsBrowserWindowColor
  ^ self
  valueOfFlag: #fileContentsBrowserWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 0.8
+ b: 0.5]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>versionsBrowserWindowColor (in category 'standard queries') -----
  versionsBrowserWindowColor
  ^ self
  valueOfFlag: #versionsBrowserWindowColor
  ifAbsent: [Color
+ r: 0.869
+ g: 0.753
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>testRunnerWindowColor (in category 'standard queries') -----
  testRunnerWindowColor
  ^ self
  valueOfFlag: #testRunnerWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 0.6
+ b: 0.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>dualChangeSorterWindowColor (in category 'standard queries') -----
  dualChangeSorterWindowColor
  ^ self
  valueOfFlag: #dualChangeSorterWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>messageListWindowColor (in category 'standard queries') -----
  messageListWindowColor
  ^ self
  valueOfFlag: #messageListWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>messageNamesWindowColor (in category 'standard queries') -----
  messageNamesWindowColor
  ^ self
  valueOfFlag: #messageNamesWindowColor
  ifAbsent: [Color
+ r: 0.645
+ g: 1.0
+ b: 0.452]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>browserWindowColor (in category 'standard queries') -----
  browserWindowColor
  ^ self
  valueOfFlag: #browserWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 1.0
+ b: 0.6]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>packageLoaderWindowColor (in category 'standard queries') -----
  packageLoaderWindowColor
  ^ self
  valueOfFlag: #packageLoaderWindowColor
  ifAbsent: [Color
+ r: 0.9
+ g: 0.9
+ b: 0.781]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>transcriptWindowColor (in category 'standard queries') -----
  transcriptWindowColor
  ^ self
  valueOfFlag: #transcriptWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 0.8
+ b: 0.4]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>changeSorterWindowColor (in category 'standard queries') -----
  changeSorterWindowColor
  ^ self
  valueOfFlag: #changeSorterWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>methodFinderWindowColor (in category 'standard queries') -----
  methodFinderWindowColor
  ^ self
  valueOfFlag: #methodFinderWindowColor
  ifAbsent: [Color
+ r: 0.4
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>changeListWindowColor (in category 'standard queries') -----
  changeListWindowColor
  ^ self
  valueOfFlag: #changeListWindowColor
  ifAbsent: [Color
+ r: 0.8
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>preferenceBrowserWindowColor (in category 'standard queries') -----
  preferenceBrowserWindowColor
  ^ self
  valueOfFlag: #preferenceBrowserWindowColor
  ifAbsent: [Color
+ r: 0.645
+ g: 1.0
+ b: 1.0]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>packageBrowserWindowColor (in category 'standard queries') -----
  packageBrowserWindowColor
  ^ self
  valueOfFlag: #packageBrowserWindowColor
  ifAbsent: [Color
+ r: 1.0
+ g: 1.0
+ b: 0.6]!
- r: 0.875
- g: 0.875
- b: 0.875]!

Item was changed:
  ----- Method: Preferences class>>monticelloToolWindowColor (in category 'standard queries') -----
  monticelloToolWindowColor
  ^ self
  valueOfFlag: #monticelloToolWindowColor
  ifAbsent: [Color
+ r: 0.627
+ g: 0.69
+ b: 0.976]!
- r: 0.875
- g: 0.875
- b: 0.875]!