Skip to content

Commit 94542df

Browse files
committed
chore(release): bump version number to 1.2.0
1 parent c2e9783 commit 94542df

File tree

5 files changed

+85
-3
lines changed

5 files changed

+85
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.2.0"></a>
2+
# [1.2.0](https://github.com/anthonynahas/ngx-material-pages/compare/v1.1.6...v1.2.0) (2018-04-16)
3+
4+
5+
### Bug Fixes
6+
7+
* **ngx-material-pages:** replaced ng-deep with internal manipulation with renderer2 ([51c75dc](https://github.com/anthonynahas/ngx-material-pages/commit/51c75dc))
8+
9+
10+
111
<a name="1.1.6"></a>
212
## [1.1.6](https://github.com/anthonynahas/ngx-material-pages/compare/v1.1.5...v1.1.6) (2018-04-15)
313

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ This library consists of 4 essential components.
155155
</ngx-material-pages>
156156
```
157157

158+
## Other Angular Libraries
159+
- [ngx-auth-firebaseui](https://github.com/AnthonyNahas/ngx-auth-firebaseui)
160+
- [ngx-material-password-strength](https://github.com/AnthonyNahas/ngx-material-password-strength)
161+
158162
## Support
159163
Drop an email to: [Anthony Nahas](mailto:[email protected]) and I will help you!
160164

demo/src/app/getting-started/getting-started.component.html

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,10 +535,77 @@ <h1>Getting Started</h1>
535535
</mat-card>
536536
</ngx-material-page-content>
537537
</ngx-material-page-loader>
538+
539+
<!--8-->
538540
<ngx-material-page-loader>
539-
<ngx-material-page-outlook title="Run demo locally"></ngx-material-page-outlook>
541+
<ngx-material-page-outlook title="Run demo locally">
542+
<img style="width: 50px; height: 50px" src="../../assets/icons/github.svg">
543+
</ngx-material-page-outlook>
540544
<ngx-material-page-content>
541-
<mat-card-title>Interested </mat-card-title>
545+
<mat-card-title-group><a href="https://github.com/AnthonyNahas/ngx-material-pages"
546+
mat-button
547+
color="primary">Clone the repo</a></mat-card-title-group>
548+
<mat-card-title>Interested? Try it out on your machine
549+
</mat-card-title>
550+
<div class="comment-container">
551+
<p>Clone this repo by running this following command</p>
552+
</div>
553+
<div fxLayout="row" fxLayoutAlign="space-between">
554+
<pre><code highlight
555+
[code]="'git clone https://github.com/AnthonyNahas/ngx-material-pages.git'"></code></pre>
556+
<button mat-icon-button
557+
ngxClipboard
558+
[cbContent]="'git clone https://github.com/AnthonyNahas/ngx-material-pages.git'"
559+
matTooltip="copy"
560+
(click)="showCopyMessage('git clone https://github.com/AnthonyNahas/ngx-material-pages.git')">
561+
<mat-icon aria-label="copy content" class="mat-18">content_copy</mat-icon>
562+
</button>
563+
</div>
564+
<div class="comment-container">
565+
<p>navigate to the demo directory</p>
566+
</div>
567+
<div fxLayout="row" fxLayoutAlign="space-between">
568+
<pre><code highlight
569+
[code]="'$ cd demo'"></code></pre>
570+
<button mat-icon-button
571+
ngxClipboard
572+
[cbContent]="'cd demo'"
573+
matTooltip="copy"
574+
(click)="showCopyMessage('cd demo')">
575+
<mat-icon aria-label="copy content" class="mat-18">content_copy</mat-icon>
576+
</button>
577+
</div>
578+
<div class="comment-container">
579+
<p>install the dependencies</p>
580+
</div>
581+
<div fxLayout="row" fxLayoutAlign="space-between">
582+
<pre><code highlight
583+
[code]="'$ npm i'"></code></pre>
584+
<button mat-icon-button
585+
ngxClipboard
586+
[cbContent]="'npm i'"
587+
matTooltip="copy"
588+
(click)="showCopyMessage('npm i')">
589+
<mat-icon aria-label="copy content" class="mat-18">content_copy</mat-icon>
590+
</button>
591+
</div>
592+
<div class="comment-container">
593+
<p>start the app</p>
594+
</div>
595+
<div fxLayout="row" fxLayoutAlign="space-between">
596+
<pre><code highlight
597+
[code]="'$ ng serve --open'"></code></pre>
598+
<button mat-icon-button
599+
ngxClipboard
600+
[cbContent]="'ng serve --open'"
601+
matTooltip="copy"
602+
(click)="showCopyMessage('ng serve --open')">
603+
<mat-icon aria-label="copy content" class="mat-18">content_copy</mat-icon>
604+
</button>
605+
</div>
606+
<div class="comment-container">
607+
<p>the app is now hosted on http://localhost:4200/</p>
608+
</div>
542609
</ngx-material-page-content>
543610
</ngx-material-page-loader>
544611
</ngx-material-pages>

demo/src/assets/icons/github.svg

Lines changed: 1 addition & 0 deletions
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-material-pages",
33
"description": "Open source library for angular apps to illustrate custom material pages content with steps (ideal for tutorials and explanation purposes)",
4-
"version": "1.1.6",
4+
"version": "1.2.0",
55
"homepage": "https://github.com/anthonynahas/ngx-material-pages",
66
"author": {
77
"name": "anthonynahas",

0 commit comments

Comments
 (0)