[squeak-dev] The Inbox: ReleaseBuilder-cmm.143.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Aug 9 01:44:20 UTC 2016


Chris Muller uploaded a new version of ReleaseBuilder to project The Inbox:
http://source.squeak.org/inbox/ReleaseBuilder-cmm.143.mcz

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

Name: ReleaseBuilder-cmm.143
Author: cmm
Time: 8 August 2016, 8:44:19.037434 pm
UUID: 83ea1203-93ba-4d38-9161-6f6c1597ab61
Ancestors: ReleaseBuilder-mt.142

- Suggest disable #showBoundsInHalo for this release.  
- Was allowUnderscoreAsAssignment intended to be unset at some point long ago?

=============== Diff against ReleaseBuilder-mt.142 ===============

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.
  	
  	HandMorph sendMouseWheelToKeyboardFocus: false.
  	HandMorph synthesizeMouseWheelEvents: true.
  	
  	"Text input."
  	TextEditor
  		 autoEnclose: true ;
  		 autoIndent: true ;
  		 destructiveBackWord: false ;
  		 blinkingCursor: true ;
  		 dumbbellCursor: false.
  	PluggableTextMorph simpleFrameAdornments: false.
  	
  	"Windows"
  	SystemWindow reuseWindows: false.
  	SystemWindow windowsRaiseOnClick: true.
  	SystemWindow windowTitleActiveOnFirstClick: true.
  	Model windowActiveOnFirstClick: false. "Not good for 800x600"
  
  	Preferences
  		disable: #showSplitterHandles;
  		disable: #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.
  	MenuMorph roundedMenuCorners: false.
  	PluggableButtonMorph roundedButtonCorners: false.
  	ScrollBar roundedScrollBarLook: false.
  	
  	"Gradients."
  	SystemWindow gradientWindow: false.
  	DialogWindow gradientDialog: false.
  	MenuMorph gradientMenu: false.
  	PluggableButtonMorph gradientButton: false.
  	ScrollBar gradientScrollBar: false.
  
  	"Shadows"
  	Preferences enable: #menuAppearance3d.
  	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
+ 		disable: #showBoundsInHalo ;
- 		enable: #showBoundsInHalo ;
  		disable: #alternateHandlesLook.
  
  	"System"
  	NetNameResolver enableIPv6: false.
  	Scanner
+ 		allowUnderscoreAsAssignment: false;
- 		allowUnderscoreAsAssignment: true;
  		prefAllowUnderscoreSelectors: true.
  
  	"that's all, folks"!



More information about the Squeak-dev mailing list