Skip to content

Commit

Permalink
Enable beta configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Sep 23, 2024
1 parent 188b72e commit ebde1ea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/BetaConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ import { scaleValue } from "../shared/util";
import { APP_VERSION } from "./Constants";

// Constants
const BETA_CONFIG: BetaConfig | null = null as BetaConfig | null;
const BETA_CONFIG: BetaConfig | null = {
year: "2025",
expiration: new Date(2024, 0, 4),
surveyUrl:
"https://docs.google.com/forms/d/e/1FAIpQLSe7xxOln2NUO6pNrGQAPAJ5W7HH2dcIfcCYYi0etTQQE5ORwg/viewform?usp=pp_url&entry.1466744914=__version__"
};
const BETA_STATE_FILENAME =
BETA_CONFIG === null ? null : path.join(app.getPath("userData"), "beta-" + BETA_CONFIG.year + ".json");

Expand Down

0 comments on commit ebde1ea

Please sign in to comment.