diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 3049945..b251362 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,5 +1,5 @@ -name: Chore App Build and Push Docker Images -run-name: ${{ gitea.actor }} is building the chore app 🚀 +name: Chore App Build, Test, and Push Docker Images +run-name: ${{ gitea.actor }} is building the Chores [${{ gitea.ref_name }}@${{ gitea.sha }}] 🚀 on: push: branches: diff --git a/backend/config/version.py b/backend/config/version.py index 6bea591..821b588 100644 --- a/backend/config/version.py +++ b/backend/config/version.py @@ -2,7 +2,7 @@ # file: config/version.py import os -BASE_VERSION = "1.0.4RC5" # update manually when releasing features +BASE_VERSION = "1.0.4" # update manually when releasing features def get_full_version() -> str: """ diff --git a/frontend/vue-app/src/common/backendEvents.ts b/frontend/vue-app/src/common/backendEvents.ts index bd834d5..0d10080 100644 --- a/frontend/vue-app/src/common/backendEvents.ts +++ b/frontend/vue-app/src/common/backendEvents.ts @@ -8,7 +8,6 @@ export function useBackendEvents(userId: Ref) { const connect = () => { if (eventSource) eventSource.close() if (userId.value) { - console.log('Connecting to backend events for user:', userId.value) eventSource = new EventSource(`/events?user_id=${userId.value}`) eventSource.onmessage = (event) => { @@ -24,7 +23,6 @@ export function useBackendEvents(userId: Ref) { onMounted(connect) watch(userId, connect) onBeforeUnmount(() => { - console.log('Disconnecting from backend events for user:', userId.value) eventSource?.close() }) } diff --git a/frontend/vue-app/src/components/shared/LoginButton.vue b/frontend/vue-app/src/components/shared/LoginButton.vue index b7044f6..d0e78f5 100644 --- a/frontend/vue-app/src/components/shared/LoginButton.vue +++ b/frontend/vue-app/src/components/shared/LoginButton.vue @@ -36,7 +36,6 @@ const avatarInitial = ref('?') // Fetch user profile async function fetchUserProfile() { try { - console.log('Fetching user profile') const res = await fetch('/api/user/profile', { credentials: 'include' }) if (!res.ok) { console.error('Failed to fetch user profile')