Skip to content

Commit 671b6a3

Browse files
committed
[Bumped Version] 6.3.1
1 parent 595113d commit 671b6a3

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1+
## <small>6.3.1 (2019-11-01)</small>
2+
3+
* [Bumped Version] 6.3.1 ([66e8cc8](https://github.com/maximegris/angular-electron/commit/66e8cc8))
4+
* #395 - require is not defined ([c4b2cb6](https://github.com/maximegris/angular-electron/commit/c4b2cb6)), closes [#395](https://github.com/maximegris/angular-electron/issues/395)
5+
* misc/ import FormsModule ([017011a](https://github.com/maximegris/angular-electron/commit/017011a))
6+
7+
8+
19
## 6.3.0 (2019-10-25)
210

11+
* [Bumped Version] 6.3.0 ([09f9646](https://github.com/maximegris/angular-electron/commit/09f9646))
12+
* misc/ change Electron version to 7.0.0 in README ([6a4e2de](https://github.com/maximegris/angular-electron/commit/6a4e2de))
13+
* misc/ remove link to dependenciesci ([93d5a8c](https://github.com/maximegris/angular-electron/commit/93d5a8c))
314
* misc/ upgrade Electron 7 ([d732340](https://github.com/maximegris/angular-electron/commit/d732340))
415

516

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Maybe you want to execute the application in the browser with hot reload ? You c
8989
- Angular 5 & Electron 1 : Branch [angular5](https://github.com/maximegris/angular-electron/tree/angular5)
9090
- Angular 6 & Electron 3 : Branch [angular6](https://github.com/maximegris/angular-electron/tree/angular6)
9191
- Angular 7 & Electron 3 : Branch [angular7](https://github.com/maximegris/angular-electron/tree/angular7)
92-
- Angular 8 & Electron 6 : (master)
92+
- Angular 8 & Electron 7 : (master)
9393

9494
[build-badge]: https://travis-ci.org/maximegris/angular-electron.svg?branch=master
9595
[build]: https://travis-ci.org/maximegris/angular-electron

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-electron",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"description": "Angular 8 with Electron (Typescript + SASS + Hot Reload)",
55
"homepage": "https://github.com/maximegris/angular-electron",
66
"author": {
@@ -37,7 +37,7 @@
3737
"lint": "ng lint"
3838
},
3939
"devDependencies": {
40-
"@angular-builders/custom-webpack": "^8.2.0",
40+
"@angular-builders/custom-webpack": "8.2.0",
4141
"@angular-devkit/build-angular": "0.803.6",
4242
"@angular/cli": "8.3.6",
4343
"@angular/common": "8.2.12",

Diff for: src/app/shared/shared.module.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ import { TranslateModule } from '@ngx-translate/core';
55

66
import { PageNotFoundComponent } from './components/';
77
import { WebviewDirective } from './directives/';
8+
import { FormsModule } from '@angular/forms';
89

910
@NgModule({
1011
declarations: [PageNotFoundComponent, WebviewDirective],
11-
imports: [CommonModule, TranslateModule],
12-
exports: [TranslateModule, WebviewDirective]
12+
imports: [CommonModule, TranslateModule, FormsModule],
13+
exports: [TranslateModule, WebviewDirective, FormsModule]
1314
})
1415
export class SharedModule {}

0 commit comments

Comments
 (0)