Skip to content

Commit

Permalink
Merge pull request #5 from iiz00/develop
Browse files Browse the repository at this point in the history
Fixed file view not working properly when backlinks are hidden
  • Loading branch information
iiz00 committed Aug 22, 2023
2 parents 8d88250 + 291e434 commit 3f6827e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ If you like my plugin, I would appreciate it if you could buy me a cup of coffee
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/iiz00)<br><br>

## Changelog
- 0.1.2
- 0.1.3
- Fixed file view not working properly when backlinks are hidden.
- 0.1.1
- Fixed
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": "multiple-notes-outline",
"name": "Multiple Notes Outline",
"version": "0.1.2",
"version": "0.1.3",
"minAppVersion": "1.3.0",
"description": "Add custom views which show outlines of multiple notes with headings, links, tags and list items.",
"author": "iiz",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multiple-notes-outline",
"version": "0.1.2",
"version": "0.1.3",
"description": "Add custom views which shows outline of multiple notes at once",
"main": "main.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/getOutline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { getBacklinkFiles, getBacklinkFilesDataview } from 'src/getTargetFiles';
// ファイルステータスの初期化
export function initFileStatus(files: TAbstractFile[]): FileStatus[] {
let status:FileStatus[] = [];
console.log('initStatus',files);
for (let i=0; i< files.length; i++) {
const flagFolder = Boolean(files[i] instanceof TFolder);
status.push({
Expand Down

0 comments on commit 3f6827e

Please sign in to comment.