The Inbox: Morphic-ct.1501.mcz

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

The Inbox: Morphic-ct.1501.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1501.mcz

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

Name: Morphic-ct.1501
Author: ct
Time: 12 August 2019, 1:55:12.151463 pm
UUID: d33551bf-afdc-c94d-a872-00a881d17c7d
Ancestors: Morphic-ct.1500

Remove deprecated filter method from MenuMorph

We have #handleFiltering: instead of #filterListWith:.

=============== Diff against Morphic-ct.1500 ===============

Item was removed:
- ----- Method: MenuMorph>>filterListWith: (in category 'keyboard control') -----
- filterListWith: char
- | matchString |
- matchString := self valueOfProperty: #matchString ifAbsentPut: [String new].
- matchString := char = Character backspace
- ifTrue:
- [matchString isEmpty ifTrue: [matchString] ifFalse: [matchString allButLast]]
- ifFalse: [matchString copyWith: char].
- self setProperty: #matchString toValue: matchString!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Morphic-ct.1501.mcz

marcel.taeumel
Hi Christoph,

please mark deprecated messages like this:

...
self deprecated: 'authorInitials: Please use XYZ instead.'.
...

Then we can merge the change easier in Trunk and move the deprecated message into the appropriate package (i.e. 60Deprecated). Keep them around for a little longer. Just to be sure nobody will miss it. :-)

Best,
Marcel

Am 12.08.2019 13:55:29 schrieb [hidden email] <[hidden email]>:

A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1501.mcz

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

Name: Morphic-ct.1501
Author: ct
Time: 12 August 2019, 1:55:12.151463 pm
UUID: d33551bf-afdc-c94d-a872-00a881d17c7d
Ancestors: Morphic-ct.1500

Remove deprecated filter method from MenuMorph

We have #handleFiltering: instead of #filterListWith:.

=============== Diff against Morphic-ct.1500 ===============

Item was removed:
- ----- Method: MenuMorph>>filterListWith: (in category 'keyboard control') -----
- filterListWith: char
- | matchString |
- matchString := self valueOfProperty: #matchString ifAbsentPut: [String new].
- matchString := char = Character backspace
- ifTrue:
- [matchString isEmpty ifTrue: [matchString] ifFalse: [matchString allButLast]]
- ifFalse: [matchString copyWith: char].
- self setProperty: #matchString toValue: matchString!