├── README.md ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.yml │ └── bug_report.yml └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | ### Hi there 👋 2 | 3 | 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea for Heroes Launcher 3 | labels: "enhancement :sparkles:" 4 | body: 5 | - type: textarea 6 | attributes: 7 | label: Problem Description 8 | description: Please add a clear and concise description of the problem you are seeking to solve with this feature request. 9 | validations: 10 | required: false 11 | - type: textarea 12 | attributes: 13 | label: Proposed Solution 14 | description: Describe the solution you'd like in a clear and concise manner. 15 | validations: 16 | required: false 17 | - type: textarea 18 | attributes: 19 | label: New Feature or Change to Existing Feature 20 | description: If suggesting a new feature or change to an existing feature, describe it in detail. 21 | validations: 22 | required: false 23 | - type: textarea 24 | attributes: 25 | label: Additional Information 26 | description: Add any other context here. 27 | validations: 28 | required: false 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 HeroesLauncher 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Report a bug in Heroes Launcher 3 | labels: "bug :beetle:" 4 | body: 5 | - type: input 6 | attributes: 7 | label: Heroes Launcher Version 8 | description: | 9 | What version of Heroes Launcher are you using? 10 | 11 | Note: Please only report issues for [latest Heroes Launcher version](https://github.com/HeroesLauncher/heroeslauncher/releases/latest). 12 | placeholder: 1.0.0 13 | validations: 14 | required: true 15 | - type: dropdown 16 | attributes: 17 | label: What operating system(s) are you using? 18 | multiple: true 19 | options: 20 | - Windows 7 21 | - Windows 10 22 | - Windows 11 23 | - Other (specify below) 24 | validations: 25 | required: true 26 | - type: input 27 | id: os_other 28 | attributes: 29 | label: Please specify your OS 30 | description: If you selected "Other" above, enter your OS here 31 | validations: 32 | required: false 33 | - type: textarea 34 | attributes: 35 | label: Describe the bug 36 | description: A clear description of the bug. 37 | validations: 38 | required: true 39 | --------------------------------------------------------------------------------