Skip to content

Commit

Permalink
Update maintenance page
Browse files Browse the repository at this point in the history
  • Loading branch information
karlomikus committed Nov 23, 2024
1 parent 2fd2f51 commit 1396610
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# v3.5.0
## New
- Show prices in cocktail details
- Add final cocktail price calculation to menu
- Support target pour cost
- Add "Add missing cocktails from bar shelf" action to menu
- This will add a new menu category with all menus from bar shelf
- You can now export menu as CSV
- Add "Clear category" action to menu category

# v3.4.1
## Fixes
- Fix issues with updating menu prices
Expand Down
4 changes: 3 additions & 1 deletion src/locales/messages/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,9 @@
"currency-format-notice": "Currency must be in ISO 4271 (Alpha3) format",
"price-categories-empty": "There is no price categories",
"no-matching-units": "No matching unit pricing found",
"select": "Select price"
"select": "Select price",
"category-delete-success": "Price category deleted",
"category-confirm-delete": "This will permanently price category with name \\\"{name}\\\"."
},
"prices": {
"add": "Add price",
Expand Down
25 changes: 24 additions & 1 deletion src/views/ServiceDownView.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<template>
Service is currently in maintenance.
<div class="page-maintenance">
<div class="block-container block-container--padded">
<div class="page-maintenance__icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M5.32943 3.27158C6.56252 2.8332 7.9923 3.10749 8.97927 4.09446C9.96652 5.08171 10.2407 6.51202 9.80178 7.74535L20.6465 18.5902L18.5252 20.7115L7.67936 9.86709C6.44627 10.3055 5.01649 10.0312 4.02952 9.04421C3.04227 8.05696 2.7681 6.62665 3.20701 5.39332L5.44373 7.63C6.02952 8.21578 6.97927 8.21578 7.56505 7.63C8.15084 7.04421 8.15084 6.09446 7.56505 5.50868L5.32943 3.27158ZM15.6968 5.15512L18.8788 3.38736L20.293 4.80157L18.5252 7.98355L16.7574 8.3371L14.6361 10.4584L13.2219 9.04421L15.3432 6.92289L15.6968 5.15512ZM8.62572 12.9333L10.747 15.0546L5.79729 20.0044C5.2115 20.5902 4.26175 20.5902 3.67597 20.0044C3.12464 19.453 3.09221 18.5793 3.57867 17.99L3.67597 17.883L8.62572 12.9333Z"></path></svg>
</div>
<p>
Service is currently in maintenance mode. It's unavailable until upgrades are complete. Please try again later.
<br>
<a href="https://barassistant.app">Homepage</a> &middot; <a href="/">Try again</a>
</p>
</div>
</div>
</template>

<style scoped>
.page-maintenance {
text-align: center;
padding: 30px;
}
.page-maintenance__icon {
width: 40px;
margin: 0 auto;
}
</style>

0 comments on commit 1396610

Please sign in to comment.