The Trunk: System-mt.1008.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-mt.1008.mcz

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

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

Name: System-mt.1008
Author: mt
Time: 29 March 2018, 9:40:40.867053 am
UUID: 8ccebea8-0f21-4144-855d-0017623a16d9
Ancestors: System-mt.1007

Support class-comment nagging color in all UI themes.

=============== Diff against System-mt.1007 ===============

Item was changed:
  ----- Method: CommunityTheme class>>addDarkToolColors: (in category 'instance creation') -----
  addDarkToolColors: theme
  "Tool-specific colors."
 
  theme
  set: #failureColor for: #TestRunner to: self dbYellow;
  set: #errorColor for: #TestRunner to: self dbRed;
+ set: #passColor for: #TestRunner to: self dbGreen.
+
+ "Browser."
+ theme set: #noClassCommentColor for: #Browser to: self dbRed.!
- set: #passColor for: #TestRunner to: self dbGreen.!

Item was changed:
  ----- Method: MonokaiTheme class>>addDarkToolColors: (in category 'instance creation') -----
  addDarkToolColors: theme
  "Tool-specific colors."
 
  theme
  set: #failureColor for: #TestRunner to: self yellow;
  set: #errorColor for: #TestRunner to: self red;
  set: #passColor for: #TestRunner to: self green;
 
  set: #failureTextColor for: #TestRunner to: self backgroundColor;
  set: #errorTextColor for: #TestRunner to: self backgroundColor;
  set: #passTextColor for: #TestRunner to: self backgroundColor.
 
  theme
+ set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self grayLight}.
+
+ "Browser."
+ theme set: #noClassCommentColor for: #Browser to: self red.!
- set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self grayLight}.!

Item was changed:
  ----- Method: SolarizedTheme class>>addDarkToolColors: (in category 'instance creation') -----
  addDarkToolColors: theme
  "Tool-specific colors."
 
  theme
  set: #failureColor for: #TestRunner to: self yellow;
  set: #errorColor for: #TestRunner to: self red;
  set: #passColor for: #TestRunner to: self green;
 
  set: #failureTextColor for: #TestRunner to: self darkBackground;
  set: #errorTextColor for: #TestRunner to: self darkBackground;
  set: #passTextColor for: #TestRunner to: self darkBackground.
 
  theme
+ set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self darkContentSecondary}.
+
+ "Browser."
+ theme set: #noClassCommentColor for: #Browser to: self red.!
- set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self darkContentSecondary}.!

Item was changed:
  ----- Method: SolarizedTheme class>>addLightToolColors: (in category 'instance creation') -----
  addLightToolColors: theme
  "Tool-specific colors."
 
  theme
  set: #failureColor for: #TestRunner to: self yellow;
  set: #errorColor for: #TestRunner to: self red;
  set: #passColor for: #TestRunner to: self green;
 
  set: #failureTextColor for: #TestRunner to: self lightBackground;
  set: #errorTextColor for: #TestRunner to: self lightBackground;
  set: #passTextColor for: #TestRunner to: self lightBackground.
 
  theme
+ set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self lightContentSecondary}.
+
+ "Browser."
+ theme set: #noClassCommentColor for: #Browser to: self red.!
- set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: self lightContentSecondary}.!

Item was changed:
  ----- Method: SqueakTheme class>>addToolColors: (in category 'instance creation') -----
  addToolColors: theme
  "Tool-specific colors."
 
  "SUnit's TestRunner."
  theme
  set: #failureColor for: #TestRunner to: Color yellow;
  set: #errorColor for: #TestRunner to: Color red;
  set: #passColor for: #TestRunner to: Color green;
 
  derive: #failureTextColor for: #TestRunner from: #PluggableTextMorph at: #textColor;
  derive: #errorTextColor for: #TestRunner from: #PluggableTextMorph at: #textColor;
  derive: #passTextColor for: #TestRunner from: #PluggableTextMorph at: #textColor.
 
  "Monticello Tools."
  theme
  set: #revertedOperationAttributes for: #MCOperationsBrowser to: {TextEmphasis struckOut};
  set: #ignoredOperationAttributes for: #MCOperationsBrowser to: {TextColor color: Color gray}.
  "set: #rejectedOperationAttributes for: #MCOperationsBrowser to: {TextEmphasis struckOut};
  set: #acceptedOperationAttributes for: #MCOperationsBrowser to: {TextEmphasis underlined};
  set: #conflictingOperationAttributes for: #MCOperationsBrowser to: {TextEmphasis bold}."
 
  "Halos."
  theme
  derive: #borderColor for: #HaloMorph from: #MenuItemMorph at: #selectionColor do: [:c | c alpha: 0.8];
  derive: #borderColor for: #SelectionMorph from: #MenuItemMorph at: #selectionColor do: [:c | c twiceDarker alpha: 0.75];
+ derive: #color for: #SelectionMorph from: #MenuItemMorph at: #selectionColor do: [:c | c alpha: 0.08].
+
+ "Browser."
+ theme set: #noClassCommentColor for: #Browser to: Color red.!
- derive: #color for: #SelectionMorph from: #MenuItemMorph at: #selectionColor do: [:c | c alpha: 0.08].!