Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Voice room customisation #207

Open
kmezn opened this issue Aug 24, 2024 · 1 comment
Open

[FEATURE] Voice room customisation #207

kmezn opened this issue Aug 24, 2024 · 1 comment
Labels
feature New feature or request

Comments

@kmezn
Copy link

kmezn commented Aug 24, 2024

What problem are you trying to solve?

I checked through the schema but couldn't see a way to customise the rooms listed in the 'voice' tab on the left when creating a homebrew script with a different theme.

Describe the solution you'd like

an option to override the list of current rooms with an array of strings for new room names e.g. for a 'pub theme'

  {
    "id": "_meta",
    "name": "Your Custom Script Name",
    "author": "Your Name",
    "logo": "https://i.imgur.com/logo.png",
    "background": "https://i.imgur.com/background-image.jpg",
  "voiceRooms": [
      "The Dive pub",
      "Local Drinking Hole",
      "The sportsbar"
  ],

example for the schema:

"VoiceRooms": {
            "type": "array",
            "maxItems": 5,
           "minItems": 0,
            "default": [],
            "title": "Custom Room Names",
            "description": "To change the voice room names for custom ones the rooms will be overwritten in order by the number of strings provided here. ",
            "items": {
              "type": "string",
              "maxLength": 20,
              "examples": [
                "Café",
                "Pub",
                "Bus Shelter",
                "The Hedge"
              ]
            }
          },


In the above example with 4 strings provided for voice rooms. The first 4 would be overwritten by the custom rooms leaving only the final 5th room as it's default e.g. the campfire.

Alternatives you have considered

N/A but I checked through the schema and searched through the issues on here for a previous request for this feature. also checked reddit etc. to see if anyone else mentioned it.

Comments

-edit- added snippits so format isn't destroyed on sudocode.

@kmezn kmezn added feature New feature or request triage This issue still needs to be evaluated labels Aug 24, 2024
@bra1n bra1n removed the triage This issue still needs to be evaluated label Sep 2, 2024
@bra1n
Copy link
Member

bra1n commented Sep 2, 2024

Hey, that's a sensible feature request, but very low priority right now. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request
Projects
Development

No branches or pull requests

2 participants