Skip to content

Commit

Permalink
Merge pull request #51 from digital-technology-agency/feature-ui
Browse files Browse the repository at this point in the history
Feature ui
  • Loading branch information
digitaltechnologyagency committed Nov 6, 2020
2 parents 2a275da + 899692b commit 4bca5da
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ This project was generated with [Angular CLI](https://github.com/angular/angular


## Downloads
[![Windows app](./pic/win-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.13/password-generator-installer-1.0.13.exe)
[![Linux app](./pic/linux-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.13/password-generator-1.0.13.AppImage)
[![Mac app](./pic/mac-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.13/password-generator-1.0.13-mac.tar.gz)
[![Windows app](./pic/win-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.15/password-generator-installer-1.0.15.exe)
[![Linux app](./pic/linux-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.15/password-generator-1.0.15.AppImage)
[![Mac app](./pic/mac-dwnl.png)](https://github.com/digital-technology-agency/password-generator/releases/download/1.0.15/password-generator-1.0.15-mac.tar.gz)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "password-generator",
"version": "1.0.14",
"version": "1.0.15",
"description": "Password manager. Create, save and copied",
"homepage": "https://dta.agency",
"author": {
Expand Down
2 changes: 2 additions & 0 deletions src/app/@core/local/locals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class Local {
'Password length': 'Password length',
'Digits': 'Digits',
'Special': 'Special',
'Wiki online': 'Wiki online',
'Write to developer': 'Write to developer',
Comment: 'Comment',
Login: 'Login',
Expand Down Expand Up @@ -73,6 +74,7 @@ export class Local {
'Password length': 'Длинна пароля',
'Digits': 'Цифры',
'Special': 'Спец. символы',
'Wiki online': 'Онлайн инструкция',
'Write to developer': 'Написать разработчику',
Comment: 'Коментарий',
Login: 'Логин',
Expand Down
6 changes: 6 additions & 0 deletions src/app/@themes/components/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<mat-toolbar class="example-footer fixed-bottom footer">
<button mat-icon-button class="example-icon" (click)="wikiOnline()"
matTooltip="{{ 'Wiki online' | translate }}"
matTooltipPosition="above">
<mat-icon color="primary">help_outline</mat-icon>
</button>
<span>{{ 'Wiki online' | translate }}</span>
<button mat-icon-button class="example-icon" (click)="feedBack()"
matTooltip="{{ 'Write to developer' | translate }}"
matTooltipPosition="above">
Expand Down
4 changes: 4 additions & 0 deletions src/app/@themes/components/footer/footer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ export class FooterComponent implements OnInit, OnDestroy {
this.electron.shell.openExternal(`https://github.com/digital-technology-agency/password-generator/issues/new?assignees=&labels=&template=feature_request.md&title=`)
}

wikiOnline() {
this.electron.shell.openExternal(`https://github.com/digital-technology-agency/password-generator/wiki`)
}

openActualVersion() {
this.electron.shell.openExternal(this.releaseUrl);
}
Expand Down

0 comments on commit 4bca5da

Please sign in to comment.