Skip to content

Commit

Permalink
Updating versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SilentVoid13 committed Jan 8, 2021
1 parent 7f72906 commit 367653a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "templater-obsidian",
"name": "Templater",
"version": "0.5.4",
"version": "0.5.5",
"description": "Create and use templates",
"minAppVersion": "0.9.20",
"author": "SilentVoid",
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": "templater-obsidian",
"version": "0.5.4",
"version": "0.5.5",
"description": "Create and use templates",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 2 additions & 3 deletions src/fuzzy_suggester.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { App, FileSystemAdapter, FuzzySuggestModal, MarkdownView, Notice, TAbstractFile, TFile, prepareQuery, fuzzySearch, TFolder, normalizePath } from "obsidian";
import { App, FileSystemAdapter, FuzzySuggestModal, MarkdownView, Notice, TFile, TFolder, normalizePath } from "obsidian";
import { exec } from 'child_process';
import { promisify } from "util";

import { replace_internal_command_templates } from './internal_command_templates';
import { internal_templates_map, replace_internal_templates } from "./internal_templates";
import { replace_internal_templates } from "./internal_templates";
import TemplaterPlugin from './main';
import { TP_CURSOR } from "./constants";
import { settings } from "cluster";

const exec_promise = promisify(exec);

Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Notice, Plugin, TAbstractFile, TFile } from 'obsidian';
import { Plugin, TAbstractFile, TFile } from 'obsidian';
import moment from 'moment';

import { default_settings, TemplaterSettings, TemplaterSettingTab } from './settings';
Expand Down
4 changes: 4 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"0.5.5": "0.10.4",
"0.5.4": "0.9.20"
}

0 comments on commit 367653a

Please sign in to comment.