From 752d65d0204ec474bfce0d2d949bd1bee9e1f89b Mon Sep 17 00:00:00 2001 From: Vasily Date: Tue, 19 Mar 2019 17:13:27 +0300 Subject: Require access type to be included in bug report Inspired by https://github.com/jellyfin/jellyfin/issues/1085#issuecomment-473833591 It seems that the issue with "setup wizard" described there is only prominent when reverse-proxied, not when accessed directly. So this type of information should be gathered in the bug report as well. --- .github/ISSUE_TEMPLATE/bug_report.md | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 137a689e8..047848268 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,6 +30,7 @@ assignees: '' - OS: [e.g. Docker, Debian, Windows] - Browser: [e.g. Firefox, Chrome, Safari] - Jellyfin Version: [e.g. 10.0.1] + - Jellyfin access: [direct, reverse proxy via nginx, reverse proxy via apache, etc.] **Additional context** -- cgit v1.2.3 From f73d8a44df6302be59db7aaad6117985b3f5683a Mon Sep 17 00:00:00 2001 From: Vasily Date: Tue, 19 Mar 2019 17:37:56 +0300 Subject: Improve the wording per @joshuaboniface suggestion --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 047848268..ca89c1cb9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,7 +30,7 @@ assignees: '' - OS: [e.g. Docker, Debian, Windows] - Browser: [e.g. Firefox, Chrome, Safari] - Jellyfin Version: [e.g. 10.0.1] - - Jellyfin access: [direct, reverse proxy via nginx, reverse proxy via apache, etc.] + - Reverse proxy: [e.g. no, nginx, apache, etc.] **Additional context** -- cgit v1.2.3 From 04784b4e4301bb150e8af5d66154e969e71d9efc Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Wed, 19 Jun 2019 18:41:52 +0200 Subject: Create Media Playback issue template (#1451) Added media playback issue template. We might want to add some more information requests in there. --- .github/ISSUE_TEMPLATE/media_playback.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/media_playback.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/media_playback.md b/.github/ISSUE_TEMPLATE/media_playback.md new file mode 100644 index 000000000..93af33fbf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/media_playback.md @@ -0,0 +1,32 @@ +--- +name: Media playback issue +about: Create a media playback issue report +title: '' +labels: mediaplayback +assignees: '' + +--- + +**Media Info of the file** + + +**Logs** + + +**Stats for Nerds Screenshots** + + +**Server System (please complete the following information):** + - OS: [e.g. Docker on Linux, Docker on Windows, Debian, Windows] + - Jellyfin Version: [e.g. 10.0.1] + - Hardware settings & device: [e.g. NVENC on GTX1060, VAAPI on Intel i7 8700K] + - Reverse proxy: [e.g. no, nginx, apache, etc.] + - Other hardware notes: [e.g. Media mounted in CIFS/SMB share, Media mounted from Google Drive] + +**Client System (please complete the following information):** + - Device: [e.g. Apple iPhone XS, Xbox One S, LG OLED55C8, Samsung Galaxy Note9, Custom HTPC] + - OS: [e.g. iOS, Android, Windows, macOS] + - Client: [e.g. Web/Browser, webOS, Android, Android TV, Electron] + - Browser (if Web client): [e.g. Firefox, Chrome, Safari] + - Client and Browser Version: [e.g. 10.3.4 and 68.0] + -- cgit v1.2.3 From 67e32a2c4418cb2129f5e71eec71eae904599228 Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Sun, 21 Jul 2019 01:07:39 +0200 Subject: Add Stale app configuration starting point Link: https://github.com/apps/stale --- .github/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/stale.yml (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..3e76aa75d --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,20 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - regression + - security + - dotnet-3.0-future + - roadmap + - future +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false -- cgit v1.2.3 From 7faf3ab04aafc02a916b6fb7e010d73d3211e1ef Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Sun, 28 Jul 2019 19:41:36 +0200 Subject: Delete feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 3cbc8cbb9..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Feature request -about: Suggest a new feature -title: '' -labels: feature -assignees: '' - ---- - -**Describe the feature you'd like** - - -**Additional context** - -- cgit v1.2.3 From b4f446fe42eb86b6edf6e29cc7c9dba15c4feacd Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Sun, 28 Jul 2019 22:50:41 +0200 Subject: Delete enhancement-request.md --- .github/ISSUE_TEMPLATE/enhancement-request.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/enhancement-request.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/enhancement-request.md b/.github/ISSUE_TEMPLATE/enhancement-request.md deleted file mode 100644 index a655b60f5..000000000 --- a/.github/ISSUE_TEMPLATE/enhancement-request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Enhancement request -about: Suggest an modification to an existing feature -title: '' -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - - -**Describe the solution you'd like** - - -**Describe alternatives you've considered** - - -**Additional context** - -- cgit v1.2.3 From 9e1adec5e00dd9a6c058c16b10ea42fef999b996 Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Mon, 29 Jul 2019 19:42:38 +0200 Subject: Update message for stale issues and also ignore feature and enhancement labels --- .github/stale.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/stale.yml b/.github/stale.yml index 3e76aa75d..011f76317 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -9,12 +9,14 @@ exemptLabels: - dotnet-3.0-future - roadmap - future + - feature + - enhancement # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. + Issues go stale after 60d of inactivity. Mark the issue as fresh by adding a comment or commit. Stale issues close after an additional 7d of inactivity. + If this issue is safe to close now please do so. + If you have any questions you can reach us on [Matrix or Social Media](https://jellyfin.readthedocs.io/en/latest/getting-help/). # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false -- cgit v1.2.3