Compare commits

..
2 Commits
Author SHA1 Message Date
tanshu a62018ad1f Version Bump v11.1.2 2023-03-14 13:27:40 +05:30
tanshu da46591313 Fix: Happy hour product button color was being overwritten by the face color 2023-03-14 13:27:05 +05:30
7 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "11.1.1"
__version__ = "11.1.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "barker"
version = "11.1.1"
version = "11.1.2"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "bookie",
"version": "11.1.1",
"version": "11.1.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
@@ -10,15 +10,18 @@
<h3 class="item-name">Back</h3>
</mat-card>
<mat-card
class="face flex flex-col square-button mr-5, mb-5"
class="flex flex-col square-button mr-5, mb-5"
matRipple
*ngFor="let item of list"
(click)="addProduct(item)"
[class.yellow300]="item.hasHappyHour"
[class.grey800]="item.isNotAvailable"
[class.face]="!item.hasHappyHour && !item.isNotAvailable"
>
<h3 class="item-name">{{ item.name }}</h3>
<mat-card-subtitle class="face center">{{ item.price | currency : 'INR' }}</mat-card-subtitle>
<mat-card-subtitle class="center" [class.face]="!item.hasHappyHour && !item.isNotAvailable">{{
item.price | currency : 'INR'
}}</mat-card-subtitle>
</mat-card>
</div>
</mat-card-content>
+1 -1
View File
@@ -1,5 +1,5 @@
export const environment = {
production: true,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.1.1',
version: '11.1.2',
};
+1 -1
View File
@@ -5,7 +5,7 @@
export const environment = {
production: false,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.1.1',
version: '11.1.2',
};
/*
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "frank"
version = "11.1.1"
version = "11.1.2"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]