The Trunk: ReleaseBuilder-topa.122.mcz

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

The Trunk: ReleaseBuilder-topa.122.mcz

commits-2
Tobias Pape uploaded a new version of ReleaseBuilder to project The Trunk:
http://source.squeak.org/trunk/ReleaseBuilder-topa.122.mcz

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

Name: ReleaseBuilder-topa.122
Author: topa
Time: 8 May 2015, 4:27:14.913 pm
UUID: 82b7b6ca-da11-4663-ade1-1a3882287a11
Ancestors: ReleaseBuilder-kfr.121

Tweak the OOBE (proposal)

=============== Diff against ReleaseBuilder-kfr.121 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>setPreferences46 (in category 'preferences') -----
  setPreferences46
  "Preferences class defaultValueTableForCurrentRelease"
 
+ self setProjectBackground: Color darkGray.
+
- self setProjectBackground: self projectBackground46.
-
  "General User interaction"
  Preferences
+ enable: #swapMouseButtons;
+ disable: #mouseOverForKeyboardFocus.
- disable: #swapMouseButtons;
- enable: #mouseOverForKeyboardFocus.
  Morph indicateKeyboardFocus: true.
 
  "Text input."
  TextEditor
  autoEnclose: false ;
  autoIndent: true ;
  destructiveBackWord: false ;
  blinkingCursor: true ;
  dumbbellCursor: false.
  Preferences
  insertionPointColor: Color red.
  PluggableTextMorph simpleFrameAdornments: false.
 
  "Windows"
+ Preferences installUniformWindowColors.
- Preferences installNormalWindowColors.
  SystemWindow reuseWindows: false.
  Model windowActiveOnFirstClick: false. "Not good for 800x600"
+ Preferences
+ disable: #showSplitterHandles;
+ enable: #fastDragWindowForMorphic.
- Preferences disable: #showSplitterHandles.
  CornerGripMorph drawCornerResizeHandles: false.
  ProportionalSplitterMorph
  smartHorizontalSplitters: false ;
  smartVerticalSplitters: false.
 
  "Scroll bars."
  Preferences
  enable: #scrollBarsNarrow;
  enable: #scrollBarsOnRight;
  disable: #alwaysHideHScrollbar;
  disable: #alwaysShowHScrollbar;
  disable: #alwaysShowVScrollbar.
  ScrollBar
  scrollBarsWithoutArrowButtons: true;
  scrollBarsWithoutMenuButton: true.
  ScrollPane
  useRetractableScrollBars: false.
 
  "Rounded corners."
  Morph preferredCornerRadius: 6.
  Preferences disable: #roundedWindowCorners.
  PluggableButtonMorph roundedButtonCorners: false.
  FillInTheBlankMorph roundedDialogCorners: false.
  MenuMorph roundedMenuCorners: false.
  ScrollBar roundedScrollBarLook: false.
 
  "Gradients."
  Preferences disable: #gradientScrollBars.
  SystemWindow gradientWindow: false.
  MenuMorph gradientMenu: false.
  PluggableButtonMorph gradientButton: false.
 
  "Shadows"
  Preferences enable: #menuAppearance3d.
+ MenuMorph
+ menuBorderWidth: 1;
+ menuBorderColor: Color lightGray;
+ menuLineColor: Color lightGray.
+ Morph useSoftDropShadow: true..
- Morph useSoftDropShadow: true.
 
  "Lists and Trees"
  PluggableListMorph
  filterableLists: true;
  clearFilterAutomatically: false;
  highlightHoveredRow: true;
  menuRequestUpdatesSelection: true.
  PluggableTreeMorph
  filterByLabelsOnly: false;
  maximumSearchDepth: 1.
  LazyListMorph
  listSelectionTextColor: Color black;
  listSelectionColor: (Color r: 0.72 g: 0.72 b: 0.9).
 
  "Standard Tools"
  BalloonMorph setBalloonColorTo:
  (TranslucentColor r: 0.92 g: 0.92 b: 0.706 alpha: 0.75).
  Workspace shouldStyle: false.
  Browser
  listClassesHierarchically: true;
  showClassIcons: true;
  showMessageIcons: true;
  sortMessageCategoriesAlphabetically: true.
+ Preferences enable: #annotationPanes;
+ enable: #optionalButtons;
+ enable: #diffsWithPrettyPrint;
+ enable: #traceMessages;
+ enable: #alternativeBrowseIt;
+ enable: #menuWithIcons;
+ enable: #visualExplorer.
+ SystemNavigation thoroughSenders: true.
- Preferences
- enable: #annotationPanes;
- enable: #optionalButtons;
- enable: #diffsWithPrettyPrint;
- enable: #traceMessages ;
- enable: #alternativeBrowseIt;
- enable: #menuWithIcons;
- enable: #visualExplorer.
- SystemNavigation thoroughSenders: true.
 
  "Halo"
  Preferences
  enable: #showBoundsInHalo ;
  disable: #alternateHandlesLook.
 
+ "System"
- "Network"
  NetNameResolver enableIPv6: false.
+ Scanner
+ allowUnderscoreAsAssignment: true;
+ prefAllowUnderscoreSelectors: true.
+
+ "that's all, folks"!
-
- !