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

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

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

Name: System-mt.896
Author: mt
Time: 16 August 2016, 2:23:16.914602 pm
UUID: 910fb010-467e-634f-aab4-85a1100f6753
Ancestors: System-mt.895

Add default text attributes for ignored/reverted operations in MCOperationsBrowser (i.e. MC save dialog).

=============== Diff against System-mt.895 ===============

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}.!
- set: #passTextColor for: #TestRunner to: self backgroundColor.!

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}.!
- set: #passTextColor for: #TestRunner to: self darkBackground.!

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}.!
- set: #passTextColor for: #TestRunner to: self lightBackground.!

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}."!
- derive: #passTextColor for: #TestRunner from: #PluggableTextMorph at: #textColor.!