diff --git a/CHANGELOG.md b/CHANGELOG.md index 442f603..a391db7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +# v.0.3.0 (Release Candidate 1) +## 🚀 Features +- Swagger Documentation + +## 🐛 Bugfixes +- Bugfix on search page for Band datasets + +# v.0.2.0 (Beta) +## 🚀 Features +- Adding "Test Environment" banner in the bottom right corner +- License handling system +- New SQL-Injection exercise 2.1 +- Solution code based on Matrikelnummer and number of completed exercises + +## 🌟 Enhancements +- Improve exercise solution of 2.1, 2.2, 2.3, 2.4 and 2.6 +- Light mode improvements +- Global color schema +- More feedback through notifications +- More hints on text fields +- Redesign account pages, split payments and addresses, new dashboard + +## 🐛 Bugfixes +- More server stability +- Bugfix file manager in Electron application + + # v.0.1.0 (Alpha) ## 🚀 Features - Frontend diff --git a/package.json b/package.json index effbe9c..ffe5278 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eventmaster", - "version": "0.2.0", + "version": "0.3.0", "author": "Tobias Zoghaib", "description": "Hackable ticket store for educational purposes", "license": "MIT", diff --git a/src/stores/concert.store.ts b/src/stores/concert.store.ts index c2e2eef..16d9c86 100644 --- a/src/stores/concert.store.ts +++ b/src/stores/concert.store.ts @@ -95,13 +95,5 @@ export const useConcertStore = defineStore("concertStore", { this.concert = new ConcertDetailsApiModel() this.showEditDialog = true }, - - editConcert(concert: ConcertModel) { - // todo - }, - - async deleteConcert(item: ConcertModel) { - // todo - } } }) \ No newline at end of file