[squeak-dev] The Trunk: System-kfr.735.mcz

Chris Muller asqueaker at gmail.com
Tue May 5 15:25:10 UTC 2015


Annnd, it looks like you are aware of that.  :)  Please disregard my
last note, I'm reading chronologically.

On Tue, May 5, 2015 at 9:21 AM,  <commits at source.squeak.org> wrote:
> Karl Ramberg uploaded a new version of System to project The Trunk:
> http://source.squeak.org/trunk/System-kfr.735.mcz
>
> ==================== Summary ====================
>
> Name: System-kfr.735
> Author: kfr
> Time: 5 May 2015, 4:21:01.607 pm
> UUID: 6facccb7-8706-c243-a18d-f94b87f4513e
> Ancestors: System-topa.734
>
> Changes to use SystemNavigation thoroughSenders: true
>
> =============== Diff against System-topa.734 ===============
>
> Item was changed:
>   ----- Method: Preferences class>>defaultValueTableForCurrentRelease (in category 'misc') -----
>   defaultValueTableForCurrentRelease
>         "Answer a table defining default values for all the preferences in the release.  Returns a list of (pref-symbol, boolean-symbol) pairs"
>
>         ^  #(
>                 (abbreviatedBrowserButtons false)
>                 (alternativeBrowseIt false)
>                 (annotationPanes false)
>                 (areaFillsAreTolerant false)
>                 (areaFillsAreVeryTolerant false)
>                 (automaticFlapLayout true)
>                 (automaticKeyGeneration false)
>                 (automaticPlatformSettings true)
>                 (automaticViewerPlacement true)
>                 (balloonHelpEnabled true)
>                 (balloonHelpInMessageLists false)
>                 (batchPenTrails false)
>                 (canRecordWhilePlaying false)
>                 (capitalizedReferences true)
>                 (caseSensitiveFinds false)
>                 (cautionBeforeClosing false)
>                 (changeSetVersionNumbers true)
>                 (checkForSlips true)
>                 (checkForUnsavedProjects true)
>                 (classicNavigatorEnabled false)
>                 (clickOnLabelToEdit false)
>                 (cmdDotEnabled true)
>                 (collapseWindowsInPlace false)
>                 (compactViewerFlaps false)
>                 (compressFlashImages false)
>                 (confirmFirstUseOfStyle true)
>                 (conversionMethodsAtFileOut false)
>                 (debugHaloHandle true)
>                 (debugPrintSpaceLog false)
>                 (debugShowDamage false)
>                 (decorateBrowserButtons true)
>                 (diffsInChangeList true)
>                 (diffsWithPrettyPrint false)
>                 (dismissAllOnOptionClose false)
>                 (dragNDropWithAnimation false)
>                 (eToyFriendly false)
>                 (eToyLoginEnabled false)
>                 (enableLocalSave true)
>                 (extractFlashInHighQuality true)
>                 (extractFlashInHighestQuality false)
>                 (fastDragWindowForMorphic true)
>                 (fenceEnabled true)
>                 (fullScreenLeavesDeskMargins true)
>                 (haloTransitions false)
>                 (hiddenScrollBars false)
>                 (higherPerformance false)
>                 (honorDesktopCmdKeys true)
>                 (ignoreStyleIfOnlyBold true)
>                 (includeSoundControlInNavigator false)
>                 (infiniteUndo false)
>                 (logDebuggerStackToFile true)
>                 (magicHalos false)
>                 (menuButtonInToolPane false)
>                 (menuColorFromWorld false)
>                 (menuKeyboardControl false)
>                 (modalColorPickers true)
>                 (mouseOverForKeyboardFocus false)
>                 (mouseOverHalos false)
>                 (mvcProjectsAllowed true)
>                 (navigatorOnLeftEdge true)
>                 (noviceMode false)
>                 (okToReinitializeFlaps true)
>                 (optionalButtons true)
>                 (passwordsOnPublish false)
>                 (personalizedWorldMenu true)
>                 (postscriptStoredAsEPS false)
>                 (projectViewsInWindows true)
>                 (projectZoom true)
>                 (projectsSentToDisk false)
>                 (propertySheetFromHalo false)
>                 (readDocumentAtStartup true)
>                 (restartAlsoProceeds false)
>                 (reverseWindowStagger true)
>                 (roundedMenuCorners true)
>                 (roundedWindowCorners true)
>                 (scrollBarsNarrow false)
>                 (scrollBarsOnRight true)
>                 (scrollBarsWithoutMenuButton false)
>                 (gradientScrollBars true)
>                 (securityChecksEnabled false)
>                 (selectiveHalos false)
>                 (showBoundsInHalo false)
>                 (showDirectionForSketches false)
>                 (showDirectionHandles false)
>                 (showFlapsWhenPublishing false)
>                 (showProjectNavigator false)
>                 (showSecurityStatus true)
>                 (showSharedFlaps true)
>                 (signProjectFiles true)
>                 (simpleMenus false)
>                 (smartUpdating true)
>                 (soundQuickStart false)
>                 (stopSoundWhenDone false)
>                 (soundEnabled true)
>                 (startInUntrustedDirectory false)
>                 (systemWindowEmbedOK false)
> -               (thoroughSenders true)
>                 (tileTranslucentDrag true)
>                 (timeStampsInMenuTitles true)
>                 (turnOffPowerManager false)
>                 (twentyFourHourFileStamps true)
>                 (typeCheckingInTileScripting true)
>                 (uniTilesClassic true)
>                 (uniqueNamesInHalos false)
>                 (universalTiles false)
>                 (unlimitedPaintArea false)
>                 (useButtonProprtiesToFire false)
>                 (useUndo true)
>                 (viewersInFlaps true)
>                 (warnAboutInsecureContent true)
>                 (warnIfNoChangesFile true)
>                 (warnIfNoSourcesFile true))
>
>
>   "
>   Preferences defaultValueTableForCurrentRelease do:
>         [:pair | (Preferences preferenceAt: pair first ifAbsent: [nil]) ifNotNilDo:
>                         [:pref | pref defaultValue: (pair last == true)]].
>   Preferences chooseInitialSettings.
>   "!
>
> Item was changed:
>   ----- Method: Preferences class>>outOfTheBox (in category 'themes') -----
>   outOfTheBox
>         "The default out-of-the-box preference settings for Squeak 3.2.  The 'alternative' window-look and scrollbar-look are used.  Button panes are used but not annotation panes.  Scrollbars are on the right and do not flop out."
>
> +       self setPreferencesFrom: self defaultValueTableForCurrentRelease.
> +       SystemNavigation thoroughSenders: true!
> -       self setPreferencesFrom: self defaultValueTableForCurrentRelease!
>
>


More information about the Squeak-dev mailing list