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:
parent
dfd003c4c2
commit
5791ee5ec2
30
package-lock.json
generated
30
package-lock.json
generated
@ -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": [
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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";
|
||||
|
||||
@ -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"]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user