The Inbox: Tools-ct.930.mcz

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

The Inbox: Tools-ct.930.mcz

commits-2
Christoph Thiede uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.930.mcz

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

Name: Tools-ct.930
Author: ct
Time: 13 January 2020, 12:25:17.41557 pm
UUID: 46d52269-9d40-c946-b341-651b03bd9b2e
Ancestors: Tools-mt.929

Adds support for browsing extension methods to Browser. Complements System-ct.1131.

=============== Diff against Tools-mt.929 ===============

Item was added:
+ ----- Method: Browser>>browseExtensions (in category 'system category functions') -----
+ browseExtensions
+
+ ^ self systemNavigation browseAllExtensionsOf: self selectedPackage!

Item was changed:
  ----- Method: Browser>>mainSystemCategoryMenu: (in category 'system category functions') -----
  mainSystemCategoryMenu: aMenu
  <systemCategoryMenu>
  ^ aMenu addList: #(
  ('find class... (f)' findClass)
  ('back... (b)' recent)
  -
+ ('browse all' browseAllClasses)
+ ('browse' buildSystemCategoryBrowser)
+ ('browse extensions' browseExtensions)
- ('browse all' browseAllClasses)
- ('browse' buildSystemCategoryBrowser)
  -
  ('printOut' printOutSystemCategory)
  ('fileOut' fileOutSystemCategory)
  -
  ('reorganize' editSystemCategories)
  ('alphabetize' alphabetizeSystemCategories)
  -
  ('update' updateSystemCategories)
  ('add item...' addSystemCategory)
  ('rename...' renameSystemCategory)
  ('remove (x)' removeSystemCategory));
  yourself
  !

Item was added:
+ ----- Method: Browser>>selectedPackage (in category 'system category list') -----
+ selectedPackage
+
+ ^ self environment info packages packageOfSystemCategory: self selectedSystemCategory!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Tools-ct.930.mcz

Christoph Thiede

Ouch, the tabs look horrible again. Maybe we should not try to use them at all to achieve a multicolumn look? This just does not work for variable tab + character widths ...


Best,
Christoph

Von: Squeak-dev <[hidden email]> im Auftrag von [hidden email] <[hidden email]>
Gesendet: Montag, 13. Januar 2020 12:25:22
An: [hidden email]
Betreff: [squeak-dev] The Inbox: Tools-ct.930.mcz
 
Christoph Thiede uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.930.mcz

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

Name: Tools-ct.930
Author: ct
Time: 13 January 2020, 12:25:17.41557 pm
UUID: 46d52269-9d40-c946-b341-651b03bd9b2e
Ancestors: Tools-mt.929

Adds support for browsing extension methods to Browser. Complements System-ct.1131.

=============== Diff against Tools-mt.929 ===============

Item was added:
+ ----- Method: Browser>>browseExtensions (in category 'system category functions') -----
+ browseExtensions
+       
+        ^ self systemNavigation browseAllExtensionsOf: self selectedPackage!

Item was changed:
  ----- Method: Browser>>mainSystemCategoryMenu: (in category 'system category functions') -----
  mainSystemCategoryMenu: aMenu
         <systemCategoryMenu>
         ^ aMenu addList: #(
                         ('find class... (f)'                    findClass)
                         ('back... (b)'                          recent)
                         -
+                        ('browse all'                                           browseAllClasses)
+                        ('browse'                                                       buildSystemCategoryBrowser)
+                        ('browse extensions'    browseExtensions)
-                        ('browse all'                   browseAllClasses)
-                        ('browse'                               buildSystemCategoryBrowser)
                         -
                         ('printOut'                             printOutSystemCategory)
                         ('fileOut'                              fileOutSystemCategory)
                         -
                         ('reorganize'                   editSystemCategories)
                         ('alphabetize'                  alphabetizeSystemCategories)
                         -
                         ('update'                               updateSystemCategories)
                         ('add item...'                          addSystemCategory)
                         ('rename...'                            renameSystemCategory)
                         ('remove (x)'                   removeSystemCategory));
                 yourself
  !

Item was added:
+ ----- Method: Browser>>selectedPackage (in category 'system category list') -----
+ selectedPackage
+
+        ^ self environment info packages packageOfSystemCategory: self selectedSystemCategory!




Carpe Squeak!