diff --git a/FFI-Pools.package/FFIConstants.class/README.md b/FFI-Pools.package/FFIConstants.class/README.md index 0cc02a561c..c0029db205 100644 --- a/FFI-Pools.package/FFIConstants.class/README.md +++ b/FFI-Pools.package/FFIConstants.class/README.md @@ -1 +1 @@ -Please comment me using the following template inspired by Class Responsibility Collaborator (CRC) design: For the Class part: State a one line summary. For example, "I represent a paragraph of text". For the Responsibility part: Three sentences about my main responsibilities - what I do, what I know. For the Collaborators Part: State my main collaborators and one line about how I interact with them. Public API and Key Messages - message one - message two - (for bonus points) how to create instances. One simple example is simply gorgeous. Internal Representation and Key Implementation Points. Implementation Points \ No newline at end of file +Constants definitions for FFI \ No newline at end of file diff --git a/FFI-Pools.package/FFIConstants.class/class/pool initialization/initialize.st b/FFI-Pools.package/FFIConstants.class/class/pool initialization/initialize.st index 42d53e09bc..d6e66d25fb 100644 --- a/FFI-Pools.package/FFIConstants.class/class/pool initialization/initialize.st +++ b/FFI-Pools.package/FFIConstants.class/class/pool initialization/initialize.st @@ -1,5 +1,7 @@ initialize "FFIConstants initialize" - self initializeTypeConstants. - self initializeErrorConstants. - self initializeCallingConventions. \ No newline at end of file + + self + initializeTypeConstants; + initializeErrorConstants; + initializeCallingConventions \ No newline at end of file diff --git a/FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeCallingConventions.st b/FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeCallingConventions.st similarity index 100% rename from FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeCallingConventions.st rename to FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeCallingConventions.st diff --git a/FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeErrorConstants.st b/FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeErrorConstants.st similarity index 100% rename from FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeErrorConstants.st rename to FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeErrorConstants.st diff --git a/FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeTypeConstants.st b/FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeTypeConstants.st similarity index 100% rename from FFI-Pools.package/FFIConstants.class/class/pool initialization/initializeTypeConstants.st rename to FFI-Pools.package/FFIConstants.class/class/private - initialization/initializeTypeConstants.st diff --git a/Monticello.package/MCPackageManager.class/class/event registration/registerInterestOnSystemChangesOnAnnouncer_.st b/Monticello.package/MCPackageManager.class/class/event registration/registerInterestOnSystemChangesOnAnnouncer_.st index 392a7216e1..0bd6c2ea58 100644 --- a/Monticello.package/MCPackageManager.class/class/event registration/registerInterestOnSystemChangesOnAnnouncer_.st +++ b/Monticello.package/MCPackageManager.class/class/event registration/registerInterestOnSystemChangesOnAnnouncer_.st @@ -1,7 +1,8 @@ registerInterestOnSystemChangesOnAnnouncer: anAnnouncer anAnnouncer weak when: RPackageRenamed send: #packageRenamed: to: self; - when: ClassAdded, ClassModifiedClassDefinition, ClassRenamed, ClassCommented , ClassParentRenamed send: #classModified: to: self; + when: ClassAdded, ClassModifiedClassDefinition, ClassCommented , ClassParentRenamed send: #classModified: to: self; + when: ClassRenamed send:#classRenamed: to:self; when: ClassRepackaged send: #classMoved: to: self; when: ClassRemoved send: #classRemoved: to: self; when: MethodAdded, MethodModified, MethodRecategorized send: #methodModified: to: self; diff --git a/Monticello.package/MCPackageManager.class/class/system changes/classRenamed_.st b/Monticello.package/MCPackageManager.class/class/system changes/classRenamed_.st new file mode 100644 index 0000000000..acdd18b3b7 --- /dev/null +++ b/Monticello.package/MCPackageManager.class/class/system changes/classRenamed_.st @@ -0,0 +1,4 @@ +classRenamed: anEvent + self classModified: anEvent. + anEvent classAffected extendingPackages + do: [ :pkg | self managersForPackage: pkg do: [ :mgr | mgr modified: true ] ] \ No newline at end of file diff --git a/Rubric.package/RubOpeningClosingDelimiterDecorator.class/instance/drawing/drawOn_.st b/Rubric.package/RubOpeningClosingDelimiterDecorator.class/instance/drawing/drawOn_.st index 8c04de2527..7bed7189c7 100644 --- a/Rubric.package/RubOpeningClosingDelimiterDecorator.class/instance/drawing/drawOn_.st +++ b/Rubric.package/RubOpeningClosingDelimiterDecorator.class/instance/drawing/drawOn_.st @@ -17,4 +17,4 @@ drawOn: aCanvas rect privateSetCorner: rect corner + (1 @ 1). rect privateSetOrigin: rect origin + (-1 @ 0). aCanvas fillRectangle: rect color: RubTextSelectionColor oppositeDelimiterSelection backgroundColor. - aCanvas frameRectangle: rect color: Color black \ No newline at end of file + aCanvas frameRectangle: rect color: RubTextSelectionColor oppositeDelimiterSelection textColor \ No newline at end of file diff --git a/Rubric.package/RubTextSelectionColor.class/class/default accessing/oppositeDelimiterSelection.st b/Rubric.package/RubTextSelectionColor.class/class/default accessing/oppositeDelimiterSelection.st index 75f6903c61..2f5c88cdd4 100644 --- a/Rubric.package/RubTextSelectionColor.class/class/default accessing/oppositeDelimiterSelection.st +++ b/Rubric.package/RubTextSelectionColor.class/class/default accessing/oppositeDelimiterSelection.st @@ -1,8 +1,7 @@ oppositeDelimiterSelection ^ OppositeDelimiterSelection ifNil: [ - OppositeDelimiterSelection := RubTextSelectionColor new - colorBlock: [ Color black ]; - backgroundColorBlock: [ Color green muchLighter ]; - emphasisCode: 0; + OppositeDelimiterSelection := self new + colorBlock: [ self theme currentSettings selectionTextColor ]; + backgroundColorBlock: [ self theme currentSettings secondarySelectionColor ]; yourself ] \ No newline at end of file diff --git a/ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60472.st b/ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60473.st similarity index 99% rename from ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60472.st rename to ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60473.st index 5035a7050e..ce961a4410 100644 --- a/ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60472.st +++ b/ScriptLoader60.package/ScriptLoader.class/instance/pharo - scripts/script60473.st @@ -1,4 +1,4 @@ -script60472 +script60473 ^ 'AST-Core-TheIntegrator.494.mcz AST-Tests-Core-TheIntegrator.134.mcz @@ -65,7 +65,7 @@ EpiceaBrowsers-MartinDias.177.mcz EpiceaBrowsersTests-MartinDias.30.mcz EpiceaTests-MartinDias.24.mcz FFI-Kernel-EstebanLorenzano.45.mcz -FFI-Pools-eem.3.mcz +FFI-Pools-TheIntegrator.5.mcz FileSystem-Core-TheIntegrator.220.mcz FileSystem-Disk-TheIntegrator.106.mcz FileSystem-Memory-TheIntegrator.61.mcz @@ -186,7 +186,7 @@ Metacello-TestsPlatform-TheIntegrator.25.mcz Metacello-TestsReference-EstebanLorenzano.22.mcz Metacello-ToolBox-TheIntegrator.154.mcz Metacello-Tutorial-EstebanLorenzano.28.mcz -Monticello-TheIntegrator.1175.mcz +Monticello-TheIntegrator.1177.mcz Monticello-OldDataStreamCompatibility-TheIntegrator.10.mcz Monticello-Tests-TheIntegrator.42.mcz MonticelloConfigurations-TheIntegrator.74.mcz @@ -297,7 +297,7 @@ Ring-Tests-Containers-MarcusDenker.18.mcz Ring-Tests-Kernel-TheIntegrator.95.mcz Ring-Tests-Monticello-MarcusDenker.19.mcz RingChunkImporter-TheIntegrator.8.mcz -Rubric-TheIntegrator.446.mcz +Rubric-TheIntegrator.448.mcz Rubric-Rules-TheIntegrator.6.mcz Rubric-Styling-TheIntegrator.11.mcz Rubric-Tests-TheIntegrator.10.mcz @@ -440,5 +440,5 @@ Zinc-Tests-SvenVanCaekenberghe.238.mcz Zinc-Zodiac-TheIntegrator.38.mcz Zodiac-Core-TheIntegrator.46.mcz Zodiac-Extra-StephaneDucasse.10.mcz -Zodiac-Tests-TheIntegrator.15.mcz' +Zodiac-Tests-TheIntegrator.17.mcz' findTokens: String lf , String cr \ No newline at end of file diff --git a/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60472.st b/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60472.st deleted file mode 100644 index bcc43c2451..0000000000 --- a/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60472.st +++ /dev/null @@ -1,15 +0,0 @@ -update60472 - "self new update60472" - self withUpdateLog: '19992 Use assert:equals: in simulateKeyStroke tests - https://pharo.fogbugz.com/f/cases/19992 - -19463 Improve SessionManager class comment - https://pharo.fogbugz.com/f/cases/19463 - -19983 activate the Dark theme by default in the bootstrapped image - https://pharo.fogbugz.com/f/cases/19983 - -19991 Use of deprecated name method in TextEditor>>changeStyle - https://pharo.fogbugz.com/f/cases/19991'. - self loadTogether: self script60472 merge: false. - self flushCaches. diff --git a/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60473.st b/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60473.st new file mode 100644 index 0000000000..ebfec13e37 --- /dev/null +++ b/ScriptLoader60.package/ScriptLoader.class/instance/pharo - updates/update60473.st @@ -0,0 +1,17 @@ +update60473 + "self new update60473" + self withUpdateLog: '19968 Class rename do not mark extending packages dirty + https://pharo.fogbugz.com/f/cases/19968 + +19987 Bad highlight for matching parentheses with dark theme + https://pharo.fogbugz.com/f/cases/19987 + +19995 Fix typo in testIsNativeSSLPluginPresent + https://pharo.fogbugz.com/f/cases/19995 + +19996 Cleanup FFIConstants + https://pharo.fogbugz.com/f/cases/19996'. + self loadTogether: self script60473 merge: false. + +MCWorkingCopy registerForNotifications. + self flushCaches. diff --git a/ScriptLoader60.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st b/ScriptLoader60.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st index b65e72c33e..fc1c07deed 100644 --- a/ScriptLoader60.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st +++ b/ScriptLoader60.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st @@ -1,12 +1,12 @@ commentForCurrentUpdate - ^ '19992 Use assert:equals: in simulateKeyStroke tests - https://pharo.fogbugz.com/f/cases/19992 + ^ '19968 Class rename do not mark extending packages dirty + https://pharo.fogbugz.com/f/cases/19968 -19463 Improve SessionManager class comment - https://pharo.fogbugz.com/f/cases/19463 +19987 Bad highlight for matching parentheses with dark theme + https://pharo.fogbugz.com/f/cases/19987 -19983 activate the Dark theme by default in the bootstrapped image - https://pharo.fogbugz.com/f/cases/19983 +19995 Fix typo in testIsNativeSSLPluginPresent + https://pharo.fogbugz.com/f/cases/19995 -19991 Use of deprecated name method in TextEditor>>changeStyle - https://pharo.fogbugz.com/f/cases/19991' \ No newline at end of file +19996 Cleanup FFIConstants + https://pharo.fogbugz.com/f/cases/19996' \ No newline at end of file diff --git a/Zodiac-Tests.package/ZdcSecureSocketStreamTests.class/instance/tests/testIsNativeSSLPluginPresent.st b/Zodiac-Tests.package/ZdcSecureSocketStreamTests.class/instance/tests/testIsNativeSSLPluginPresent.st index cdf70bd1e9..6e9e25b989 100644 --- a/Zodiac-Tests.package/ZdcSecureSocketStreamTests.class/instance/tests/testIsNativeSSLPluginPresent.st +++ b/Zodiac-Tests.package/ZdcSecureSocketStreamTests.class/instance/tests/testIsNativeSSLPluginPresent.st @@ -1,6 +1,6 @@ testIsNativeSSLPluginPresent - "This test succeeds when the SSL VM plugin can be instanciated and intialized." + "This test succeeds when the SSL VM plugin can be instantiated and intialized." self assert: self isNativeSSLPluginPresent - description: 'It seems that the native VM SSL plugin cannot be instanciated and initialized. (VM plugin missing ? OS libraries missing ?)' \ No newline at end of file + description: 'It seems that the native VM SSL plugin cannot be instantiated and initialized. (VM plugin missing ? OS libraries missing ?)' \ No newline at end of file