Merge branch 'master' into 74-integration-with-bookmarks-core-plugin
# Conflicts: # src/main.ts
This commit is contained in:
commit
a4a6c93412
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "custom-sort",
|
"id": "custom-sort",
|
||||||
"name": "Custom File Explorer sorting",
|
"name": "Custom File Explorer sorting",
|
||||||
"version": "1.8.2",
|
"version": "1.9.2",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "Allows for manual and automatic, config-driven reordering and sorting of files and folders in File Explorer",
|
"description": "Allows for manual and automatic, config-driven reordering and sorting of files and folders in File Explorer",
|
||||||
"author": "SebastianMC",
|
"author": "SebastianMC",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "obsidian-custom-sort",
|
"name": "obsidian-custom-sort",
|
||||||
"version": "1.8.2",
|
"version": "1.9.2",
|
||||||
"description": "Custom Sort plugin for Obsidian (https://obsidian.md)",
|
"description": "Custom Sort plugin for Obsidian (https://obsidian.md)",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
12
src/main.ts
12
src/main.ts
|
@ -1,13 +1,16 @@
|
||||||
import {
|
import {
|
||||||
apiVersion,
|
apiVersion,
|
||||||
App,
|
App,
|
||||||
FileExplorerView, Menu, MenuItem,
|
FileExplorerView,
|
||||||
|
Menu,
|
||||||
|
MenuItem,
|
||||||
MetadataCache,
|
MetadataCache,
|
||||||
normalizePath,
|
normalizePath,
|
||||||
Notice,
|
Notice,
|
||||||
Platform,
|
Platform,
|
||||||
Plugin,
|
Plugin,
|
||||||
PluginSettingTab, requireApiVersion,
|
PluginSettingTab,
|
||||||
|
requireApiVersion,
|
||||||
sanitizeHTMLToDom,
|
sanitizeHTMLToDom,
|
||||||
setIcon,
|
setIcon,
|
||||||
Setting,
|
Setting,
|
||||||
|
@ -23,7 +26,10 @@ import {
|
||||||
ProcessingContext,
|
ProcessingContext,
|
||||||
sortFolderItemsForBookmarking
|
sortFolderItemsForBookmarking
|
||||||
} from './custom-sort/custom-sort';
|
} 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 {CustomSortSpec} from './custom-sort/custom-sort-types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
|
|
@ -28,5 +28,8 @@
|
||||||
"1.7.0": "0.15.0",
|
"1.7.0": "0.15.0",
|
||||||
"1.7.1": "0.15.0",
|
"1.7.1": "0.15.0",
|
||||||
"1.7.2": "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"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue