[Bumped Version] 6.3.1
This commit is contained in:
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,5 +1,16 @@
|
|||||||
|
## <small>6.3.1 (2019-11-01)</small>
|
||||||
|
|
||||||
|
* [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)
|
## 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))
|
* misc/ upgrade Electron 7 ([d732340](https://github.com/maximegris/angular-electron/commit/d732340))
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -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 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 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 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-badge]: https://travis-ci.org/maximegris/angular-electron.svg?branch=master
|
||||||
[build]: https://travis-ci.org/maximegris/angular-electron
|
[build]: https://travis-ci.org/maximegris/angular-electron
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "angular-electron",
|
"name": "angular-electron",
|
||||||
"version": "6.3.0",
|
"version": "6.3.1",
|
||||||
"description": "Angular 8 with Electron (Typescript + SASS + Hot Reload)",
|
"description": "Angular 8 with Electron (Typescript + SASS + Hot Reload)",
|
||||||
"homepage": "https://github.com/maximegris/angular-electron",
|
"homepage": "https://github.com/maximegris/angular-electron",
|
||||||
"author": {
|
"author": {
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
"lint": "ng lint"
|
"lint": "ng lint"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-builders/custom-webpack": "^8.2.0",
|
"@angular-builders/custom-webpack": "8.2.0",
|
||||||
"@angular-devkit/build-angular": "0.803.6",
|
"@angular-devkit/build-angular": "0.803.6",
|
||||||
"@angular/cli": "8.3.6",
|
"@angular/cli": "8.3.6",
|
||||||
"@angular/common": "8.2.12",
|
"@angular/common": "8.2.12",
|
||||||
|
|||||||
@@ -5,10 +5,11 @@ import { TranslateModule } from '@ngx-translate/core';
|
|||||||
|
|
||||||
import { PageNotFoundComponent } from './components/';
|
import { PageNotFoundComponent } from './components/';
|
||||||
import { WebviewDirective } from './directives/';
|
import { WebviewDirective } from './directives/';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [PageNotFoundComponent, WebviewDirective],
|
declarations: [PageNotFoundComponent, WebviewDirective],
|
||||||
imports: [CommonModule, TranslateModule],
|
imports: [CommonModule, TranslateModule, FormsModule],
|
||||||
exports: [TranslateModule, WebviewDirective]
|
exports: [TranslateModule, WebviewDirective, FormsModule]
|
||||||
})
|
})
|
||||||
export class SharedModule {}
|
export class SharedModule {}
|
||||||
|
|||||||
Reference in New Issue
Block a user