Skip to content

Commit

Permalink
Halloween is finished, theme is disabled. Disabled unecessary announc…
Browse files Browse the repository at this point in the history
…ements.
  • Loading branch information
Xabi08YT committed Oct 25, 2024
1 parent 097fa1e commit a1d994d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/DateHourHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div id="header">
<p>{{ currentDate }}</p>
<p>{{ currentTime }}</p>
<img style="width: 150px; margin-left: 150px;" src="/assets/logo_iut_halloween.png" />
<img style="width: 150px; margin-left: 150px;" src="/assets/logo_iut.svg" />
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion components/TransitionOverlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
Expand Down

0 comments on commit a1d994d

Please sign in to comment.