From a1d994ddb46197b73f2c06bcec57b340f8199f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xabi=20GO=C3=8FTY?= Date: Fri, 25 Oct 2024 08:27:19 +0200 Subject: [PATCH] Halloween is finished, theme is disabled. Disabled unecessary announcements. --- app.vue | 8 ++++---- components/DateHourHeader.vue | 2 +- components/TransitionOverlay.vue | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.vue b/app.vue index e1a1971..ea025bc 100644 --- a/app.vue +++ b/app.vue @@ -156,20 +156,20 @@ export default { /* Enable this at the start of each year (The QR code has to be updated)*/ discord: { time: () => DEVELOPEMENT_MODE ? 10000 : 1000 * 7, - allowed: () => true, + allowed: () => false, }, /* Enable when looking for new maintainers */ maintainer: { time: () => DEVELOPEMENT_MODE ? 10000 : 1000 * 10, - allowed: () => true && !this.isEndOfDay(), + allowed: () => false && !this.isEndOfDay(), }, announcement: { time: () => DEVELOPEMENT_MODE ? 10000 : 1000 * 7, - allowed: () => true && !this.isEndOfDay(), + allowed: () => false && !this.isEndOfDay(), }, announcement2: { time: () => DEVELOPEMENT_MODE ? 10000 : 1000 * 7, - allowed: () => true && !this.isEndOfDay(), + allowed: () => false && !this.isEndOfDay(), }, tannouncement: { time: () => DEVELOPEMENT_MODE ? 10000 : 1000 * 7, diff --git a/components/DateHourHeader.vue b/components/DateHourHeader.vue index 90963fb..f7de5e1 100644 --- a/components/DateHourHeader.vue +++ b/components/DateHourHeader.vue @@ -2,7 +2,7 @@ diff --git a/components/TransitionOverlay.vue b/components/TransitionOverlay.vue index 933f29a..3b121fd 100644 --- a/components/TransitionOverlay.vue +++ b/components/TransitionOverlay.vue @@ -10,7 +10,7 @@ export default { return { active: false, duration: 3000, - logoIut: "/assets/logo_iut_halloween.png", + logoIut: "/assets/logo_iut.svg", logoGP: "/assets/gitpoule.png", currentLogo: null };