Skip to content

Commit

Permalink
put back countdown module
Browse files Browse the repository at this point in the history
2025 date just got announced (6-7 sep 2025)
  • Loading branch information
meadowsys committed Oct 1, 2024
1 parent 9b20abf commit eca16fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions lib/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ class Application {

static modules_init() {
this.modules = {
Activity: this.make_module({
name: "Activity",
main_path: "../modules/Activity/module.js",
main_class: require("../modules/activity"),
config: require("../modules/activity-config.json")
}),
// Activity: this.make_module({
// name: "Activity",
// main_path: "../modules/Activity/module.js",
// main_class: require("../modules/activity"),
// config: require("../modules/activity-config.json")
// }),
Discord: this.make_module({
name: "Discord",
main_path: "../modules/Discord/module.js",
Expand Down
8 changes: 4 additions & 4 deletions modules/time-to-galacon-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"This is taking forever!",
"Donate all your hard earned money bills!"
],
"galaconDate": "2024-07-27",
"galaconDate": "2025-09-06",
"galacon_date": {
"time_zone": "europe/berlin",
"year": 2024,
"month": 7,
"day": 27
"year": 2025,
"month": 9,
"day": 6
},
"updateInterval": 10,
"update_interval": 10
Expand Down
2 changes: 1 addition & 1 deletion modules/time-to-galacon.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Tools = require("../lib/Tools");
const { Temporal } = require("@js-temporal/polyfill");

// Set to false in case GalaCon is cancelled.
const active = false;
const active = true;

/** @extends { Module<import("./time-to-galacon-config.json")> } */
module.exports = class TimeToGalacon extends Module {
Expand Down

0 comments on commit eca16fc

Please sign in to comment.