Posted by
commits-2 on
May 17, 2021; 9:54am
URL: https://forum.world.st/The-Trunk-ReleaseBuilder-mt-216-mcz-tp5129770.html
Marcel Taeumel uploaded a new version of ReleaseBuilder to project The Trunk:
http://source.squeak.org/trunk/ReleaseBuilder-mt.216.mcz==================== Summary ====================
Name: ReleaseBuilder-mt.216
Author: mt
Time: 17 May 2021, 11:54:31.046498 am
UUID: bd03b00b-059f-d449-ac56-b22783dc4766
Ancestors: ReleaseBuilder-mt.215
Fixes regression in recent reset of pragma preferences. Enable "browse with drag-n-drop" by default.
=============== Diff against ReleaseBuilder-mt.215 ===============
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.
Project uiManager 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.
TextMorphForEditView draggableTextSelection: true.
"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: #fastDragWindowForMorphic.
AbstractResizerMorph
gripThickness: 4;
handleLength: 25.
CornerGripMorph
drawCornerResizeHandles: false;
drawEdgeResizeHandles: false.
ProportionalSplitterMorph
showSplitterHandles: false;
smartHorizontalSplitters: false;
smartVerticalSplitters: false.
"Scroll bars."
Preferences
enable: #scrollBarsNarrow;
enable: #scrollBarsOnRight;
enable: #alwaysHideHScrollbar;
disable: #alwaysShowHScrollbar;
disable: #alwaysShowVScrollbar.
ScrollBar
scrollBarsWithoutArrowButtons: true;
scrollBarsWithoutMenuButton: true.
ScrollPane
useRetractableScrollBars: false.
"Rounded corners."
Morph preferredCornerRadius: 8.
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;
clearFilterDelay: 500;
highlightHoveredRow: true;
highlightPreSelection: false;
menuRequestUpdatesSelection: true.
PluggableTreeMorph
filterByLabelsOnly: false;
maximumSearchDepth: 1.
"Standard Tools"
TheWorldMainDockingBar
showWorldMainDockingBar: true;
showSecondsInClock: true;
twentyFourHourClock: true.
SearchBar useSmartSearch: true.
Workspace shouldStyle: false.
TranscriptStream
forceUpdate: true;
redirectToStdOut: false;
characterLimit: 20000.
Browser
listClassesHierarchically: true;
showClassIcons: true;
showMessageIcons: true;
sortMessageCategoriesAlphabetically: true.
+ SystemBrowser browseWithDragNDrop: true.
MessageSet useUnifiedMessageLabels: true.
Preferences
enable: #annotationPanes;
defaultAnnotationRequests: #(timeStamp author messageCategory implementorsCount allChangeSets);
enable: #optionalButtons;
disable: #diffsWithPrettyPrint;
enable: #traceMessages;
enable: #alternativeBrowseIt;
enable: #menuWithIcons;
enable: #visualExplorer.
Preferences disable: #debugLogTimestamp.
"Halo"
Preferences
enable: #showBoundsInHalo ;
disable: #alternateHandlesLook;
disable: #showDirectionHandles.
Morph
haloForAll: true;
metaMenuForAll: true.
"System"
NetNameResolver enableIPv6: false.
Scanner
allowUnderscoreAsAssignment: true;
prefAllowUnderscoreSelectors: true.
Deprecation showDeprecationWarnings: true
"that's all, folks"!