From 4aaf3c07297843cb290d2160bef9b3c00ce0f323 Mon Sep 17 00:00:00 2001 From: Emil Pettersson Date: Mon, 24 Aug 2020 17:11:18 +0200 Subject: [PATCH] Updated for v10.0.0-wvvmp-beta.25 --- README.md | 10 +++++----- electron.d.ts | 8 ++++---- package.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd8a09c..965be3c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# castLabs Electron v10.0.0-beta.24 for Content Security +# castLabs Electron v10.0.0-beta.25 for Content Security Check out the [Wiki](https://github.com/castlabs/electron-releases/wiki) for general news and other updates. @@ -12,7 +12,7 @@ The provided builds are VMP-signed for development use, i.e. using Widevine UAT The sections below will describe the additions to the Electron APIs, for anything else refer to the regular Electron documentation: -[Electron README](https://github.com/electron/electron/blob/v10.0.0-beta.24/README.md) +[Electron README](https://github.com/electron/electron/blob/v10.0.0-beta.25/README.md) > **NOTE**: The section about Widevine DRM in the regular Electron documentation does not apply to this fork of Electron since the Widevine components are now automatically installed and configured. @@ -30,11 +30,11 @@ becomes: ``` "dependencies": { - "electron": "https://github.com/castlabs/electron-releases#v10.0.0-wvvmp-beta.24" + "electron": "https://github.com/castlabs/electron-releases#v10.0.0-wvvmp-beta.25" } ``` -The `#v10.0.0-wvvmp-beta.24` part of the URL references a specific release tag for Electron for Content Security, if it is left out the master branch will be tracked instead. +The `#v10.0.0-wvvmp-beta.25` part of the URL references a specific release tag for Electron for Content Security, if it is left out the master branch will be tracked instead. ## Migrating from an earlier castLabs Electron for Content Security release @@ -66,7 +66,7 @@ Widevine CDM verification/installation/update is normally automatically triggere ### `app.verifyWidevineCdm([options])` * `options` Object (optional) - * `session` [Session](https://github.com/electron/electron/blob/v10.0.0-beta.24/docs/api/session.md) (optional) + * `session` [Session](https://github.com/electron/electron/blob/v10.0.0-beta.25/docs/api/session.md) (optional) * `disableUpdate` boolean (optional) Initiates asynchronous Widevine CDM verify/install/update procedure and returns no value. Once initiated Widevine related events will be emitted as necessary, namely `widevine-ready`, `widevine-update-pending` & `widevine-error`. Unless the `no-verify-widevine-cdm` command line parameter is set this API is automatically triggered on startup and should not be called manually. If customized options are necessary `no-verify-widevine-cdm` should be set and the API call made once, very early, after the app has received the `ready` event (but before loading any media-related content to avoid potentially requiring a restart). diff --git a/electron.d.ts b/electron.d.ts index fbc8765..f3c87c9 100644 --- a/electron.d.ts +++ b/electron.d.ts @@ -1,4 +1,4 @@ -// Type definitions for Electron 10.0.0-beta.24 +// Type definitions for Electron 10.0.0-beta.25 // Project: http://electronjs.org/ // Definitions by: The Electron Team // Definitions: https://github.com/electron/electron-typescript-definitions @@ -11485,8 +11485,8 @@ See webContents.sendInputEvent for detailed description of `event` object. */ opacity?: number; /** - * Forces using dark theme for the window, only works on some GTK desktop - * environments. Default is `nativeTheme.shouldUseDarkColors`. + * Forces using dark theme for the window, only works on some GTK+3 desktop + * environments. Default is `false`. */ darkTheme?: boolean; /** @@ -13909,7 +13909,7 @@ See webContents.sendInputEvent for detailed description of `event` object. */ sandbox?: boolean; /** - * Whether to enable the `remote` module. Default is `true`. + * Whether to enable the `remote` module. Default is `false`. */ enableRemoteModule?: boolean; /** diff --git a/package.json b/package.json index 153b053..f743fbf 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "node": ">= 8.6" }, "name": "electron", - "version": "10.0.0-wvvmp-beta.24", + "version": "10.0.0-wvvmp-beta.25", "repository": "https://github.com/castlabs/electron-releases", "description": "Build cross platform desktop apps with JavaScript, HTML, CSS, and Widevine DRM protection", "license": "MIT",