[squeak-dev] The Trunk: ReleaseBuilder-mt.154.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Aug 13 16:00:02 UTC 2016


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

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

Name: ReleaseBuilder-mt.154
Author: mt
Time: 13 August 2016, 5:59:57.676324 pm
UUID: a87e47ea-bd78-3d41-9f1c-a5a4ca1f714d
Ancestors: ReleaseBuilder-mt.153

Increase the default rounded corner radius from 6 to 8 to look better. Note that we need to improve the corner rounding in the Balloon plugin for numbers smaller than 8.

Always hide horizontal scroll bar to increase usable area in lists. Multi-line text fields wrap anyway. Preference can be re-enabled if needed.

=============== Diff against ReleaseBuilder-mt.153 ===============

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 ;
  		 encloseSelection: false ;
  		 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 little screen real estate."
  	Model useColorfulWindows: false. 
  
  	Preferences
  		disable: #showSplitterHandles;
  		disable: #fastDragWindowForMorphic.	
  	CornerGripMorph
  		drawCornerResizeHandles: false;
  		passiveColor: (Color gray: 0.85);
  		activeColor: (Color r: 1 g: 0.599 b: 0.0).
  	ProportionalSplitterMorph
  		 smartHorizontalSplitters: false ;
  		 smartVerticalSplitters: false.
  
  	"Scroll bars."
  	Preferences
  		enable: #scrollBarsNarrow;
  		enable: #scrollBarsOnRight;
+ 		enable: #alwaysHideHScrollbar;
- 		disable: #alwaysHideHScrollbar;
  		disable: #alwaysShowHScrollbar;
  		disable: #alwaysShowVScrollbar.
  	ScrollBar
  		scrollBarsWithoutArrowButtons: true;
  		scrollBarsWithoutMenuButton: true.
  	ScrollPane
  		useRetractableScrollBars: false.
  
  	"Rounded corners."
+ 	Morph preferredCornerRadius: 8.
- 	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
  		enable: #showBoundsInHalo ;
  		disable: #alternateHandlesLook.
  
  	"System"
  	NetNameResolver enableIPv6: false.
  	Scanner
  		allowUnderscoreAsAssignment: true;
  		prefAllowUnderscoreSelectors: true.
  
  	"that's all, folks"!



More information about the Squeak-dev mailing list