diff --git a/package-lock.json b/package-lock.json index 5a7cb3f..b6cec58 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1626,9 +1626,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1643,9 +1640,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1660,9 +1654,6 @@ "loong64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1677,9 +1668,6 @@ "loong64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1694,9 +1682,6 @@ "ppc64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1711,9 +1696,6 @@ "riscv64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1728,9 +1710,6 @@ "riscv64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1745,9 +1724,6 @@ "s390x" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1762,9 +1738,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1779,9 +1752,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ diff --git a/package.json b/package.json index 209c831..ef2b361 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "joplin-plugin-event-calendar", - "version": "0.3.0", + "name": "joplin-plugin-gtd-calendar", + "version": "0.1.0", "scripts": { "test": "jest", "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", diff --git a/src/Calendar/index.ts b/src/Calendar/index.ts index 6d0a2dc..5304676 100644 --- a/src/Calendar/index.ts +++ b/src/Calendar/index.ts @@ -2,7 +2,7 @@ import { GroupTypes } from "../types"; import Events from "./Events/"; import DayGrouping from "./Group/Day/DayGrouping"; import MonthGrouping from "./Group/Month/MonthGrouping"; -import WeekGrouping from "./Group/Month/MonthGrouping"; +import WeekGrouping from "./Group/Week/WeekGrouping"; import DayRenderer from "./Group/Day/Renderer"; import MonthRenderer from "./Group/Month/Renderer"; import WeekRenderer from "./Group/Week/Renderer"; diff --git a/src/manifest.json b/src/manifest.json index 08a8dcf..ca48fe3 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,12 +1,12 @@ { "manifest_version": 1, - "id": "com.wemakemachines.joplin.plugin.event-calendar", + "id": "com.victorwiebe.joplin.plugin.gtd-calendar", "app_min_version": "2.7", - "version": "0.3.0", - "name": "Event Calendar", - "description": "A simple event calendar", - "author": "Franco Speziali", - "homepage_url": "https://github.com/WeMakeMachines/joplin-plugin-event-calendar", - "repository_url": "https://github.com/WeMakeMachines/joplin-plugin-event-calendar", - "keywords": [] + "version": "0.1.0", + "name": "GTD Calendar", + "description": "A GTD-oriented calendar populated by Joplin notes and todos. Fork of Event Calendar by Franco Speziali.", + "author": "Victor Wiebe", + "homepage_url": "https://gitea.skeletonworks.online/vwiebe/joplin-plugin-gtd-calendar", + "repository_url": "https://gitea.skeletonworks.online/vwiebe/joplin-plugin-gtd-calendar", + "keywords": ["calendar", "gtd", "todo"] }