[Bumped Version] 8.0.3

This commit is contained in:
Maxime GRIS
2020-08-12 22:41:23 +02:00
parent e3d2fca902
commit 00ce4108ee
3 changed files with 18 additions and 6 deletions

View File

@@ -1,6 +1,9 @@
## <small>8.0.2 (2020-08-12)</small> ## <small>8.0.3 (2020-08-12)</small>
* [Bumped Version] 8.0.2 ([84598a5](https://github.com/maximegris/angular-electron/commit/84598a5))
* fix/ e2e tests with Spectron ([472afc8](https://github.com/maximegris/angular-electron/commit/472afc8))
* fix/ require error with nodeIntegration = false ([61c5c6b](https://github.com/maximegris/angular-electron/commit/61c5c6b)) * fix/ require error with nodeIntegration = false ([61c5c6b](https://github.com/maximegris/angular-electron/commit/61c5c6b))
* misc/ Upgrade Angular (10.0.9) and Electron (9.2.0) ([e3d2fca](https://github.com/maximegris/angular-electron/commit/e3d2fca))

View File

@@ -15,8 +15,8 @@ Bootstrap and package your project with Angular 10 and Electron 8 (Typescript +
Currently runs with: Currently runs with:
- Angular v10.0.7 - Angular v10.0.9
- Electron v9.1.2 - Electron v9.2.0
- Electron Builder v22.8.0 - Electron Builder v22.8.0
With this sample, you can : With this sample, you can :
@@ -84,6 +84,17 @@ YES! You can do it! Just by importing your library in npm dependencies section (
Maybe you want to execute the application in the browser with hot reload ? Just run `npm run ng:serve:web`. Maybe you want to execute the application in the browser with hot reload ? Just run `npm run ng:serve:web`.
**Note that you can't use Electron or NodeJS native libraries in this case.** Please check `providers/electron.service.ts` to watch how conditional import of electron/Native libraries is done. **Note that you can't use Electron or NodeJS native libraries in this case.** Please check `providers/electron.service.ts` to watch how conditional import of electron/Native libraries is done.
# E2E Testing
E2E Test scripts can be found in `e2e` folder.
|Command|Description|
|--|--|
|`npm run e2e`| Execute end to end tests |
Note: To make it work behind a proxy, you can add this proxy exeption in your terminal
`export {no_proxy,NO_PROXY}="127.0.0.1,localhost"`
## Branch & Packages version ## Branch & Packages version
- Angular 4 & Electron 1 : Branch [angular4](https://github.com/maximegris/angular-electron/tree/angular4) - Angular 4 & Electron 1 : Branch [angular4](https://github.com/maximegris/angular-electron/tree/angular4)

View File

@@ -9,9 +9,7 @@ describe('angular-electron App', function () {
let client: SpectronClient; let client: SpectronClient;
beforeEach(async function() { beforeEach(function() {
await this.app.start();
client = this.app.client; client = this.app.client;
}); });