Skip to content

Commit

Permalink
[Bumped Version] 6.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegris committed Nov 1, 2019
1 parent 595113d commit 671b6a3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

* [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))


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand Down
5 changes: 3 additions & 2 deletions src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}

0 comments on commit 671b6a3

Please sign in to comment.