Merge pull request #3388 from gradido/release-2_4_1-beta

chore(release): v2.4.1 beta
This commit is contained in:
einhornimmond 2024-11-19 08:26:24 +01:00 committed by GitHub
commit 528ce24e24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 16 additions and 11 deletions

View File

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
#### [2.4.0](https://github.com/gradido/gradido/compare/2.3.1...2.4.0)
#### [2.4.1](https://github.com/gradido/gradido/compare/2.3.1...2.4.1)
- feat(backend): auto register new user in humhub [`#3386`](https://github.com/gradido/gradido/pull/3386)
- feat(backend): try and catch user sync [`#3385`](https://github.com/gradido/gradido/pull/3385)

View File

@ -3,7 +3,7 @@
"description": "Administration Interface for Gradido",
"main": "index.js",
"author": "Moriz Wahl",
"version": "2.4.0",
"version": "2.4.1",
"license": "Apache-2.0",
"private": false,
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "gradido-backend",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido unified backend providing an API-Service for Gradido Transactions",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/backend",

View File

@ -1,6 +1,6 @@
{
"name": "gradido-database",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido Database Tool to execute database migrations",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/database",

View File

@ -1,6 +1,6 @@
{
"name": "gradido-dht-node",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido dht-node module",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/",

View File

@ -1,6 +1,6 @@
{
"name": "gradido-dlt-connector",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido DLT-Connector",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/",

View File

@ -1,6 +1,6 @@
{
"name": "gradido-federation",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido federation module providing Gradido-Hub-Federation and versioned API for inter community communication",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/federation",

View File

@ -1,6 +1,6 @@
{
"name": "bootstrap-vue-gradido-wallet",
"version": "2.4.0",
"version": "2.4.1",
"private": true,
"scripts": {
"start": "node run/server.js",

View File

@ -19,7 +19,7 @@
required
:no-flip="true"
type="date"
@update:model-value="date = $event"
@update:model-value="handleDateChange"
>
<template #nav-prev-year><span></span></template>
<template #nav-next-year><span></span></template>
@ -128,6 +128,11 @@ const [date, dateProps] = defineField('date')
const { meta: dataFieldMeta } = useField('date', 'required')
const handleDateChange = (newDate) => {
date.value = newDate
emit('update:model-value', { ...props.modelValue, date: newDate })
}
const showMessage = computed(() => {
if (props.maxGddThisMonth <= 0 && props.maxGddLastMonth <= 0) return true
if (props.modelValue.date)

View File

@ -11,7 +11,7 @@
<div class="mb-3"></div>
<contribution-form
:key="computedKeyFromForm"
:model-value="form"
v-model="form"
:is-this-month="isThisMonth"
:minimal-date="minimalDate"
:max-gdd-last-month="maxForMonths[0]"

View File

@ -1,6 +1,6 @@
{
"name": "gradido",
"version": "2.4.0",
"version": "2.4.1",
"description": "Gradido",
"main": "index.js",
"repository": "git@github.com:gradido/gradido.git",