Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.939.mcz ==================== Summary ==================== Name: Tools-mt.939 Author: mt Time: 13 February 2020, 1:37:00.539714 pm UUID: 21f18a61-361d-5348-9980-f95b1aa13203 Ancestors: Tools-ct.938 In debuggers, fixes the bug that occurred when fullStackSize is smaller than notifierStackSize. Such a configuration is not useful but can happen when those preferences are changed independently for different reasons. (Also completes a move-method from that merge in Help-Squeak-Project-mt.74) =============== Diff against Tools-ct.938 =============== Item was changed: ----- Method: Debugger>>expandStack (in category 'context stack - message list') ----- expandStack "Show a substantial amount of stack in the context pane." self okToChange ifFalse: [^ self]. + self newStack: (self contextStackTop stackOfSize: (self class fullStackSize max: self class notifierStackSize)). - self newStack: (self contextStackTop stackOfSize: self class fullStackSize). self changed: #contextStackList. ! Item was removed: - ----- Method: VersionsBrowser>>offerVersionsHelp (in category 'menu') ----- - offerVersionsHelp - (StringHolder new contents: self versionsHelpString) - openLabel: 'Versions Browsers'! |
Hi Marcel,
> (Also completes a move-method from that merge in Help-Squeak-Project-mt.74) I already addressed this issue here: http://forum.world.st/The-Inbox-Help-Squeak-Project-ct-72-mcz-td5106990.html#a5109121
What's the best way to refer to the help package? Do we want a dangling menu reference if help isn't installed?
Best,
Christoph
Von: Squeak-dev <[hidden email]> im Auftrag von [hidden email] <[hidden email]>
Gesendet: Donnerstag, 13. Februar 2020 13:37:03 An: [hidden email]; [hidden email] Betreff: [squeak-dev] The Trunk: Tools-mt.939.mcz Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.939.mcz ==================== Summary ==================== Name: Tools-mt.939 Author: mt Time: 13 February 2020, 1:37:00.539714 pm UUID: 21f18a61-361d-5348-9980-f95b1aa13203 Ancestors: Tools-ct.938 In debuggers, fixes the bug that occurred when fullStackSize is smaller than notifierStackSize. Such a configuration is not useful but can happen when those preferences are changed independently for different reasons. (Also completes a move-method from that merge in Help-Squeak-Project-mt.74) =============== Diff against Tools-ct.938 =============== Item was changed: ----- Method: Debugger>>expandStack (in category 'context stack - message list') ----- expandStack "Show a substantial amount of stack in the context pane." self okToChange ifFalse: [^ self]. + self newStack: (self contextStackTop stackOfSize: (self class fullStackSize max: self class notifierStackSize)). - self newStack: (self contextStackTop stackOfSize: self class fullStackSize). self changed: #contextStackList. ! Item was removed: - ----- Method: VersionsBrowser>>offerVersionsHelp (in category 'menu') ----- - offerVersionsHelp - (StringHolder new contents: self versionsHelpString) - openLabel: 'Versions Browsers'!
Carpe Squeak!
|
Hi Christoph. Not sure to what you are referring to. A "move method" between packages requires two commits. The one in the package "Help-Squeak-Project", which was the target, did already happen. The one in "Tools", which was the source, was forgotten. > What's the best way to refer to the help package? Do we want a dangling menu reference if help isn't installed? I suppose this would require a better extension mechanism for menus. For now it is okay because Help is always loaded. ;-) Best, Marcel
|
Hi Marcel,
I would like to isolate packages early before everything is totally coupled :-) Here are all alternative options I can imagine:
So, what would you recommend? :-)
Best, Christoph Von: Squeak-dev <[hidden email]> im Auftrag von Taeumel, Marcel
Gesendet: Sonntag, 16. Februar 2020 12:52 Uhr An: Javier Diaz-Reinoso via Squeak-dev; [hidden email] Betreff: Re: [squeak-dev] The Trunk: Tools-mt.939.mcz
Hi Christoph.
Not sure to what you are referring to. A "move method" between packages requires two commits. The one in the package "Help-Squeak-Project", which was the target, did already happen. The one in "Tools", which was the source, was forgotten.
> What's the best way to refer to the help package? Do we want a dangling menu reference if help isn't installed?
I suppose this would require a better extension mechanism for menus. For now it is okay because Help is always loaded. ;-)
Best,
Marcel
Carpe Squeak!
|
Free forum by Nabble | Edit this page |