[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: Add templates for feature request and new source/client

FoxxMD (Oct 10, 2024, 3:03 PM EDT) fd7c8467 06e651a8

+193 -59
+59
.github/ISSUE_TEMPLATE/01-bug-report.yml
··· 1 + name: Bug Report 2 + description: Report a reproducible problem 3 + title: "bug: " 4 + labels: ["bug"] 5 + body: 6 + - type: checkboxes 7 + attributes: 8 + label: Please check existing knowledge before opening an issue 9 + options: 10 + - label: I have [checked the FAQ](https://foxxmd.github.io/multi-scrobbler/docs/FAQ/) and [documentation](https://foxxmd.github.io/multi-scrobbler/docs/configuration/) 11 + required: true 12 + - label: I have [searched through existing issues](https://github.com/FoxxMD/multi-scrobbler/issues?q=sort%3Aupdated-desc) and [discussions.](https://github.com/FoxxMD/multi-scrobbler/discussions) 13 + required: true 14 + - type: markdown 15 + attributes: 16 + value: | 17 + If this a how-do-I question, troublehooting, or generally **not** a bug/error with multi-scrobbler please consider [**starting a discussion**](https://github.com/FoxxMD/multi-scrobbler/discussions) instead of opening an issue. 18 + - type: textarea 19 + id: what-happened 20 + attributes: 21 + label: Describe the Bug 22 + description: Describe what you expected to happen and what happened instead. Please provide as much detail as possible. 23 + placeholder: The app should have scrobbled from Spotify but instead it crashed with an error about undefined properties, etc... 24 + validations: 25 + required: true 26 + - type: dropdown 27 + id: platform 28 + attributes: 29 + label: Platform 30 + description: What platform are you running multi-scrobbler on? 31 + options: 32 + - Docker 33 + - Local (NodeJS) 34 + - Flatpak 35 + default: 0 36 + validations: 37 + required: true 38 + - type: textarea 39 + attributes: 40 + label: Versions 41 + description: What version of multi-scrobbler and issue-related sources/clients are running? 42 + placeholder: | 43 + - multi-scrobbler: 0.8.3 on docker 44 + - maloja 3.1.4 45 + - jellyfin 10.8.9 46 + validations: 47 + required: true 48 + - type: textarea 49 + id: logs 50 + attributes: 51 + label: Logs 52 + description: | 53 + Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. 54 + If possible reproduce the issue with [debug logging ON](https://foxxmd.github.io/multi-scrobbler/docs/FAQ/#turn-on-debug-logging) 55 + render: shell 56 + - type: textarea 57 + attributes: 58 + label: Additional Context 59 + description: Add any other context about the problem here.
+45
.github/ISSUE_TEMPLATE/02-feature-request.yml
··· 1 + name: Feature Request 2 + description: Suggest a new feature or functionality 3 + title: "feat: " 4 + labels: ["enhancement"] 5 + body: 6 + - type: checkboxes 7 + attributes: 8 + label: Please check existing knowledge before opening an issue 9 + options: 10 + - label: I have checked the [documentation](https://foxxmd.github.io/multi-scrobbler/docs/configuration/) 11 + required: true 12 + - label: I have [searched through existing issues](https://github.com/FoxxMD/multi-scrobbler/issues?q=sort%3Aupdated-desc) and [discussions.](https://github.com/FoxxMD/multi-scrobbler/discussions) 13 + required: true 14 + - type: textarea 15 + attributes: 16 + label: Describe the new functionality 17 + description: Please describe the feature or functionality you want multi-scrobbler to have. Use as much detail as possible about the exact behavior you wish to see. 18 + validations: 19 + required: true 20 + - type: textarea 21 + attributes: 22 + label: Configuration Example 23 + description: | 24 + If the functionality involves changes to configuration files please provide an example here 25 + render: json5 26 + - type: dropdown 27 + attributes: 28 + label: Will you help implement it? 29 + description: Are you willing to contribute code towards completing this feature? 30 + options: 31 + - Yes 32 + - No 33 + default: 1 34 + validations: 35 + required: true 36 + - type: dropdown 37 + attributes: 38 + label: Will you help test it? 39 + description: Are you willing to help test preview builds for this feature? 40 + options: 41 + - Yes 42 + - No 43 + default: 0 44 + validations: 45 + required: true
+89
.github/ISSUE_TEMPLATE/03-new-source-client.yml
··· 1 + name: Request a new Source or Client 2 + description: Request a new Source or Client to be implemented 3 + title: "feat: " 4 + labels: ["enhancement"] 5 + body: 6 + - type: checkboxes 7 + attributes: 8 + label: Please check existing knowledge before opening an issue 9 + options: 10 + - label: I have checked the [documentation](https://foxxmd.github.io/multi-scrobbler/docs/configuration/) 11 + required: true 12 + - label: I have [searched through existing issues](https://github.com/FoxxMD/multi-scrobbler/issues?q=sort%3Aupdated-desc) and [discussions.](https://github.com/FoxxMD/multi-scrobbler/discussions) 13 + required: true 14 + - type: dropdown 15 + attributes: 16 + label: What Type? 17 + description: Is this a Source or a Client? 18 + options: 19 + - Source 20 + - Client 21 + default: 1 22 + validations: 23 + required: true 24 + - type: input 25 + attributes: 26 + label: Name 27 + description: "What is the name of the new service/software?" 28 + placeholder: "My Cool Player" 29 + validations: 30 + required: true 31 + - type: input 32 + attributes: 33 + label: Website 34 + description: "Website for the service/software. Preferably a github repo or other source-code homepage" 35 + validations: 36 + required: true 37 + - type: dropdown 38 + attributes: 39 + label: API Available? 40 + description: Does the service have an API or other protocol that multi-scrobbler can use to communicate? **Without this the likelyhood of implementation is very low.** 41 + options: 42 + - Yes 43 + - No 44 + default: 1 45 + validations: 46 + required: true 47 + - type: dropdown 48 + attributes: 49 + label: Free To Use? 50 + description: Is this service/software freely available or does it require purchasing/subscription? 51 + options: 52 + - Yes 53 + - No 54 + default: 1 55 + validations: 56 + required: true 57 + - type: dropdown 58 + attributes: 59 + label: Willing to finance development? 60 + description: If the software is **non-free** are you will to provide a paid account/subscription to multi-scrobbler developer's in order to facilitate development/testing? 61 + options: 62 + - Yes 63 + - No 64 + validations: 65 + required: false 66 + - type: dropdown 67 + attributes: 68 + label: Will you help implement it? 69 + description: Are you willing to contribute code towards completing this feature? 70 + options: 71 + - Yes 72 + - No 73 + default: 1 74 + validations: 75 + required: true 76 + - type: dropdown 77 + attributes: 78 + label: Will you help test it? 79 + description: Are you willing to help test preview builds for this feature? 80 + options: 81 + - Yes 82 + - No 83 + default: 0 84 + validations: 85 + required: true 86 + - type: textarea 87 + attributes: 88 + label: Additional Context 89 + description: Add any other context about the new Source/Client here
-59
.github/ISSUE_TEMPLATE/bug_report.yml
··· 1 - name: Bug Report 2 - description: Report a reproducible problem 3 - title: "bug: " 4 - labels: ["bug"] 5 - body: 6 - - type: checkboxes 7 - attributes: 8 - label: Please check existing knowledge before opening an issue 9 - options: 10 - - label: I have [checked the FAQ](https://foxxmd.github.io/multi-scrobbler/docs/FAQ/) and [documentation](https://foxxmd.github.io/multi-scrobbler/docs/configuration/) 11 - required: true 12 - - label: I have [searched through existing issues](https://github.com/FoxxMD/multi-scrobbler/issues?q=sort%3Aupdated-desc) and [discussions.](https://github.com/FoxxMD/multi-scrobbler/discussions) 13 - required: true 14 - - type: markdown 15 - attributes: 16 - value: | 17 - If this a how-do-I question, troublehooting, or generally **not** a bug/error with multi-scrobbler please consider [**starting a discussion**](https://github.com/FoxxMD/multi-scrobbler/discussions) instead of opening an issue. 18 - - type: textarea 19 - id: what-happened 20 - attributes: 21 - label: Describe the Bug 22 - description: Describe what you expected to happen and what happened instead. Please provide as much detail as possible. 23 - placeholder: The app should have scrobbled from Spotify but instead it crashed with an error about undefined properties, etc... 24 - validations: 25 - required: true 26 - - type: dropdown 27 - id: platform 28 - attributes: 29 - label: Platform 30 - description: What platform are you running multi-scrobbler on? 31 - options: 32 - - Docker 33 - - Local (NodeJS) 34 - - Flatpak 35 - default: 0 36 - validations: 37 - required: true 38 - - type: textarea 39 - attributes: 40 - label: Versions 41 - description: What version of multi-scrobbler and issue-related sources/clients are running? 42 - placeholder: | 43 - - multi-scrobbler: 0.8.3 on docker 44 - - maloja 3.1.4 45 - - jellyfin 10.8.9 46 - validations: 47 - required: true 48 - - type: textarea 49 - id: logs 50 - attributes: 51 - label: Logs 52 - description: | 53 - Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. 54 - If possible reproduce the issue with [debug logging ON](https://foxxmd.github.io/multi-scrobbler/docs/FAQ/#turn-on-debug-logging) 55 - render: shell 56 - - type: textarea 57 - attributes: 58 - label: Additional Context 59 - description: Add any other context about the problem here.