Add news topics

This commit is contained in:
YUKI Hiroshi 2016-01-19 19:07:38 +09:00
parent 4f920d49bc
commit d49f911985
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
# History
- master/HEAD
* Gave up to disable the preference `browser.tabs.insertRelatedAfterCurrent`.
Now TST respects the default behavior for the preference, about new tabs opened from links.
* All new tabs opened via the `gBrowser.addTab()` method with the option `relatedToCurrent:true` are now basically opened as children of the current tab.
By this change, new tabs from various other addons will be opened as children of the current tab without any hack.
* A new APIs to open new orphan tab is added: `gBrowser.treeStyleTab.readyToOpenOrphanTab()` and `gBrowser.treeStyleTab.readyToOpenOrphanTabNow()`.

View File

@ -1,6 +1,7 @@
# 更新履歴
- master/HEAD
* `browser.tabs.insertRelatedAfterCurrent`の設定を強制的に無効化しないようにして、リンクなどから開かれるタブについては既定の挙動を尊重するようにした
* `gBrowser.addTab()`メソッドに`relatedToCurrent:true`オプションを指定して開かれた新しいタブを、基本的に現在のタブの子として開くようにした
(この変更により、特別な対応無しの状態でも他のアドオンが開くタブも現在のタブの子タブになるようになった)
* 独立したタブを明示的に開くための新しいAPIを追加: `gBrowser.treeStyleTab.readyToOpenOrphanTab()` および `gBrowser.treeStyleTab.readyToOpenOrphanTabNow()`