Compare commits
4 commits
d14f47cc8b
...
f86249a0ec
Author | SHA1 | Date | |
---|---|---|---|
f86249a0ec | |||
84820ffeff | |||
d11bc8667d | |||
efa3b11634 |
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).
|
||||
|
||||
## [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
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "zgo",
|
||||
"version": "1.4.1",
|
||||
"version": "2.0.0-beta",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
style="margin-top: 10px;
|
||||
margin-bottom: 20px;">
|
||||
<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>
|
||||
<div></div>
|
||||
|
|
|
@ -11,6 +11,10 @@
|
|||
background: lightgray;
|
||||
}
|
||||
|
||||
.icon{
|
||||
font-family: 'Material Icons';
|
||||
}
|
||||
|
||||
.orderheader {
|
||||
background-color: lightgrey !important;
|
||||
}
|
||||
|
|
|
@ -1,10 +1,16 @@
|
|||
<app-header></app-header>
|
||||
<div align="center">
|
||||
<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 >
|
||||
<tr>
|
||||
<td width="45%">
|
||||
<button class="text" mat-raised-button [routerLink]="['/shop']" color="primary">
|
||||
<mat-icon class="icon">home</mat-icon>
|
||||
{{ vE.listordersBacktoshopBtn }}
|
||||
</button>
|
||||
</td>
|
||||
|
@ -13,6 +19,7 @@
|
|||
<td width="45%">
|
||||
<button mat-raised-button color="primary"
|
||||
class="text" (click)="openDbExport()">
|
||||
<mat-icon class="icon">get_app</mat-icon>
|
||||
{{ vE.listordersExportOrders }}
|
||||
</button>
|
||||
</td>
|
||||
|
|
Loading…
Reference in a new issue