From 33042f6deaa01843805e1f471ffcb7aa21c44c1b Mon Sep 17 00:00:00 2001 From: Cohee Date: Mon, 15 May 2023 00:59:32 +0300 Subject: [PATCH 1/2] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 614d2e5f2..2dd35f857 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,6 +30,7 @@ Providing the logs from the browser DevTools console (opened by pressing the F12 **Desktop (please complete the following information):** - OS/Device: [e.g. Windows 11] - Environment: [cloud, local] + - Node.js version (if applicable): [run `node --version` in cmd] - Browser [e.g. chrome, safari] - Generation API [e.g. KoboldAI, OpenAI] - Branch [main, dev] From ee2ecd6d4bf9dde8e5a60864b3e31dfe4b51bbbe Mon Sep 17 00:00:00 2001 From: bcp-hayden Date: Sun, 14 May 2023 17:10:09 -0600 Subject: [PATCH 2/2] Update start.sh to dynamically select directory for start.sh --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 57c73369f..137b5f7de 100755 --- a/start.sh +++ b/start.sh @@ -30,4 +30,4 @@ echo "Installing Node Modules..." npm i echo "Entering SillyTavern..." -node server.js +node "$(dirname "$0")/server.js" \ No newline at end of file