Skip to content

Commit

Permalink
Update changelog:
Browse files Browse the repository at this point in the history
* don't use Array generics
* fixed new private tab with preloaded about:newtab in Firefox 52+
* toggle tab private state in Firefox 51+
* fixed patcher around third-party wrappers
* don't use Date.prototype.toLocaleFormat()
* privateTab.duplicateTabAndTogglePrivate() API
  • Loading branch information
Infocatcher committed Jan 8, 2017
1 parent dfd8132 commit 17edfae
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion changelog-ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
`*` Улучшена производительность в мультипроцессном режиме (<a href="https://github.com/Infocatcher/Private_Tab/issues/234">#234</a>).<br>
`*` Открытие всех закладок: улучшена совместимость с другими расширениями, например, с <a href="https://addons.mozilla.org/firefox/addon/tree-style-tab/">Tree Style Tab</a> (настройка <em>extensions.privateTab.openPlacesInPrivateTabs.callNativeMenuItems</em>).<br>
`*` Улучшено потребление памяти в мультипроцессном режиме: теперь используется общий модуль content.jsm для frame scripts (<a href="https://github.com/Infocatcher/Private_Tab/issues/235">#235</a>).<br>
`+` Добавлен API <a href="https://github.com/Infocatcher/Private_Tab#privatetabistabprivateasync">privateTab.isTabPrivateAsync()</a>.
`+` Добавлен API <a href="https://github.com/Infocatcher/Private_Tab#privatetabistabprivateasync">privateTab.isTabPrivateAsync()</a>.<br>
`x` Исправлена совместимость с будущими версиями Firefox: прекращено использование Array generics вида `Array.forEach()` (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1222547">bug 1222547</a>).<br>
`x` Исправлено открытие новой приватной вкладки с предзагруженным about:newtab в Firefox 52+ (<a href="https://forum.mozilla-russia.org/viewtopic.php?pid=728403#p728403">спасибо Dumby</a>).<br>
`x` Исправлена возможность переключения приватности вкладок в Firefox 51+, теперь будет использоваться клонированная вкладка (<a href="https://github.com/Infocatcher/Private_Tab/issues/237">#237</a>).<br>
`x` Исправлен патчер при наличии оберток от других расширений (TypeError: Array is undefined) (<a href="https://forum.mozilla-russia.org/viewtopic.php?pid=728469#p728469">спасибо Dumby</a>).<br>
`x` Исправлена совместимость с будущими версиями Firefox: прекращено использование `Date.prototype.toLocaleFormat()` (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=818634">bug 818634</a>).<br>
`+` Добавлен API <a href="https://github.com/Infocatcher/Private_Tab#privatetabduplicatetabandtoggleprivate">privateTab.duplicateTabAndTogglePrivate()</a>.<br>

##### 0.2.0 (2016-08-25)
`x` Исправления для мультипроцессного режима (Electrolysis aka e10s) в части «unsafe CPOW usage» (<a href="https://github.com/Infocatcher/Private_Tab/issues/208">#208</a>).<br>
Expand Down
8 changes: 7 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
`*` Improved performance in multi-process mode (<a href="https://github.com/Infocatcher/Private_Tab/issues/234">#234</a>).<br>
`*` Open all bookmarks: improved compatibility with other extensions like <a href="https://addons.mozilla.org/firefox/addon/tree-style-tab/">Tree Style Tab</a> (<em>extensions.privateTab.openPlacesInPrivateTabs.callNativeMenuItems</em> preference).<br>
`*` Improved memory usage in multi-process mode: now used shared content.jsm module for frame scripts (<a href="https://github.com/Infocatcher/Private_Tab/issues/235">#235</a>).<br>
`+` Added <a href="https://github.com/Infocatcher/Private_Tab#privatetabistabprivateasync">privateTab.isTabPrivateAsync()</a> API.
`+` Added <a href="https://github.com/Infocatcher/Private_Tab#privatetabistabprivateasync">privateTab.isTabPrivateAsync()</a> API.<br>
`x` Fixed compatibility with future Firefox versions: don't use Array generics like `Array.forEach()` (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1222547">bug 1222547</a>).<br>
`x` Correctly open new private tab with preloaded about:newtab in Firefox 52+ (<a href="https://forum.mozilla-russia.org/viewtopic.php?pid=728403#p728403">thanks to Dumby</a>).<br>
`x` Fixed ability to toggle tab private state in Firefox 51+, now will be used duplicated tab (<a href="https://github.com/Infocatcher/Private_Tab/issues/237">#237</a>).<br>
`x` Fixed patcher around third-party wrappers (TypeError: Array is undefined) (<a href="https://forum.mozilla-russia.org/viewtopic.php?pid=728469#p728469">thanks to Dumby</a>).<br>
`x` Fixed compatibility with future Firefox versions: don't use deprecated `Date.prototype.toLocaleFormat()` (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=818634">bug 818634</a>).<br>
`+` Added <a href="https://github.com/Infocatcher/Private_Tab#privatetabduplicatetabandtoggleprivate">privateTab.duplicateTabAndTogglePrivate()</a> API.<br>

##### 0.2.0 (2016-08-25)
`x` Compatibility fixes for multi-process mode (Electrolysis aka e10s) around “unsafe CPOW usage” (<a href="https://github.com/Infocatcher/Private_Tab/issues/208">#208</a>).<br>
Expand Down

0 comments on commit 17edfae

Please sign in to comment.