Skip to content

Commit

Permalink
feat: update plugin version to 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linyibing committed Mar 13, 2024
1 parent b01e3ee commit cdc2cc1
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions .obsidian/plugins/obsidian-tasks-plugin/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .obsidian/plugins/obsidian-tasks-plugin/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tasks-plugin",
"name": "Tasks",
"version": "6.1.1",
"version": "6.1.2",
"minAppVersion": "1.1.1",
"description": "Task management for Obsidian",
"helpUrl": "https://publish.obsidian.md/tasks/",
Expand Down
12 changes: 6 additions & 6 deletions .obsidian/plugins/periodic-para/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39162,12 +39162,10 @@ ${finalRecordContent}
if (isResourceExists) {
return;
}
const { data: data2 } = await this.axios.get(
`${origin}/o/r/${resource.name || resource.id}`,
{
responseType: "arraybuffer"
}
);
const resourceURL = resource.externalLink || `${origin}/o/r/${resource.name || resource.id}`;
const { data: data2 } = await this.axios.get(resourceURL, {
responseType: "arraybuffer"
});
if (!data2) {
return;
}
Expand Down Expand Up @@ -77710,6 +77708,8 @@ var PeriodicPARA = class extends import_obsidian14.Plugin {
};
}
onunload() {
clearTimeout(this.timeout);
clearInterval(this.interval);
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
Expand Down
6 changes: 3 additions & 3 deletions .obsidian/plugins/periodic-para/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"id": "periodic-para",
"name": "Periodic PARA",
"version": "1.11.3",
"name": "LifeOS",
"version": "1.12.0",
"minAppVersion": "0.15.0",
"description": "Assist in practicing the PARA method with periodic notes and usememos.",
"description": "Life management system(Assist in practicing the PARA method with periodic notes and usememos).",
"author": "YiBing Lin",
"authorUrl": "https://quanru.github.io",
"fundingUrl": "https://www.buymeacoffee.com/leyang",
Expand Down
14 changes: 7 additions & 7 deletions .obsidian/workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"command-palette:Open command palette": false,
"random-note:Open random note": false,
"workspaces:Manage workspace layouts": false,
"switcher:打开快速切换": false,
"graph:查看关系图谱": false,
"canvas:新建白板": false,
"daily-notes:打开/创建今天的日记": false,
"command-palette:打开命令面板": false,
"random-note:开始漫游笔记": false,
"workspaces:管理工作区布局": false,
"templater-obsidian:Templater": false,
"periodic-para:Periodic PARA": false
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

- [Download](https://github.com/quanru/obsidian-example-LifeOS/releases/latest/download/LifeOS.zip)

## Periodic Para Plugin
## LifeOS Plugin

- [README.md](https://github.com/quanru/obsidian-periodic-para)

Expand Down

0 comments on commit cdc2cc1

Please sign in to comment.