Skip to content

Commit

Permalink
Merge pull request #5 from lucasbordeau/bump/1.0.3
Browse files Browse the repository at this point in the history
Bump/1.0.3
  • Loading branch information
lucasbordeau authored Mar 4, 2023
2 parents c95363e + 67575e2 commit 228851d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { App, Plugin, PluginSettingTab, Setting, } from 'obsidian';
import { App, Plugin, PluginSettingTab, Setting, Notice } from 'obsidian';
import * as path from 'path';
import { convertJSONToTiddlers, convertTiddlersToObsidianMarkdown, writeObsidianMarkdownFiles } from 'services/TiddlyWikiToMarkdownService';

Expand Down Expand Up @@ -55,7 +55,7 @@ class SampleSettingTab extends PluginSettingTab {
const obsidianMarkdownArray = convertTiddlersToObsidianMarkdown(tiddlers);
writeObsidianMarkdownFiles(obsidianMarkdownArray, exportPath);

alert('Success !')
new Notice(`✅ Successfuly imported TiddlyWiki to ${exportPath}`, 10000)
}
}
})
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"id": "tiddlywiki-import-export",
"name": "Import/Export TiddlyWiki",
"version": "1.0.2",
"version": "1.0.3",
"minAppVersion": "0.15.0",
"description": "Import and export TiddlyWiki from and to Obsidian.",
"author": "Lucas Bordeau",
"authorUrl": "https://github.com/lucasbordeau",
"fundingUrl": "https://www.buymeacoffee.com/lucasbordeau",
"isDesktopOnly": false
"isDesktopOnly": true
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tiddlywiki-import-export",
"version": "1.0.2",
"version": "1.0.3",
"description": "Import/Export TiddlyWiki",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"1.0.0": "0.15.0",
"1.0.1": "0.15.0",
"1.0.2": "0.15.0"
"1.0.2": "0.15.0",
"1.0.3": "0.15.0"
}

0 comments on commit 228851d

Please sign in to comment.