[META] Edit issue templates, change email to cool one

This commit is contained in:
Ben C 2023-08-03 09:06:11 -04:00
parent 33baba79c2
commit 40efef6f2d
10 changed files with 72 additions and 11 deletions

View File

@ -1,4 +1,5 @@
name: Bug Report
name: 🐛 Bug Report
title: "[Bug Report] "
description: File A Bug Report
labels: ["bug", "triage"]
assignees: ["Bwc9876"]
@ -14,7 +15,7 @@ body:
id: package
attributes:
label: Package
description: Where does this bug occur
description: Where does this bug occur? (pick Graphical Interface if you don't know)
multiple: true
options:
- Graphical Interface
@ -33,4 +34,9 @@ body:
- Linux
- Steam Deck
validations:
required: true
required: false
- type: textarea
id: logs
attributes:
label: Logs
description: Paste any logs / error messages here. You can find logs in the manager's directory (`%APPDATA%\ow-mods\ow-mod-man\data` or `~/.local/share/ow-mod-man`) under `logs/`

View File

@ -1,4 +1,5 @@
name: Feature Request
name: 💡 Feature Request
title: "[Feature Request] "
description: Request a feature you'd like to see in a later release
labels: ["enhancement", "triage"]
assignees: ["Bwc9876"]
@ -7,7 +8,7 @@ body:
id: package
attributes:
label: Package
description: Where would you like to see this feature?
description: Where would you like to see this feature? (pick Graphical Interface if you don't know)
multiple: true
options:
- Graphical Interface

View File

@ -0,0 +1,41 @@
name: 🎨 Theme Request
title: "[Theme Request] "
description: Suggest a new theme for the manager
labels: ["gui", "enhancement"]
assignees: ["Bwc9876"]
body:
- type: markdown
attributes:
value: |
Thank you for suggesting a theme for the manager!
If you need inspiration or help with choosing colors, I recommend [Real-Time Colors](https://realtimecolors.com) (Secondary is called accent on that site)
## Where each color is used
Primary:
- Start Game Button
- Version Chip
- Complete download progress bar
- Any CTA button (e.g. Submit, Install, Save, etc.)
- Selected input fields
Secondary:
- Selected tab (the little line)
- In-progress download progress bar
- type: input
id: primary
attributes:
label: Primary Color
description: The primary color of the theme (Start game button, version chip color, etc.) (Hex format preferred)
placeholder: "#000000"
- type: input
id: secondary
attributes:
label: Secondary Color
description: The secondary color of the theme (The selected tab color, the download progress bar color, etc) (Hex format preferred)
placeholder: "#000000"
- type: textarea
id: description
attributes:
label: Additional Information
description: Describe any other behavior you'd like to see in the theme (e.g. rainbow mode)

View File

@ -1,4 +1,5 @@
name: Translation
name: 📑 Translation
title: "[Translation] "
description: Submit a new localization (for the GUI) to be added, or update an existing one
labels: ["gui", "enhancement"]
assignees: ["Bwc9876"]

2
Cargo.lock generated
View File

@ -4788,7 +4788,7 @@ dependencies = [
[[package]]
name = "xtask"
version = "0.10.0"
version = "0.10.1"
dependencies = [
"anyhow",
"clap",

View File

@ -9,4 +9,4 @@
## Reporting a Vulnerability
Please report security issues by adding an issue or by contacting `bwc9876@gmail.com` if the issue is sensitive.
Please report security issues by adding an issue or by contacting `bwc9876@outerwildsmods.com` if the issue is sensitive.

View File

@ -1,6 +1,6 @@
[package]
name = "owmods_cli"
authors = ["Bwc9876 <bwc9876@gmail.com>"]
authors = ["Bwc9876 <bwc9876@outerwildsmods.com>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.10.1"
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "owmods_core"
authors = ["Bwc9876 <bwc9876@gmail.com>"]
authors = ["Bwc9876 <bwc9876@outerwildsmods.com>"]
description = "The core library for the Outer Wilds Mod Manager"
version = "0.10.1"
edition = "2021"

View File

@ -15,6 +15,7 @@ This file contains common questions for the manager.
- [On Flatpak](#on-flatpak)
- [I made a mod! How do I submit it?](#i-made-a-mod-how-do-i-submit-it)
- [I have a question about modding](#i-have-a-question-about-modding)
- [I want to contribute to the manager](#i-want-to-contribute-to-the-manager)
- [My issue isn't listed here](#my-issue-isnt-listed-here)
## How do I use this?
@ -69,8 +70,19 @@ The mod database is stored in a separate repository. [Go here to find out how to
Please refer to the [OWML documentation](https://owml.outerwildsmods.com) for information about creating mods.
## I want to contribute to the manager
Depending on which package you want to contribute to, please refer to the following:
- [The main CONTRIBUTING (read this first)](https://github.com/ow-mods/ow-mod-man/blob/main/CONTRIBUTING.md)
- [The CONTRIBUTING for the Core package](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_core/CONTRIBUTING.md)
- [The CONTRIBUTING for the GUI](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/CONTRIBUTING.md)
- [The CONTRIBUTING for the CLI](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_cli/CONTRIBUTING.md)
## My issue isn't listed here
If you're encountering issues or have questions, please [open an Issue](https://github.com/ow-mods/ow-mod-man/issues/new/choose). You can also [view closed issues](https://github.com/ow-mods/ow-mod-man/issues?q=is%3Aissue+is%3Aclosed) to see if your issue has already been resolved.
We also have [a Discord server](https://discord.com/invite/wusTQYbYTc) available if you want to chat.
You can also email `bwc9876@outerwildsmods.com` if your issue is sensitive / security related.

View File

@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
[dependencies]