The Trunk: ReleaseBuilder-mt.141.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-mt.141.mcz

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

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

Name: ReleaseBuilder-mt.141
Author: mt
Time: 5 August 2016, 11:16:12.294358 am
UUID: 30cc15fe-c58a-1d43-96e0-632749fea4b1
Ancestors: ReleaseBuilder-mt.140

Choose Squeak's default theme for the release.

=============== Diff against ReleaseBuilder-mt.140 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>configureDesktop (in category 'scripts') -----
  configureDesktop
  "Open tools, multimedia content, etc."
 
  self setDisplayExtent: 800 @ 600.
  self setProjectBackground: Color darkGray.
+ (UserInterfaceTheme named: 'Squeak') apply.
+
-
  self deleteAllWindows.
 
  "Replace docking bar instance in case its code has changed."
  Project current removeMainDockingBar.
  TheWorldMainDockingBar updateInstances.
 
  self openWelcomeWorkspaces.!

Item was changed:
  ----- Method: ReleaseBuilder class>>setPreferences (in category 'scripts') -----
  setPreferences
  "Preferences class defaultValueTableForCurrentRelease"
 
  " Preferences outOfTheBox."  "<-- uncomment after #defaultValueTableForCurrentRelease is fixed up."
 
  "General User interaction"
  Preferences
  enable: #generalizedYellowButtonMenu ;
  enable: #swapMouseButtons;
  disable: #mouseOverForKeyboardFocus.
  Morph indicateKeyboardFocus: true.
  ToolBuilder openToolsAttachedToMouseCursor: false.
  SearchBar useScratchPad: false.
 
  "Text input."
  TextEditor
  autoEnclose: true ;
  autoIndent: true ;
  destructiveBackWord: false ;
  blinkingCursor: true ;
  dumbbellCursor: false.
  Preferences
  insertionPointColor: Color red.
  PluggableTextMorph simpleFrameAdornments: false.
 
  "Windows"
  SystemWindow reuseWindows: false.
  SystemWindow windowsActiveOnlyOnTop: true.
  Model windowActiveOnFirstClick: false. "Not good for 800x600"
 
  Preferences
  disable: #showSplitterHandles;
  enable: #fastDragWindowForMorphic.
  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.
  SystemWindow roundedWindowCorners: false.
+ DialogWindow roundedDialogCorners: false.
- PluggableButtonMorph roundedButtonCorners: false.
- FillInTheBlankMorph roundedDialogCorners: false.
  MenuMorph roundedMenuCorners: false.
+ PluggableButtonMorph roundedButtonCorners: false.
  ScrollBar roundedScrollBarLook: false.
 
  "Gradients."
- ScrollBar gradientScrollBar: false.
  SystemWindow gradientWindow: false.
+ DialogWindow gradientDialog: false.
  MenuMorph gradientMenu: false.
  PluggableButtonMorph gradientButton: false.
+ ScrollBar gradientScrollBar: false.
 
  "Shadows"
  Preferences enable: #menuAppearance3d.
+ Morph useSoftDropShadow: true.
- Morph useSoftDropShadow: true..
 
  "Lists and Trees"
  PluggableListMorph
  filterableLists: true;
  clearFilterAutomatically: false;
  highlightHoveredRow: true;
  menuRequestUpdatesSelection: true.
  PluggableTreeMorph
  filterByLabelsOnly: false;
  maximumSearchDepth: 1.
 
  "Standard Tools"
  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 disable: #debugLogTimestamp.
 
  "Halo"
  Preferences
  enable: #showBoundsInHalo ;
  disable: #alternateHandlesLook.
 
  "System"
  NetNameResolver enableIPv6: false.
  Scanner
  allowUnderscoreAsAssignment: true;
  prefAllowUnderscoreSelectors: true.
 
  "that's all, folks"!

Item was changed:
  ----- Method: ReleaseBuilder class>>setProjectBackground: (in category 'scripts - support') -----
  setProjectBackground: aFormOrColorOrFillStyle
 
  MorphicProject defaultFill: (aFormOrColorOrFillStyle isForm
  ifTrue: [InfiniteForm with: aFormOrColorOrFillStyle]
  ifFalse: [aFormOrColorOrFillStyle isColor
  ifTrue: [SolidFillStyle color: aFormOrColorOrFillStyle]
  ifFalse: [aFormOrColorOrFillStyle]]).
+ ActiveWorld fillStyle: MorphicProject defaultFill.
+ ActiveWorld removeProperty: #hasCustomBackground.!
- ActiveWorld fillStyle: MorphicProject defaultFill.!