diff --git a/manifest.json b/manifest.json index 066e6ca..774524b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "custom-sort", "name": "Custom File Explorer sorting", - "version": "1.8.2", + "version": "1.9.2", "minAppVersion": "0.15.0", "description": "Allows for manual and automatic, config-driven reordering and sorting of files and folders in File Explorer", "author": "SebastianMC", diff --git a/package.json b/package.json index 742ccd3..aee27ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-custom-sort", - "version": "1.8.2", + "version": "1.9.2", "description": "Custom Sort plugin for Obsidian (https://obsidian.md)", "main": "main.js", "scripts": { diff --git a/src/main.ts b/src/main.ts index d0c8f69..188bf69 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,13 +1,16 @@ import { apiVersion, App, - FileExplorerView, Menu, MenuItem, + FileExplorerView, + Menu, + MenuItem, MetadataCache, normalizePath, Notice, Platform, Plugin, - PluginSettingTab, requireApiVersion, + PluginSettingTab, + requireApiVersion, sanitizeHTMLToDom, setIcon, Setting, @@ -23,7 +26,10 @@ import { ProcessingContext, sortFolderItemsForBookmarking } from './custom-sort/custom-sort'; -import {SortingSpecProcessor, SortSpecsCollection} from './custom-sort/sorting-spec-processor'; +import { + SortingSpecProcessor, + SortSpecsCollection +} from './custom-sort/sorting-spec-processor'; import {CustomSortSpec} from './custom-sort/custom-sort-types'; import { diff --git a/versions.json b/versions.json index 3ec6b34..fa1488d 100644 --- a/versions.json +++ b/versions.json @@ -28,5 +28,8 @@ "1.7.0": "0.15.0", "1.7.1": "0.15.0", "1.7.2": "0.15.0", - "1.8.2": "0.15.0" + "1.8.2": "0.15.0", + "1.9.0": "0.15.0", + "1.9.1": "0.15.0", + "1.9.2": "0.15.0" }