Compare commits

...

2 commits

Author SHA1 Message Date
Alexandre Aubin
9a43eccffd Update changelog for 4.2.5.1 2021-10-24 23:39:57 +02:00
Alexandre Aubin
43611ede4c Add spooky easter egg ;) 2021-10-24 23:39:04 +02:00
4 changed files with 25 additions and 0 deletions

View file

@ -144,6 +144,11 @@ export default {
if (today.getDate() === 1 && today.getMonth() + 1 === 4) {
this.$store.commit('SET_SPINNER', 'magikarp')
}
// Halloween easter egg ;)
if (today.getDate() === 31 && today.getMonth() + 1 === 10) {
this.$store.commit('SET_SPINNER', 'spookycat')
}
}
}
</script>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

@ -103,5 +103,19 @@ export default {
99% { transform: scale(-1, 1); margin-left: 0;}
}
}
&.spookycat {
height: 40px;
width: 65px;
background-image: url('../../assets/spinners/spookycat.gif');
animation-name: back-and-forth-spookycat;
@keyframes back-and-forth-spookycat {
0%, 100% { transform: scale(1, 1); margin-left: 0; }
49% { transform: scale(1, 1); margin-left: calc(100% - 100px);}
50% { transform: scale(-1, 1); margin-left: calc(100% - 100px);}
99% { transform: scale(-1, 1); margin-left: 0;}
}
}
}
</style>

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
yunohost-admin (4.2.5.1) stable; urgency=low
- [enh] Spooky easter egg ;) (43611ede)
-- Alexandre Aubin <alex.aubin@mailoo.org> Sun, 24 Oct 2021 23:39:41 +0200
yunohost-admin (4.2.5) stable; urgency=low
- [fix] user password change not working properly (c26c4c9)