Skip to content

Commit

Permalink
0.6.3 Quick fix for installation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TfTHacker committed Feb 12, 2022
1 parent f34a2a6 commit 92b1656
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ esbuild.build({
}).catch(() => process.exit(1));

fs.copyFile("manifest-beta.json", "build/manifest.json", (err) => {if(err) console.log(err)} );
fs.copyFile("styles.css", "build/styles.css", (err) => {if(err) console.log(err)} );

// eslint won't slow down the build process, just runs after the build finishes
(async function eslintTest() {
Expand Down
4 changes: 2 additions & 2 deletions manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "obsidian42-brat",
"name": "Obsidian42 - BRAT",
"version": "0.6.2",
"minAppVersion": "0.9.12",
"version": "0.6.3",
"minAppVersion": "0.13.21",
"description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "obsidian42-brat",
"name": "Obsidian42 - BRAT",
"version": "0.6.2",
"minAppVersion": "0.9.12",
"version": "0.6.3",
"minAppVersion": "0.13.21",
"description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
Expand Down
1 change: 0 additions & 1 deletion src/features/BetaPlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { normalizePath, PluginManifest, Notice } from "obsidian";
import { addBetaPluginToList } from "../ui/settings";
import { ToastMessage } from "../utils/notifications";
import { isConnectedToInternet } from "../utils/internetconnection";
import { Console } from "console";

/**
* all the files needed for a plugin based on the release files are hre
Expand Down
4 changes: 1 addition & 3 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
.SIM-modal .prompt-results {
display: none;
}

0 comments on commit 92b1656

Please sign in to comment.