mirror of
https://github.com/formax68/memoChron.git
synced 2026-07-22 12:30:31 +00:00
- Fix calendar fetching broken by Chromium 138 header validation - Improve Outlook calendar compatibility with simplified headers - Add robust HTML error page detection and multiple retry strategies - Enhance error handling with user-friendly notifications - Add calendar data validation to ensure valid iCalendar format - Update to version 1.6.3 Resolves issues where Outlook calendars returned HTML error pages instead of calendar data when using complex browser headers.
35 lines
921 B
JSON
35 lines
921 B
JSON
{
|
|
"name": "memochron",
|
|
"version": "1.6.3",
|
|
"description": "Calendar integration and note creation plugin for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"calendar",
|
|
"notes"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/luxon": "^3.6.2",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"ical.js": "^1.5.0",
|
|
"luxon": "^3.6.1",
|
|
"obsidian-daily-notes-interface": "^0.9.4"
|
|
}
|
|
}
|