The Trunk: System-mt.1084.mcz

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

The Trunk: System-mt.1084.mcz

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

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

Name: System-mt.1084
Author: mt
Time: 13 August 2019, 1:23:01.762456 pm
UUID: 75d027ea-d724-294f-96cb-5e0b48c625c3
Ancestors: System-mt.1083, System-jr.1083

Merges System-mt.1083 and System-jr.1083.

=============== Diff against System-mt.1083 ===============

Item was changed:
  ----- Method: Utilities class>>initializeCommonRequestStrings (in category 'common requests') -----
  initializeCommonRequestStrings
  "Initialize the common request strings, a directly-editable list of expressions that can be evaluated from the 'do...' menu."
 
  CommonRequestStrings := StringHolder new contents:
  'Utilities emergencyCollapse.
  Utilities closeAllDebuggers.
+ RecentMessages default revertMostRecent.
  -
  MCFileBasedRepository flushAllCaches
  -
  Sensor keyboard.
  ParagraphEditor abandonChangeText.
  Cursor normal show.
  -
  CommandHistory resetAllHistory.
  Project allInstancesDo: [:p | p displayDepth: 16].
  ScriptingSystem inspectFormDictionary.
  Form fromUser bitEdit.
  Display border: (0@0 extent: 640@480) width: 2.
  -
  Undeclared inspect.
  Undeclared removeUnreferencedKeys; inspect.
  Transcript clear.
  Utilities grabScreenAndSaveOnDisk.
  FrameRateMorph new openInHand.
  -
  Utilities reconstructTextWindowsFromFileNamed: ''TW''.
  Utilities storeTextWindowContentsToFileNamed: ''TW''.
  ChangeSorter removeEmptyUnnamedChangeSets.
  ChangeSorter reorderChangeSets.
  -
  ActiveWorld installVectorVocabulary.
  ActiveWorld abandonVocabularyPreference.'
 
  "Utilities initializeCommonRequestStrings"!

Item was changed:
  ----- Method: Utilities class>>revertLastMethodSubmission (in category 'recent method submissions') -----
  revertLastMethodSubmission
+ self deprecated: 'Use RecentMessages default revertMostRecent'.
+ RecentMessages default revertMostRecent.!
- self deprecated: 'Use RecentMessages default revertLastMethodSubmission'.
- RecentMessages default revertLastMethodSubmission.!