better bug-report template

Massimo Melina committed Dec 12, 2025 at 09:57 UTC 6edf17b7681ce3c38a77dc41a6f8ef79c736e622
2 files changed +16 -22
.github/ISSUE_TEMPLATE/bug_report.md
+15 -22
@@ -1,32 +1,25 @@
1 ----
2 -name: Bug report
3 -about: Create a report to help us improve
4 -title: ''
5 -labels: bug
6 -
7 ----
1 **BEFORE**
2
3 - Are you using a reverse-proxy, like nginx?
11 - - Check if your problem is caused by your proxy, try without it.
4 + - Check if your problem is caused by your proxy, try WITHOUT it.
5 +- If you installed plugins, try disabling them.
6 + - There's a PAUSE button at the bottom of the plugin list that will temporarily disable them all at once.
7 +- Whenever possible, attach your configuration or send it privately to a@rejetto.com
8 + - Click on *Admin-panel > Options > Config file > Export without passwords*
9 +
10 +**Environment (please complete the following information):**
11 +- OS: [e.g. Windows]
12 +- HFS Version [e.g. 0.57.0]
13 +- Browser [e.g. chrome, safari]
14
13 -**To Reproduce**
14 -Steps to reproduce the behavior:
15 -1. Go to '...'
16 -2. Click on '....'
15 +**Steps to reproduce the problem**
16 +1. Go to ...
17 +2. Click on ...
18
19 **Describe the bug**
20
20 -**Expected behavior**
21 -What you expected to happen.
21 +**What you expected to happen**
22
23 **Screenshots**
24 -Try to provide videos or else screenshots to help explain your problem.
24
26 -**Environment (please complete the following information):**
27 - - OS: [e.g. Windows]
28 - - HFS Version [e.g. 0.40.0]
29 - - Browser [e.g. chrome, safari]
30 -
31 -**Additional context**
32 -Add any other context about the problem here.
25 +Try to provide videos or else screenshots to help explain your problem.
dev-plugins.md
+1
@@ -857,6 +857,7 @@ These files have a special meaning:
857
858 Plugins that need to store generated data persistently should put all the files in the "storage" folder that is
859 automatically created for each plugin. In your plugin you can get this path by reading `api.storageDir`.
860 +Failing to do so may cause your plugin to lose data during automatic updates.
861
862 There is a very powerful way to store data, that is by using `api.openDb`. This will automatically create the file
863 inside the storage folder. For further details please refer to the dedicated documentation.