Skip to content

Commit 223fc21

Browse files
committed
2.1.0
1 parent aae26c3 commit 223fc21

File tree

8 files changed

+40
-86
lines changed

8 files changed

+40
-86
lines changed

CHANGELOG.md

Lines changed: 0 additions & 50 deletions
This file was deleted.

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "longform",
33
"name": "Longform",
4-
"version": "2.0.7",
4+
"version": "2.1.0",
55
"minAppVersion": "1.0",
66
"description": "Write novels, screenplays, and other long projects in Obsidian.",
77
"author": "Kevin Barrett",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "longform",
3-
"version": "2.0.7",
3+
"version": "2.1.0",
44
"description": "Write novels, screenplays, and other long projects in Obsidian (https://obsidian.md).",
55
"main": "main.js",
66
"scripts": {

src/view/explorer/ProjectPicker.svelte

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
</select>
7676
</div>
7777
{#if $selectedProjectHasMultipleDrafts}
78-
<span class="right-arrow" />
7978
<div class="select" id="select-drafts">
8079
<select name="drafts" bind:value={$selectedDraftVaultPath}>
8180
{#each draftOptions as draftOption}
@@ -129,18 +128,6 @@
129128
border 0.15s ease-in-out;
130129
}
131130
132-
.right-arrow {
133-
display: grid;
134-
}
135-
136-
.right-arrow::after {
137-
content: "";
138-
width: var(--font-smallest);
139-
height: var(--size-4-2);
140-
background-color: var(--text-muted);
141-
clip-path: polygon(50% 0%, 50% 100%, 100% 50%);
142-
}
143-
144131
.current-draft-path {
145132
color: var(--text-faint);
146133
font-size: var(--font-smallest);
@@ -151,4 +138,8 @@
151138
color: var(--text-accent);
152139
cursor: pointer;
153140
}
141+
142+
#select-drafts {
143+
margin-top: var(--size-4-1);
144+
}
154145
</style>

test-longform-vault/.obsidian/appearance.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"baseFontSize": 16,
3-
"theme": "moonstone",
3+
"theme": "obsidian",
44
"translucency": false,
55
"enabledCssSnippets": [
66
"writing",
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[
2-
"hot-reload",
32
"longform",
43
"templater-obsidian"
54
]
Lines changed: 32 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,32 @@
1-
[
2-
"file-explorer",
3-
"global-search",
4-
"switcher",
5-
"graph",
6-
"backlink",
7-
"canvas",
8-
"properties",
9-
"page-preview",
10-
"templates",
11-
"note-composer",
12-
"command-palette",
13-
"editor-status",
14-
"bookmarks",
15-
"markdown-importer",
16-
"word-count",
17-
"file-recovery",
18-
"sync"
19-
]
1+
{
2+
"file-explorer": true,
3+
"global-search": true,
4+
"switcher": true,
5+
"graph": true,
6+
"backlink": true,
7+
"outgoing-link": false,
8+
"tag-pane": false,
9+
"page-preview": true,
10+
"daily-notes": false,
11+
"templates": true,
12+
"note-composer": true,
13+
"command-palette": true,
14+
"slash-command": false,
15+
"editor-status": true,
16+
"starred": false,
17+
"markdown-importer": true,
18+
"zk-prefixer": false,
19+
"random-note": false,
20+
"outline": false,
21+
"word-count": true,
22+
"slides": false,
23+
"audio-recorder": false,
24+
"workspaces": false,
25+
"file-recovery": true,
26+
"publish": false,
27+
"sync": true,
28+
"canvas": true,
29+
"bookmarks": true,
30+
"properties": true,
31+
"webviewer": false
32+
}

versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"2.1.0": "1.3.5",
23
"2.0.7": "1.3.5",
34
"2.0.6": "1.3.5",
45
"2.0.5": "1.1.9",

0 commit comments

Comments
 (0)