Skip to content

Commit

Permalink
v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Apr 9, 2023
1 parent 1922ae7 commit 0958cec
Show file tree
Hide file tree
Showing 10 changed files with 2,508 additions and 8,232 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
Expand Down
24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.19.0 (2023-04-09)

- Updated React Native for Web dependency to v0.19.
- Updated Electron dependency to v24.0.

## v0.18.0 (2022-08-06)

- Updated React dependency to v18.
Expand All @@ -7,7 +12,9 @@
## v0.17.0 (2022-02-26)

- Updated Electron dependency to v17.0.
- Added `Platform` API ([PR #26](https://github.com/PaulLeCam/react-native-electron/pull/26) by [hans00](https://github.com/hans00)).
- Added `Platform` API
([PR #26](https://github.com/PaulLeCam/react-native-electron/pull/26) by
[hans00](https://github.com/hans00)).

## v0.16.0 (2021-11-14)

Expand All @@ -17,10 +24,13 @@

## v0.15.0 (2021-02-17)

- Updated React Native for Web dependency to v0.15, that now has a peer dependency on React v17.0.
- Updated React Native for Web dependency to v0.15, that now has a peer
dependency on React v17.0.
- Updated Electron dependency to v11.0.
- Removed custom `Appearance` and `Clipboard` APIs and `useColorScheme` hook, instead exporting the React Native Web implementation.
- Updated logic to no longer require `webPreferences.nodeIntegration` to be set to `true` in Electron's `BrowserWindow` options.
- Removed custom `Appearance` and `Clipboard` APIs and `useColorScheme` hook,
instead exporting the React Native Web implementation.
- Updated logic to no longer require `webPreferences.nodeIntegration` to be set
to `true` in Electron's `BrowserWindow` options.

## v0.14.0 (2020-07-11)

Expand All @@ -30,7 +40,8 @@
## v0.13.0 (2020-04-04)

- Updated Electron dependency to v8.0.
- Added `Appearance` API and `useColorScheme` hook introduced in React Native v0.62.
- Added `Appearance` API and `useColorScheme` hook introduced in React Native
v0.62.

## v0.12.0 (2020-01-30)

Expand Down Expand Up @@ -76,7 +87,8 @@ Updated React Native for Web dependency to v0.6.

## v0.4.2 (2018-03-23)

- Updated Electron dependency to v1.8.4 to include the [webview vulnerability fix](https://electronjs.org/blog/webview-fix).
- Updated Electron dependency to v1.8.4 to include the
[webview vulnerability fix](https://electronjs.org/blog/webview-fix).
- Updated example to webpack 4 and webpack-serve.

## v0.4.1 (2018-02-22)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# React Native Electron [![Build Status](https://img.shields.io/travis/PaulLeCam/react-native-electron/master.svg)](https://travis-ci.org/PaulLeCam/react-native-electron) [![npm version](https://img.shields.io/npm/v/react-native-electron.svg)](https://www.npmjs.com/package/react-native-electron)
# React Native Electron [![npm version](https://img.shields.io/npm/v/react-native-electron.svg)](https://www.npmjs.com/package/react-native-electron)

[Electron](https://www.electronjs.org) extensions to [React Native for Web](https://github.com/necolas/react-native-web)
[Electron](https://www.electronjs.org) extensions to
[React Native for Web](https://github.com/necolas/react-native-web)

## [Documentation](library/README.md)
22 changes: 11 additions & 11 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"react-native-electron": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/core": "^7.21.4",
"@babel/preset-react": "^7.17.12",
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"@electron-forge/plugin-webpack": "6.0.0-beta.65",
"babel-loader": "^8.2.5",
"electron": "^20.0.0",
"@electron-forge/cli": "^6.1.1",
"@electron-forge/maker-zip": "^6.1.1",
"@electron-forge/plugin-webpack": "6.1.1",
"babel-loader": "^9.1.2",
"electron": "^24.0.0",
"node-loader": "^2.0.0",
"webpack": "^5.74.0"
"webpack": "^5.78.0"
},
"config": {
"forge": {
Expand All @@ -40,9 +40,9 @@
],
"packagerConfig": {},
"plugins": [
[
"@electron-forge/plugin-webpack",
{
{
"name": "@electron-forge/plugin-webpack",
"config": {
"mainConfig": "./webpack.main.config.js",
"renderer": {
"config": "./webpack.renderer.config.js",
Expand All @@ -58,7 +58,7 @@
]
}
}
]
}
]
}
}
Expand Down
Loading

0 comments on commit 0958cec

Please sign in to comment.