2 Commits
1.2 ... main

Author SHA1 Message Date
5950299cfb update dependencies 2023-08-15 10:12:47 +02:00
657d48712f update packages and check compability 2023-03-13 21:18:51 +01:00
7 changed files with 11645 additions and 12417 deletions

View File

@@ -1,6 +1,8 @@
# CocktailShaker App
Project in the context of the event [Content Exploitation Models and their Implementation in Mobile Systems](https://www.tu-ilmenau.de/modultafeln/Informatik/Bachelor/2013/fach/13137/) under Dr. Jürgen Nützel
This Project only supports NODE Version < 18.
## Warning
The project is not commercial. It is just a report of a private event. All the information, resources or brand names found in the text or appearing in the photos are provided for information and demonstration purposes only. Any types of direct or indirect marketing are not assumed.
The authors of the project warn about the damage alcohol does and don't take any responsibility for a result of the use of any content posted.

View File

@@ -1,6 +1,9 @@
# CocktailShaker App
[English Readme](Readme-EN.md)
Dieses Projekt unterstützt Node bis zur Version 17.
Ein Projekt für die Veranstaltung [Content Verwertungsmodelle und ihre Umsetzung in mobilen Systemen](https://www.tu-ilmenau.de/modultafeln/Informatik/Bachelor/2013/fach/13137/) unter Dr. Jürgen Nützel.
Für den Rahmen der App war vorgegeben:

View File

@@ -7,8 +7,6 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"resources": "cordova-res android && cordova-res ios && node ./resources/sync.js android && node ./resources/sync.js ios"
},
@@ -16,38 +14,36 @@
"@capacitor/android": "2.4.7",
"@capacitor/core": "2.4.7",
"@capacitor/ios": "2.4.7",
"@ionic-native/core": "^5.33.1",
"@ionic-native/social-sharing": "^5.33.1",
"@ionic/cli": "^6.15.0",
"@ionic/pwa-elements": "^3.0.2",
"@ionic/storage": "^3.0.4",
"@ionic/vue": "^5.4.0",
"@ionic/vue-router": "^5.4.0",
"@vueuse/core": "^5.0.2",
"axios": "^0.21.1",
"cordova-plugin-x-socialsharing": "^6.0.3",
"cordova-res": "^0.15.3",
"core-js": "^3.6.5",
"@ionic-native/core": "^5.36.0",
"@ionic-native/social-sharing": "^5.36.0",
"@ionic/cli": "^6.20.9",
"@ionic/pwa-elements": "^3.2.2",
"@ionic/storage": "^3.0.6",
"@ionic/vue": "^5.9.4",
"@ionic/vue-router": "^5.9.4",
"@vueuse/core": "^5.3.0",
"axios": "^0.21.4",
"cordova-plugin-x-socialsharing": "^6.0.4",
"cordova-res": "^0.15.4",
"core-js": "^3.32.0",
"es6-promise-plugin": "^4.2.2",
"fs": "^0.0.1-security",
"register-service-worker": "^1.7.1",
"vue": "^3.0.0-0",
"vue-router": "^4.0.0-0"
"fs": "0.0.1-security",
"pnpm": "^8.6.12",
"register-service-worker": "^1.7.2",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@capacitor/cli": "2.4.7",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/test-utils": "^2.0.0-0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"vue-jest": "^5.0.0-0"
"@vue/cli-plugin-babel": "~4.5.19",
"@vue/cli-plugin-e2e-cypress": "~4.5.19",
"@vue/cli-plugin-eslint": "~4.5.19",
"@vue/cli-plugin-pwa": "^4.5.19",
"@vue/cli-plugin-router": "~4.5.19",
"@vue/cli-service": "~4.5.19",
"@vue/compiler-sfc": "^3.3.4",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^7.20.0"
},
"resolutions": {
"cypress": "^4.4.0"

11609
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,10 @@
<ion-header collapse="condense">
<ion-toolbar>
<ion-title size="large"
>Cocktails {{ cocktails ? "#" + cocktails.length : "please restore" }}</ion-title
>Cocktails
{{
cocktails ? "#" + cocktails.length : "please restore"
}}</ion-title
>
</ion-toolbar>
</ion-header>

View File

@@ -83,7 +83,6 @@
>{{ ingred.name }}</ion-select-option
>
</ion-select>
<p>{{ingredient.ingredient === cocktail.ingredients[index].ingredient}}</p>
<ion-icon
:icon="trash"
@@ -228,7 +227,7 @@ export default {
const doEditCocktail = async (cocktail) => {
//console.log("editing: ", cocktail);
cocktail?cocktail:false;
console.log(cocktail?cocktail:false);
//editCocktail(cocktail);
//router.push("/tabs/Cocktails")
};

12384
yarn.lock

File diff suppressed because it is too large Load Diff