1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 18:45:47 +01:00

Simplify :displaypane argument names.

This commit is contained in:
Doug Kearns
2010-10-21 15:45:47 +11:00
parent 48dd94773e
commit 8e827b053d
4 changed files with 18 additions and 25 deletions

View File

@@ -1,22 +1,17 @@
2009-XX-XX: 0.1a1pre:
* version 0.2pre * :displaypane arguments changed to "leftservice", "bottomservice",
"bottomcontent" or "rightsidebar"
* asciidoc is no longer required to build Melodactyl * asciidoc is no longer required to build Melodactyl
* The help system is newly modularized * The help system is newly modularized
* add [c]:silent[c] * add :silent
* add [j]$MY_MELODACTYLRC[j] * add $MY_MELODACTYLRC
* add [m]'[m] and [m]"[m] local marks * add ' and " local marks
* add [m]w[m] and [m]W[m] Normal mode mappings for symmetry with [m]o[m]/[m]O[m] and [m]t[m]/[m]T[m] * add w and W Normal mode mappings for symmetry with o/O and t/T
* add [c]:messclear[c] * add :messclear
* add 'maxitems' * add 'maxitems'
* [c]:dialog {subscribe|newsmartplaylist}[c] * :dialog {subscribe|newsmartplaylist}
* add [c]:displaypane[c] and [c]:dpclose[c] * add :displaypane and :dpclose
* rename [c]:filter[c] to [c]:queue[c] and [c]:Filter[c] to [c]:filter[c] * rename :filter to :queue and :Filter to :filter
* add 'repeat' and 'shuffle' * add 'repeat' and 'shuffle'
* add 'jsdebugger' option - switch on/off javascript debugger service * add 'jsdebugger' option - switch on/off javascript debugger service
* add "addons", "downloads", "extoptions" and "help" to the 'activate' option. * add "addons", "downloads", "extoptions" and "help" to the 'activate' option.
2009-03-28:
* version 0.1
* first public release
// vim: set filetype=asciidoc:

View File

@@ -7,9 +7,9 @@ BUGS:
- :open songbird-internal-search searchString (broken because SB intercepts queries to this engine) - :open songbird-internal-search searchString (broken because SB intercepts queries to this engine)
- <C-^> only works between browser tabs not the media tab - <C-^> only works between browser tabs not the media tab
- numbered tabs - numbered tabs
- command-line option handling is broken in Melodactyl only - it used to work.
FEATURES: FEATURES:
9 Clean up NEWS
9 Bookmarks are now only supported in SB via an addon. 9 Bookmarks are now only supported in SB via an addon.
9 '?' - Reusing '/'. 9 '?' - Reusing '/'.
8 Merge with SongBird's sanitizer implementation. 8 Merge with SongBird's sanitizer implementation.

View File

@@ -194,16 +194,15 @@ const Config = Module("config", ConfigBase, {
document.getElementById(id).hide(); document.getElementById(id).hide();
}, },
// FIXME: best way to format these args? Hyphenated? One word like :dialog?
/** /**
* @property {object} A map of display pane command argument strings to * @property {object} A map of display pane command argument strings to
* panel element IDs. * panel element IDs.
*/ */
displayPanes: { displayPanes: {
"service pane left": "servicepane", "leftservice" : "servicepane",
"content pane bottom": "displaypane_contentpane_bottom", "bottomcontent": "displaypane_contentpane_bottom",
"service pane bottom": "displaypane_servicepane_bottom", "bottomservice": "displaypane_servicepane_bottom",
"right sidebar": "displaypane_right_sidebar" "rightsidebar" : "displaypane_right_sidebar"
} }
}, { }, {
commands: function () { commands: function () {

View File

@@ -44,9 +44,8 @@
<spec>:displaypane <a>pane</a></spec> <spec>:displaypane <a>pane</a></spec>
<description> <description>
<p> <p>
Open the specified display pane. <a>pane</a> is any of "service Open the specified display pane. <a>pane</a> is any of
pane left", "service pane bottom", "content pane bottom" or "right "leftservice", "bottomservice", "bottomcontent" or "rightsidebar".
sidebar".
</p> </p>
</description> </description>
</item> </item>