6 Commits
0.9.2 ... 0.9.4

Author SHA1 Message Date
Daniel Bauer
26227eac6e bump version 2025-01-27 10:04:15 +01:00
Daniel Bauer
ba4dab5dc4 chore: remove logging 2025-01-27 10:03:19 +01:00
daniel
6b008d452a chore: fix formatting 2024-12-27 22:41:14 +01:00
daniel
314f99f462 bump version 2024-12-27 22:39:44 +01:00
daniel
064320bc5b chore: remove logging statements 2024-12-27 22:39:22 +01:00
daniel
5f7fdb244a chore: remove obsidian from name 2024-12-27 22:37:15 +01:00
4 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
# Obsidian Dataview Autocompletion
# Dataview Autocompletion
This is a plugin for Obsidian (https://obsidian.md).
Obsidian Dataview Autocomplete enhances the functionality of the popular [Dataview plugin](https://github.com/blacksmithgu/obsidian-dataview)
Dataview Autocomplete enhances the functionality of the popular [Dataview plugin](https://github.com/blacksmithgu/obsidian-dataview)
by providing autocomplete suggestions for metadata fields in the editor. This makes it easy to reuse existing fields and reduces typing errors.
<img src="./assets/demo.gif" alt="Demo" width="400" >

View File

@@ -1,7 +1,7 @@
{
"id": "dataview-autocompletion",
"name": "Dataview Autocompletion",
"version": "0.9.2",
"version": "0.9.4",
"minAppVersion": "0.15.0",
"description": "Adds autocompletion to Dataview metadata fields",
"author": "Daniel Bauer",

View File

@@ -1,6 +1,6 @@
{
"name": "obsidian-dataview-autocompletion",
"version": "0.9.2",
"version": "0.9.4",
"description": "This is a plugin for Obsidian that provides autocompletion for Dataview metadata fields",
"main": "main.js",
"scripts": {

View File

@@ -14,7 +14,7 @@ export class SuggestionIndex {
}
public buildNewIndex() {
console.log("Begin Rebuilding dataview suggestion index");
// console.log("Begin Rebuilding dataview suggestion index");
const startTime = performance.now();
const dataviewApi = getAPI(this.plugin.app);
@@ -55,9 +55,9 @@ export class SuggestionIndex {
this.suggestionsRefs = newSuggestionsRefs;
const endTime = performance.now();
console.log(
`Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`,
);
// console.log(
// `Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`,
// );
}
public updateIndex(type: string, file: TFile, oldPath?: string) {