diff --git a/README.md b/README.md index 09173c9..aefa0d5 100644 --- a/README.md +++ b/README.md @@ -95,20 +95,14 @@ Most likely, you will never stumble upon these if not reading this chapter. **Note:** To reset an option run `defaults delete de.relikd.baRSS {KEY}`, where `{KEY}` is an option from below. -1. When holding down the option key, the menu will show an item to open only a few unread items at a time. -This number can be changed with the following Terminal command (default: 10): -``` -defaults write de.relikd.baRSS openFewLinksLimit -int 10 -``` - -2. You can change the appearance of colors throughout the application. +1. You can change the appearance of colors throughout the application. E.g., The tint color of the menu bar icon and the color of the blue unread articles dot. ``` defaults write de.relikd.baRSS colorStatusIconTint -string "#37F" defaults write de.relikd.baRSS colorUnreadIndicator -string "#FBA33A" ``` -3. To backup your list of subscribed feeds, here is a one-liner: +2. To backup your list of subscribed feeds, here is a one-liner: ``` open barss:backup && cp "$HOME/Library/Containers/de.relikd.baRSS/Data/Library/Application Support/baRSS/backup/feeds_latest.opml" "$HOME/Desktop/baRSS_backup_$(date "+%Y-%m-%d").opml" ``` diff --git a/baRSS/Preferences/Appearance Tab/SettingsAppearanceView.m b/baRSS/Preferences/Appearance Tab/SettingsAppearanceView.m index 6876417..2884877 100644 --- a/baRSS/Preferences/Appearance Tab/SettingsAppearanceView.m +++ b/baRSS/Preferences/Appearance Tab/SettingsAppearanceView.m @@ -46,8 +46,8 @@ ]]; [self entry:NSLocalizedString(@"“Show hidden feeds”", nil) - help:NSLocalizedString(@"Show button to quickly toggle whether hidden articles should be shown. See option “Show only unread”.", nil) - tip:nil + help:NSLocalizedString(@"Show button to quickly toggle whether hidden articles should be shown. See option “Show only unread”.", nil) + tip:NSLocalizedString(@"You can hold down option-key before opening the main menu to temporarily show hidden entries.", nil) c1:Pref_globalToggleHidden c2:nil c3:nil c4:nil]; [self entry:NSLocalizedString(@"“Update all feeds”", nil) @@ -57,7 +57,7 @@ [self entry:NSLocalizedString(@"“Open all unread”", nil) help:NSLocalizedString(@"Show button to open unread articles.", nil) - tip:NSLocalizedString(@"If you hold down option-key, this will become an “open a few” unread articles button.", nil) + tip:nil c1:Pref_globalOpenUnread c2:Pref_groupOpenUnread c3:Pref_feedOpenUnread c4:nil]; [self entry:NSLocalizedString(@"“Mark all read”", nil) @@ -70,6 +70,12 @@ tip:NSLocalizedString(@"You can hold down option-key and click on an article to toggle that item (un-)read.", nil) c1:Pref_globalMarkUnread c2:Pref_groupMarkUnread c3:Pref_feedMarkUnread c4:nil]; +// self.y += PAD_M; + [self intInput:Pref_openFewLinksLimit + unit:NSLocalizedString(@"%ld unread", nil) + label:NSLocalizedString(@"“Open a few unread” ⌥", nil) + help:NSLocalizedString(@"If you hold down option-key, the “Open all unread” button becomes an “Open a few unread” button.", nil)]; + // self.y += PAD_M; // [self note:NSLocalizedString(@"Hold down option-key and click on an article to toggle that item (un-)read.", nil)]; @@ -96,7 +102,7 @@ [self entry:NSLocalizedString(@"Show only unread", nil) help:NSLocalizedString(@"Hide articles which have been read.", nil) - tip:NSLocalizedString(@"You can hold down option-key before opening the main menu to temporarily disable this setting.", nil) + tip:nil c1:nil c2:Pref_groupUnreadOnly c3:Pref_feedUnreadOnly c4:Pref_articleUnreadOnly]; // self.y += PAD_M;