Skip to content

Commit

Permalink
Merge branch 'fix_1.0.2' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrochlore committed Mar 29, 2021
2 parents d9b8795 + c853c2e commit 9ae38a3
Show file tree
Hide file tree
Showing 10 changed files with 914 additions and 827 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ These keys should be placed under key '**line**'.
| **fillGap** | false | Connect points over missing data |

## Release Notes

### v1.0.2

- Fix the searching of nested tag in frontmatter
- Reduce the package size by using Obsidian internal module

### v1.0.1

- Remove dependencies to Node.js modules
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tracker",
"name": "Tracker",
"version": "1.0.1",
"version": "1.0.2",
"minAppVersion": "0.9.12",
"description": "Track tags and texts in your dialy notes",
"author": "pyrochlore",
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "obsidian-tracker",
"version": "0.9.7",
"description": "",
"version": "1.0.2",
"description": "Track tags and texts in your dialy notes",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.dev.js -w",
Expand All @@ -16,17 +16,16 @@
"@rollup/plugin-typescript": "^6.0.0",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.2",
"@types/d3": "^6.3.0",
"@types/yaml": "^1.9.7",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/d3": "^6.3.0",
"@types/yaml": "^1.9.7",
"d3": "^6.5.0",
"moment": "^2.29.1",
"yaml": "^1.10.0"
}
}
2 changes: 1 addition & 1 deletion rollup.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
format: 'cjs',
exports: 'default'
},
external: ['obsidian', 'fs', 'path'],
external: ['obsidian'],
plugins: [
typescript(),
nodeResolve({browser: true}),
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
format: 'cjs',
exports: 'default'
},
external: ['obsidian', 'fs', 'path'],
external: ['obsidian'],
plugins: [
typescript(),
nodeResolve({browser: true}),
Expand Down
Loading

0 comments on commit 9ae38a3

Please sign in to comment.