The Trunk: EToys-mt.349.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-mt.349.mcz

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

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

Name: EToys-mt.349
Author: mt
Time: 19 August 2019, 2:42:42.183039 pm
UUID: 46ba930f-ca23-ab4a-b0b3-ca9e1b2fffba
Ancestors: EToys-mt.348

For Etoys release building, ensure that all control and alt keys stay duplicated. Skip the information dialog until we have a more script-friendly version of that preference. It tells us about re-setting mutually exclusive preferences.

=============== Diff against EToys-mt.348 ===============

Item was changed:
  ----- Method: ReleaseBuilderSqueakland class>>setPreferences (in category 'scripts') -----
  setPreferences
 
  super setPreferences.
+
+ [ "Reset all preferences to their default value but ensure that all control and alt keys stay duplicated."
+ Preferences cambridge.
+ Preferences allPreferences do: [:each |
+ each defaultValue: each preferenceValue].
+ Preferences
+ enable: #duplicateAllControlAndAltKeys.
+ ] valueSupplyingAnswer: true.
- Preferences cambridge.
- Preferences allPreferences do: [:each |
- each defaultValue: each preferenceValue].
 
  Preferences
  disable: #alternativeWindowBoxesLook;
  enable: #magicHalos;
  enable: #mouseOverHalos;
  enable: #roundedScrollBarLook;
  enable: #roundedWindowCorners;
  enable: #showAdvancedNavigatorButtons;
  disable: #honorDesktopCmdKeys;
  disable: #warnIfNoChangesFile;
  disable: #warnIfNoSourcesFile;
  enable: #unlimitedPaintArea;
  enable: #fastDragWindowForMorphic;
  enable: #noviceMode;
  disable: #generalizedYellowButtonMenu;
  disable: #showAdvancedNavigatorButtons;
  disable: #signProjectFiles;
  disable: #warnIfNoChangesFile;
  disable: #warnIfChangesFileReadOnly;
  disable: #warnIfNoSourcesFile.
  Morph preferredCornerRadius: 8.
  PluggableButtonMorph roundedButtonCorners: true.
  FillInTheBlankMorph roundedDialogCorners: true.
  SystemWindow roundedWindowCorners: true.
  Cursor useBiggerCursors: true.
  TrashCanMorph
  slideDismissalsToTrash: true;
  preserveTrash: true.
  SugarNavigatorBar
  showHideButton: false;
  showSugarNavigator: true.
  Deprecation showDeprecationWarnings: false.!