diff --git a/.github/ISSUE_TEMPLATE/Blank.md b/.github/ISSUE_TEMPLATE/Blank.md new file mode 100644 index 000000000..038bddd76 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Blank.md @@ -0,0 +1,10 @@ +--- +name: Blank +about: Open a freeform issue without a template. +title: "" +labels: '' +assignees: '' + +--- + + diff --git a/.github/ISSUE_TEMPLATE/Compatibility.yml b/.github/ISSUE_TEMPLATE/Compatibility.yml deleted file mode 100644 index 96a8b43c9..000000000 --- a/.github/ISSUE_TEMPLATE/Compatibility.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: 'Compatibility Report' -description: 'Provide Operating System Support Feedback' -title: 'Windows Version Compatibility Report' -labels: ['os-support'] -assignees: - - radj307 -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to fill out a compatibility report! - Your contribution lets us know how to improve Volume Control by improving compatibility with your version of Windows. - - - - type: dropdown - id: version - attributes: - label: Which Windows Version are you reporting? - description: Only unconfirmed versions of Windows are listed here. - options: - - Windows Vista - - Windows 7 - - Windows 8 - - Windows 8.1 - - Windows 11 - - type: dropdown - id: state - attributes: - label: Support Status - description: Select the option that best describes the current level of support for your OS. - options: - - Fully Compatible (No Perceivable Issues) - - Mostly Compatible (Minor Issues; Hotkeys and UI are functional) - - Barely Compatible (Major Issues; Essential features are non-functional) - - Not Compatible (Cannot launch Volume Control, or it is entirely non-functional) - - type: markdown - attributes: - value: | - If you selected the ***Fully Compatible*** option above, you can skip the rest of the form. - If you selected any other options, please fill in the rest of the form. - - type: textarea - id: log - attributes: - label: Log - description: Please attach a copy of the log file. - placeholder: By default, the log file is named `volumecontrol.log` and is located in the same directory as the executable. - - type: textarea - id: details - attributes: - label: Additional Details (Optional) - description: If you have any other information to provide, you can do so here. - placeholder: Descriptions and/or images of the problem. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index 6385bb662..79d9584eb 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,8 +1,8 @@ --- name: Feature Request about: Suggest an idea or request the addition of a new feature -title: "[REQUEST]" -labels: '' +title: "" +labels: 'feature-request,triage' assignees: '' --- diff --git a/.github/workflows/Format-Code.yml b/.github/workflows/Format-Code.yml new file mode 100644 index 000000000..fa1f71888 --- /dev/null +++ b/.github/workflows/Format-Code.yml @@ -0,0 +1,28 @@ +name: Format Code + +on: +## Waiting until a prettier plugin for C# is available. +## https://github.com/warrenseine/prettier-plugin-csharp +# push: +# branches: [ "main" ] + workflow_dispatch: + +jobs: + prettier: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + fetch-depth: 0 + + - name: Prettify Code + uses: creyD/prettier_action@v4.2 + with: + github_token: ${{ secrets.PAT }} + prettier_options: --write **/*.cs + #prettier_plugins: + same_commit: true + only_changed: true + diff --git a/README.md b/README.md index d8148324b..5b11a7f56 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

[Volume Control Banner]
-GitHub tag (latest by date)   Downloads +GitHub tag (latest by date)   Downloads

*** diff --git a/VolumeControl/VolumeControl.csproj b/VolumeControl/VolumeControl.csproj index b9e4b3891..c697b7a77 100644 --- a/VolumeControl/VolumeControl.csproj +++ b/VolumeControl/VolumeControl.csproj @@ -7,8 +7,8 @@ true VolumeControl.Program - 5.1.0 - 5.1.0 + 5.1.1 + 5.1.1 NORMAL radj307