Update news topics

This commit is contained in:
Piro / YUKI Hiroshi 2015-11-05 00:11:19 +09:00
parent 67d5ba7ac8
commit 729ec1bdcc
2 changed files with 25 additions and 1 deletions

View File

@ -1,6 +1,18 @@
# History # History
- master/HEAD - master/HEAD
* Don't hide the title bar unexpectedly, after toolbar customizations.
* Introduce new custom DOM event `nsDOMTreeStyleTabTabbarRendered` for addons who need to modify appearance of the tab bar, like Unified Sidebar.
* Hide (shrink) the tab bar correctly after a tab is dragged and dropped or any FireGestures's gesture is performed.
* The configuration dialog applies new "auto hide" preference only for the correct mode: normal or full screen.
* Fix misspelling of `Leftside` and `Rightside` - they simply became `Left` and `Right`.
* Perform searches from the web search bar and the context menu correctly, when e10s is activated.
* Show the tab bar at correct position, after the DOM fullscreen mode.
* Hide tab bar related elements completely in the DOM fullscreen mode.
* Tabs opened via `GM_openInTabs()` from Greasmeonkey scripts become children of the current tab again.
* Introduce new internal preferences to control debug prints. You can activate/deactivate debug print per module via preferences like `extensions.treestyletab.debug.*`.
* Fix broken appearance of overlay icons on pinned tabs.
* Reduce `eval()` hack to avoid errors around invalid references to objects defined with [ECMAScript 6's `const`](https://bugzilla.mozilla.org/show_bug.cgi?id=1202902) in separate scopes for Firefox sources.
* Restore order of rearranged tabs more correctly. * Restore order of rearranged tabs more correctly.
* Don't show gray rect of pinned tabs on full screen videos and collapsed tab bar. * Don't show gray rect of pinned tabs on full screen videos and collapsed tab bar.
* Don't update the size of the tab bar too frequently. * Don't update the size of the tab bar too frequently.

View File

@ -1,7 +1,19 @@
# 更新履歴 # 更新履歴
- master/HEAD - master/HEAD
* 並べ替えた後の並び順をより正しく復元するようにした * ツールバーカスタマイズの終了後に意図せずタイトルバーが非表示になってしまう問題を修正
* Unified Sidebarのような、タブバーの表示を変更する必要があるアドオン向けに、新しい独自DOMイベント `nsDOMTreeStyleTabTabbarRendered` を発行するようにした
* タブのドラッグドロップ後やFireGesturesのジェスチャでタブを閉じた後などにタブバーが自動で隠れない問題を修正
* 設定ダイアログから「タブバーを自動で隠す」の設定を変更した時、現在の状態に適した設定のみを反映するようにした
* 英語ロケールで`Leftside`および`Rightside`と書いていた箇所を`Left`および`Right`のみに改めた
* e10s有効時にWeb検索バーやコンテキストメニューからのWeb検索が動作しなくなる問題を修正
* HTML5のフルスクリーン表示を終了した後にタブバーを正しい位置に表示するように修正
* HTML5のフルスクリーン表示においてタブバー関連の要素を完全に非表示にするようにした
* Greasemonkeyの`GM_openInTabs()`で開かれたタブが子タブにならなくなっていたのを修正
* デバッグメッセージの出力を制御する設定 `extensions.treestyletab.debug.*` を導入した
* ピン留めされたタブに重ねて表示される音量アイコンの表示崩れを修正
* [ECMAScript 6の`const`の仕様の反映](https://bugzilla.mozilla.org/show_bug.cgi?id=1202902)に伴い、Firefoxのソース中で`const`で定義されたオブジェクトへの参照に起因するエラーの回避のため、`eval()`による関数の書き換えを減らした
* タブを並べ替えた後の並び順をより正しく復元するようにした
* 動画のフルスクリーン表示時やタブバーが折り畳まれた時に、ピン留めされたタブに起因するグレーの矩形を表示しないようにした * 動画のフルスクリーン表示時やタブバーが折り畳まれた時に、ピン留めされたタブに起因するグレーの矩形を表示しないようにした
* タブバーの大きさが過度に頻繁に更新されないようにした * タブバーの大きさが過度に頻繁に更新されないようにした
[Unified Sidebar](https://addons.mozilla.org/firefox/addon/unified-sidebar/)との併用時の動作を改善) [Unified Sidebar](https://addons.mozilla.org/firefox/addon/unified-sidebar/)との併用時の動作を改善)