Merge branch 'zgointl' of https://git.vergara.tech/Vergara_Tech/zgo into zgointl
This commit is contained in:
commit
73e4f32a27
5 changed files with 23 additions and 2 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.0.0-beta] - 2023-02-23
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Service to request language tokens from server
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Parametrization of text elements
|
||||||
|
|
||||||
## [1.4.1] - 2023-01-09
|
## [1.4.1] - 2023-01-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "zgo",
|
"name": "zgo",
|
||||||
"version": "1.4.1",
|
"version": "2.0.0-beta",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
style="margin-top: 10px;
|
style="margin-top: 10px;
|
||||||
margin-bottom: 20px;">
|
margin-bottom: 20px;">
|
||||||
<div >© 2023 Vergara Technologies LLC</div>
|
<div >© 2023 Vergara Technologies LLC</div>
|
||||||
<div class="tiny">Version 1.4.1</div>
|
<div class="tiny">Version 2.0.0-beta</div>
|
||||||
<div class="tiny">{{ vE.mainPriceData }}</div>
|
<div class="tiny">{{ vE.mainPriceData }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div></div>
|
<div></div>
|
||||||
|
|
|
@ -11,6 +11,10 @@
|
||||||
background: lightgray;
|
background: lightgray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon{
|
||||||
|
font-family: 'Material Icons';
|
||||||
|
}
|
||||||
|
|
||||||
.orderheader {
|
.orderheader {
|
||||||
background-color: lightgrey !important;
|
background-color: lightgrey !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,16 @@
|
||||||
<app-header></app-header>
|
<app-header></app-header>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h3 class="text">{{(ownerUpdate | async)!.name}}</h3>
|
<h3 class="text">{{(ownerUpdate | async)!.name}}</h3>
|
||||||
|
<p class="text">Session valid until: {{(ownerUpdate | async)!.expiration | date}}
|
||||||
|
<button mat-icon-button color="primary">
|
||||||
|
<mat-icon class="icon">queue</mat-icon>
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
<table >
|
<table >
|
||||||
<tr>
|
<tr>
|
||||||
<td width="45%">
|
<td width="45%">
|
||||||
<button class="text" mat-raised-button [routerLink]="['/shop']" color="primary">
|
<button class="text" mat-raised-button [routerLink]="['/shop']" color="primary">
|
||||||
|
<mat-icon class="icon">home</mat-icon>
|
||||||
{{ vE.listordersBacktoshopBtn }}
|
{{ vE.listordersBacktoshopBtn }}
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
@ -13,6 +19,7 @@
|
||||||
<td width="45%">
|
<td width="45%">
|
||||||
<button mat-raised-button color="primary"
|
<button mat-raised-button color="primary"
|
||||||
class="text" (click)="openDbExport()">
|
class="text" (click)="openDbExport()">
|
||||||
|
<mat-icon class="icon">get_app</mat-icon>
|
||||||
{{ vE.listordersExportOrders }}
|
{{ vE.listordersExportOrders }}
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue