Skip to content

Instantly share code, notes, and snippets.

@akabekobeko
Last active January 18, 2017 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akabekobeko/694959ddddb7425e581ce4e4c7a1e404 to your computer and use it in GitHub Desktop.
Save akabekobeko/694959ddddb7425e581ce4e4c7a1e404 to your computer and use it in GitHub Desktop.
Private prints, Release notes of Electron v1.4.14

Electron release 日本語訳、私家版。ツッコミ PR 大歓迎。

Bug Fixes

  • Fixed a crash when closing a window from within a will-navigate event listener. #8254
    • will-navigate のイベント リスナーから window を閉じたときクラッシュする問題を修正
  • Offscreen windows are now always created as frameless so the viewport size is as expected. #8250
    • 今後、非表示ウィンドウは常にフレームなしで作成され、期待値どおりのサイズとなるようにした
  • The backgroundThrottling option is now correctly persisted across window reloads. #8298
    • ウィンドウを再読込しても backgroundThrottling の内容が維持されるようにした
  • The Cookie header is now settable on requests made using Electron's net module. #8258
    • Electron の net モジュールで Cookie ヘッダーを設定できるようにした
  • Fixed a stack overflow error when creating a window with cycles in the specified options object. #8340
    • ウィンドウ作成時のオプションに循環参照があると起きるスタック オーバーフローのエラーを修正
  • Fixed an issue where the session.enableNetworkEmulation API would lead to high CPU usage. #8371
    • session.enableNetworkEmulation API を使用すると CPU 使用率が高くなる問題を修正

macOS

  • Fixed a crash when the OS reported no monitors were available. #8249
    • モニター情報を OS から取得 ( [NSScreen screens] ) するとき使用可能なものがないとクラッシュする問題を修正

Linux

  • Fixed a crash when closing a window from within a dialog callback. #8252
    • ダイアログのコールバック内でウィンドウを閉じようとするとクラッシュする問題を修正

Windows

  • Fixed an issue where the window would be incorrectly placed behind the task bar when maximized. #7765
    • ウィンドウを最大化したときタスクバーの下に隠れてしまう問題を修正

API Changes

  • The defaultFontFamily option in the BrowserWindow constructor now supports setting the default cursive and fantasy fonts. #8295
    • BrowserWindow コンストラクターの defaultFontFamily オプションで cursivefantasy に対応した
  • Added a normalizeAccessKeys option to the dialog.showMessageBox API that normalizes keyboard accelerator keys used for buttons across platforms. #8308
    • dialog.showMessageBox のオプションに normalizeAccessKeys を追加、これはメッセージ ボタンにおけるキーボードのアクセラレーター キーのプラットフォーム差を標準化する
  • window.alert and window.confirm are now supported in <iframe> tags and sandboxed windows. #8341
    • サンドボックス ウィンドウにおける window.alertwindow.confirm<iframe> タグに対応した
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment