Skip to content

Commit

Permalink
fix default settings for note and asset location
Browse files Browse the repository at this point in the history
  • Loading branch information
kbravh committed Apr 13, 2022
1 parent 3342c1a commit 0926298
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tweet-to-markdown",
"name": "Tweet to Markdown",
"version": "2.4.1",
"version": "2.4.2",
"minAppVersion": "0.12.17",
"description": "Save tweets as Markdown files, along with their images, polls, etc.",
"author": "kbravh",
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": "obsidian-tweet-to-markdown",
"version": "2.4.1",
"version": "2.4.2",
"description": "Save tweets as beautiful markdown files in Obsidian (https://obsidian.md)",
"main": "main.js",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ export interface TTMSettings {

export const DEFAULT_SETTINGS: TTMSettings = {
bearerToken: null,
noteLocation: '/',
noteLocation: '',
downloadAssets: false,
imageEmbedStyle: 'markdown',
assetLocation: 'assets',
assetLocation: '',
filename: null,
tweetCompleteAction: TweetCompleteActions.newTab,
tweetLinkFetch: false,
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"1.2.1": "0.12.16",
"2.4.1": "0.12.17"
"2.4.2": "0.12.17"
}

0 comments on commit 0926298

Please sign in to comment.