Skip to content

Commit

Permalink
version 0.0.89
Browse files Browse the repository at this point in the history
  • Loading branch information
saertna committed Feb 11, 2024
1 parent 34fe9e4 commit e712220
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "gamified-pkm",
"name": "Gamificate your PKM",
"version": "0.0.88",
"version": "0.0.89",
"minAppVersion": "0.15.0",
"description": "Enhance your Personal Knowledge Management with gamification elements. Boost motivation and achieve growth as you engage with your PKM.",
"author": "Andreas Trebing",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-gamified-pkm",
"version": "0.0.88",
"version": "0.0.89",
"description": "Enhance your Personal Knowledge Management with gamification elements. Boost motivation and achieve growth as you engage with your PKM.",
"main": "main.js",
"scripts": {
Expand Down
17 changes: 9 additions & 8 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { Badge } from './badges'
export const pointsNoteMajurity: number = 100;
export const pointsMajurity: number = 10;
export const pointsForDailyChallenge: number = 500;
export const pointsForWeeklyChallenge: number = 2000;
export const streakboosterDecrease: number = 0.2;
export const streakboosterIncreaseDaily: number = 0.1;
export const streakboosterIncreaseWeekly: number = 1;
export const pointsNoteMajurity = 100;
export const pointsMajurity = 10;
export const pointsForDailyChallenge = 500;
export const pointsForWeeklyChallenge = 2000;
export const streakboosterDecrease = 0.2;
export const streakboosterIncreaseDaily = 0.1;
export const streakboosterIncreaseWeekly = 1;
// eslint-disable-next-line @typescript-eslint/no-var-requires
export const CryptoJS = require("crypto-js");
export const secretKey = "2ZU^12y#QmNB5$yEin5^";
export const debugLogs = true;
export const debugLogs = false;
export const avatarInitContent = `# Avatar
| | |
Expand Down

0 comments on commit e712220

Please sign in to comment.