[Pkg] The Trunk: ReleaseBuilder-mt.137.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jul 28 09:58:50 UTC 2016


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

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

Name: ReleaseBuilder-mt.137
Author: mt
Time: 28 July 2016, 11:58:36.903147 am
UUID: e71c47ca-4f2f-994b-9c92-f720cc2c0eb5
Ancestors: ReleaseBuilder-mt.136

Use pragma-style preference for gradient scroll bars.

=============== Diff against ReleaseBuilder-mt.136 ===============

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"
  	Preferences installUniformWindowColors.
  	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.
  	PluggableButtonMorph roundedButtonCorners: false.
  	FillInTheBlankMorph roundedDialogCorners: false.
  	MenuMorph roundedMenuCorners: false.
  	ScrollBar roundedScrollBarLook: false.
  	
  	"Gradients."
+ 	ScrollBar gradientScrollBar: false.
- 	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..
  	
  	"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 balloonColor: (Color r: 0.92 g: 0.92 b: 0.706).
  	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"!



More information about the Packages mailing list