The Inbox: PreferenceBrowser-ct.100.mcz

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

The Inbox: PreferenceBrowser-ct.100.mcz

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

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

Name: PreferenceBrowser-ct.100
Author: ct
Time: 31 December 2019, 3:06:57.207022 am
UUID: 5cf3e272-5044-7340-b997-941f25855400
Ancestors: PreferenceBrowser-mt.97

Complements Help-Squeak-Project-ct.75. If help is not loaded, help won't be available any longer.

=============== Diff against PreferenceBrowser-mt.97 ===============

Item was changed:
  ----- Method: PreferenceBrowser>>helpSelected (in category 'preferences search') -----
  helpSelected
+
+ ^ Smalltalk
+ at: #SqueakToolsPreferenceBrowserHelp
+ ifPresent: #open
+ ifAbsent: [self inform: 'Help not installed' translated]!
- "Open up a workspace with explanatory info in it about the Preference Browser"
- Workspace new
- contents: self helpText;
- openLabel: self windowTitle.!

Item was removed:
- ----- Method: PreferenceBrowser>>helpText (in category 'preferences search') -----
- helpText
- ^(String streamContents: [:str |
- str nextPutAll:
- 'Many aspects of the system are governed by the settings of various ''Preferences''.
-
- Click on any of the categories shown in the list on the left to see all the preferences in that category. Alternatively type into the search box at the top of the window and all Preferences matching whatever you typed will appear in the ''search results'' category. A preference is considered to match your search if either its name matches the text *or* if anything in the preference''s help text does.
-
- To find out more about any particular Preference just select it and its help text will appear. The ''more'' button at the end of the hlpe text pops up a menu with some more expert-oriented options.
-
- Some preferences can be ''local'' instead of global. When a preference is set as global its value will apply to whatever project you are in. A local preference will only be valid in the project that you set it in.
-
- The ''Save'' button allow you to quickly save your current settings so it can later be restored with the ''Load'' button.
-
- To carry your settings to another Squeak you might want to use the ''Save to disk'' and ''Load from disk'' buttons. The save to disk option will store all your settings in a ''my.prefs'' file in your Squeak''s current directory.
- .']) translated!