Skip to content

Commit

Permalink
moneymoney-1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Sep 27, 2023
1 parent 616fdc2 commit 2995693
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ npm run dev

## Changelog

### 1.1.0 (2023-09-27)
- Added zero risk assets to annual chart
- Added creditcard operation copy feature
- Fixed many bugs

### 1.0.0 (2023-09-09)
- MoneyMoney frontend migrated to vue3 and vuetify3
- All features were added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuetify-project",
"version": "1.0.0",
"version": "1.1.0",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
2 changes: 1 addition & 1 deletion src/components/FastOperationsCoverageCU.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
} else if (this.mode=="C"){
return this.$t("Adding a new fast operations coverage")
} else if (this.mode=="D"){
return this.$t("Deleting a new fast operations coverage")
return this.$t("Deleting a fast operations coverage")
}
},
button(){
Expand Down
21 changes: 20 additions & 1 deletion src/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -746,5 +746,24 @@
"Total balance: [0]": "Saldo total: [0]",
"You can't copy this account operation": "No puedes copiar esta operación de cuenta",
"Widgets": "Widgets",
"You've done something forbidden": "Has hecho algo prohibido"
"You've done something forbidden": "Has hecho algo prohibido",
"Zero risk investments": "Inversiones con riesgo cero",
"Updating a fast operations coverage": "Actualizando una cobertura de operaciones rápidas",
"Adding a new fast operations coverage": "Añadiendo una nueva cobertura de operaciones rápidas",
"Deleting a fast operations coverage": "Borrando una cobertura de operaciones rápidas",
"Do you want to delete this fast operations coverage?": "¿Quieres borrar esta cobertura de operaciones rápidas?",
"Restore current version catalog": "Restaura la versión actual del catálogo",
"Date and time seconds diff": "Diferencia en segundos de la fecha y hora",
"Updating a products comparation": "Actualizando una comparación de productos",
"Deleting a products comparation": "Borrando una comparación de productos",
"'[0]' operations at year [1]": "'[0]' operaciones en el año [1]",
"'[0]' operations at [1]-[2]": "'[0]' operaciones en [1]-[2]",
"Total derivatives: [0]": "Total de derivados: [0]",
"Fast operations coverage orders": "Órdenes de cobertura de operaciones rápidas",
"Add an fast operations coverage": "Añade una cobertura de operaciones rápidas",
"Zero risk assets": "Activos con riesgo cero",
"Can't sum amounts due to they have different currencies": "No puedo sumar las cantidades debido a que tienen diferentes divisas",
"Field can be empty or a number with [0] digits at most": "El campo puede estar vacío o ser un número con [0] digitos como mucho",
"Field must be a number with at most [0] digits": "El campo puede ser un número con [0] digitos como mucho",
"Must be a number with [0] decimal places at most": "Debe ser un número con [0] decimales como mucho"
}
4 changes: 2 additions & 2 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const useStore = defineStore('global', {
logged:false,
count:0,
apiroot: import.meta.env.VITE_DJANGO_MONEYMONEY_URL,
version: "1.0.0",
versiondate: new Date(2023, 8, 9, 5, 43),
version: "1.1.0",
versiondate: new Date(2023, 8, 27, 4, 43),
publicPath: import.meta.env.VUE_APP_PUBLIC_PATH,
catalog_manager: false,
accounts: new Map(),
Expand Down

0 comments on commit 2995693

Please sign in to comment.