Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan McQuen <rpcm@linux.com>
  • Loading branch information
ryanpcmcquen committed Nov 28, 2024
1 parent aca3a3e commit fe7043a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 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-org-mode",
"name": "Org Mode",
"version": "1.4.0",
"version": "1.4.1",
"minAppVersion": "0.10.12",
"description": "Add Org Mode support to Obsidian.",
"author": "ryanpcmcquen",
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-org-mode",
"version": "1.4.0",
"version": "1.4.1",
"description": "Add Org Mode support to Obsidian.",
"main": "main.js",
"repository": "https://github.com/ryanpcmcquen/obsidian-org-mode",
Expand Down
14 changes: 1 addition & 13 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,7 @@ class OrgView extends TextFileView {
constructor(leaf: WorkspaceLeaf) {
super(leaf);
// @ts-ignore
this.codeMirror = CodeMirror(this.extContentEl, {
theme: "obsidian",

// I am not sure autofocus is necessary ...
autofocus: true,
foldGutter: {
minFoldSize: 1,
},
foldOptions: {
widget: " ...",
},
gutters: ["CodeMirror-foldgutter"],
});
this.codeMirror = CodeMirror(this.extContentEl);

this.codeMirror.on("changes", this.changed);
}
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.4.1": "0.10.12",
"1.4.0": "0.10.12",
"1.3.3": "0.10.12",
"1.3.2": "0.10.12",
Expand Down

0 comments on commit fe7043a

Please # to comment.