Skip to content

Tags: electron/remote

Tags

v2.1.2

Toggle v2.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: optional isViewApiEnabled call (#180)

fix: option isViewApiEnabled call

v2.1.1

Toggle v2.1.1's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
fix: senderId removed in Electron 28 (#171)

* Accepting ipc events without senderId

Since the property has been removed with Electron 28

* Access senderId on cast event object to be compatible with Electron 28, where "senderId" is removed from IpcRendererEvent

* fix type error

* Implement interface for missing senderId check

* replace process.mainModule with a while loop to get the topmost parent

* disable test using removed APIs

* split the codepaths for electron 28 and electron < 28

* prefix comment for skipped test with TODO

* chore: formatting

---------

Co-authored-by: Jeremy Rose <[email protected]>
Co-authored-by: Kilian Valkhof <[email protected]>
Co-authored-by: David Sanders <[email protected]>

v2.1.0

Toggle v2.1.0's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
feat: add isInitialized (#150)

* add isInitialized

* Update src/main/server.ts

---------

Co-authored-by: Erick Zhao <[email protected]>

v2.0.12

Toggle v2.0.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: `features.isDesktopCapturerEnabled` error (#166)

fix: features.isDesktopCapturerEnabled error

v2.0.11

Toggle v2.0.11's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
fix: `metaToValue` get null value (#151)

* fix: metaTovalue get null value

* Update src/renderer/remote.ts

Co-authored-by: Erick Zhao <[email protected]>

---------

Co-authored-by: Erick Zhao <[email protected]>

v2.0.10

Toggle v2.0.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: prevent checking isDesktopCapturerEnabled, which crashes on elec…

…tron@26 (#154)

* Avoid crash with electron 26

Not sure of the side effects of this

* Checking isDesktopCapturerEnabled is no longer necessary or possible. Fixes #153

Context electron/electron#38412

* Revert to checking isDesktopCapturerEnabled for pre-26 electron versions

v2.0.9

Toggle v2.0.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: update dependencies, support Electron 22 (#142)

* fix: update dependencies, support Electron 22

* build: add CI jobs for new electron versions

* build: update ci images

v2.0.8

Toggle v2.0.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: types for nativeImage, webContents, webFrameMain again (#111)

* fix: types for nativeImage, webContents, webFrameMain again

Fixes #110.

Signed-off-by: Anders Kaseorg <[email protected]>

* ci: Remove Electron 11

ShareMenu and webFrameMain are new in Electron 12.

Signed-off-by: Anders Kaseorg <[email protected]>

* fix: Remove exclusion of index.d.ts from tsconfig

This was previously excluded (#48) because of CI failures due to
index.d.ts referencing files in dist.  Those references were later
removed (#58), so we can include it again to have CI verify that
index.d.ts type checks.

Signed-off-by: Anders Kaseorg <[email protected]>

v2.0.7

Toggle v2.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: force release (#118)

v2.0.6

Toggle v2.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Make catch clauses compatible with TypeScript 4.4 (#116)

In TypeScript 4.4, --strict implies --useUnknownInCatchVariables, so
in a ‘catch (error)’ block, ‘error’ has type ‘unknown’ rather than
‘any’.

Signed-off-by: Anders Kaseorg <[email protected]>