Phase 0: rename plugin to GTD Calendar; fix week view grouping bug

- New manifest id com.victorwiebe.joplin.plugin.gtd-calendar (coexists with upstream)
- Version reset to 0.1.0
- Fix Calendar/index.ts importing MonthGrouping as WeekGrouping (upstream bug:
  week view silently grouped by month)
This commit is contained in:
Victor Wiebe 2026-06-12 13:59:20 +00:00 committed by vwiebe
parent dfd003c4c2
commit 5791ee5ec2
4 changed files with 11 additions and 41 deletions

30
package-lock.json generated
View File

@ -1626,9 +1626,6 @@
"arm64" "arm64"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1643,9 +1640,6 @@
"arm64" "arm64"
], ],
"dev": true, "dev": true,
"libc": [
"musl"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1660,9 +1654,6 @@
"loong64" "loong64"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1677,9 +1668,6 @@
"loong64" "loong64"
], ],
"dev": true, "dev": true,
"libc": [
"musl"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1694,9 +1682,6 @@
"ppc64" "ppc64"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1711,9 +1696,6 @@
"riscv64" "riscv64"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1728,9 +1710,6 @@
"riscv64" "riscv64"
], ],
"dev": true, "dev": true,
"libc": [
"musl"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1745,9 +1724,6 @@
"s390x" "s390x"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1762,9 +1738,6 @@
"x64" "x64"
], ],
"dev": true, "dev": true,
"libc": [
"glibc"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [
@ -1779,9 +1752,6 @@
"x64" "x64"
], ],
"dev": true, "dev": true,
"libc": [
"musl"
],
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"os": [ "os": [

View File

@ -1,6 +1,6 @@
{ {
"name": "joplin-plugin-event-calendar", "name": "joplin-plugin-gtd-calendar",
"version": "0.3.0", "version": "0.1.0",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",

View File

@ -2,7 +2,7 @@ import { GroupTypes } from "../types";
import Events from "./Events/"; import Events from "./Events/";
import DayGrouping from "./Group/Day/DayGrouping"; import DayGrouping from "./Group/Day/DayGrouping";
import MonthGrouping from "./Group/Month/MonthGrouping"; 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 DayRenderer from "./Group/Day/Renderer";
import MonthRenderer from "./Group/Month/Renderer"; import MonthRenderer from "./Group/Month/Renderer";
import WeekRenderer from "./Group/Week/Renderer"; import WeekRenderer from "./Group/Week/Renderer";

View File

@ -1,12 +1,12 @@
{ {
"manifest_version": 1, "manifest_version": 1,
"id": "com.wemakemachines.joplin.plugin.event-calendar", "id": "com.victorwiebe.joplin.plugin.gtd-calendar",
"app_min_version": "2.7", "app_min_version": "2.7",
"version": "0.3.0", "version": "0.1.0",
"name": "Event Calendar", "name": "GTD Calendar",
"description": "A simple event calendar", "description": "A GTD-oriented calendar populated by Joplin notes and todos. Fork of Event Calendar by Franco Speziali.",
"author": "Franco Speziali", "author": "Victor Wiebe",
"homepage_url": "https://github.com/WeMakeMachines/joplin-plugin-event-calendar", "homepage_url": "https://gitea.skeletonworks.online/vwiebe/joplin-plugin-gtd-calendar",
"repository_url": "https://github.com/WeMakeMachines/joplin-plugin-event-calendar", "repository_url": "https://gitea.skeletonworks.online/vwiebe/joplin-plugin-gtd-calendar",
"keywords": [] "keywords": ["calendar", "gtd", "todo"]
} }