Skip to content

Commit 8d9ccdd

Browse files
committed
Version bump before release
1 parent 702fe9e commit 8d9ccdd

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "custom-sort",
33
"name": "Custom File Explorer sorting",
4-
"version": "2.1.7",
4+
"version": "2.1.8",
55
"minAppVersion": "0.16.2",
66
"description": "Allows for manual and automatic, config-driven reordering and sorting of files and folders in File Explorer",
77
"author": "SebastianMC",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-custom-sort",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "Custom Sort plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/custom-sort/custom-sort.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ export const determineDatesForFolder = (folder: TFolder, recursive?: boolean): [
653653
if (recursive) {
654654
(Vault?.recurseChildren ?? recurseChildrenForUnitTests)(folder, checkFile)
655655
} else {
656-
folder.children.forEach((item) => checkFile(item))
656+
folder.children.forEach(checkFile)
657657
}
658658
return [mtimeOfFolder, ctimeOfFolder]
659659
}

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@
4040
"2.1.3": "0.16.2",
4141
"2.1.4": "0.16.2",
4242
"2.1.5": "0.16.2",
43-
"2.1.7": "0.16.2"
43+
"2.1.7": "0.16.2",
44+
"2.1.8": "0.16.2"
4445
}

0 commit comments

Comments
 (0)