From 671b6a38a553e3160dbc307cff9ae734fd0cde67 Mon Sep 17 00:00:00 2001 From: Maxime GRIS Date: Fri, 1 Nov 2019 11:27:12 +0100 Subject: [PATCH] [Bumped Version] 6.3.1 --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- package.json | 4 ++-- src/app/shared/shared.module.ts | 5 +++-- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2693ea6..643bdcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ +## 6.3.1 (2019-11-01) + +* [Bumped Version] 6.3.1 ([66e8cc8](https://github.com/maximegris/angular-electron/commit/66e8cc8)) +* #395 - require is not defined ([c4b2cb6](https://github.com/maximegris/angular-electron/commit/c4b2cb6)), closes [#395](https://github.com/maximegris/angular-electron/issues/395) +* misc/ import FormsModule ([017011a](https://github.com/maximegris/angular-electron/commit/017011a)) + + + ## 6.3.0 (2019-10-25) +* [Bumped Version] 6.3.0 ([09f9646](https://github.com/maximegris/angular-electron/commit/09f9646)) +* misc/ change Electron version to 7.0.0 in README ([6a4e2de](https://github.com/maximegris/angular-electron/commit/6a4e2de)) +* misc/ remove link to dependenciesci ([93d5a8c](https://github.com/maximegris/angular-electron/commit/93d5a8c)) * misc/ upgrade Electron 7 ([d732340](https://github.com/maximegris/angular-electron/commit/d732340)) diff --git a/README.md b/README.md index 9f33448..72131fa 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Maybe you want to execute the application in the browser with hot reload ? You c - Angular 5 & Electron 1 : Branch [angular5](https://github.com/maximegris/angular-electron/tree/angular5) - Angular 6 & Electron 3 : Branch [angular6](https://github.com/maximegris/angular-electron/tree/angular6) - Angular 7 & Electron 3 : Branch [angular7](https://github.com/maximegris/angular-electron/tree/angular7) -- Angular 8 & Electron 6 : (master) +- Angular 8 & Electron 7 : (master) [build-badge]: https://travis-ci.org/maximegris/angular-electron.svg?branch=master [build]: https://travis-ci.org/maximegris/angular-electron diff --git a/package.json b/package.json index bbbcf12..dd04f87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-electron", - "version": "6.3.0", + "version": "6.3.1", "description": "Angular 8 with Electron (Typescript + SASS + Hot Reload)", "homepage": "https://github.com/maximegris/angular-electron", "author": { @@ -37,7 +37,7 @@ "lint": "ng lint" }, "devDependencies": { - "@angular-builders/custom-webpack": "^8.2.0", + "@angular-builders/custom-webpack": "8.2.0", "@angular-devkit/build-angular": "0.803.6", "@angular/cli": "8.3.6", "@angular/common": "8.2.12", diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index d031f6b..9a66283 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -5,10 +5,11 @@ import { TranslateModule } from '@ngx-translate/core'; import { PageNotFoundComponent } from './components/'; import { WebviewDirective } from './directives/'; +import { FormsModule } from '@angular/forms'; @NgModule({ declarations: [PageNotFoundComponent, WebviewDirective], - imports: [CommonModule, TranslateModule], - exports: [TranslateModule, WebviewDirective] + imports: [CommonModule, TranslateModule, FormsModule], + exports: [TranslateModule, WebviewDirective, FormsModule] }) export class SharedModule {}