├── .github └── ISSUE_TEMPLATE │ └── bug_report.yaml └── README.md /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | description: File a bug report 4 | labels: 5 | - bug 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | ## STOP! Before continuing: 11 | ### Please try searching for [existing reports](https://github.com/linuxmint/wayland/issues?q=is%3Aissue+state%3Aall) that may match the behavior you're seeing. *If you find one, add to that issue instead of opening a new one.* Include any relevant details that may differ from the original author's. 12 | _______ 13 | ### Other troubleshooting suggestions: 14 | - If this is related to Cinnamon, sometimes third-party xlets (applets, desklets and extensions) can cause erroneous or unexpected behavior. Try disabling these first to see if the behavior goes away. After disabling, be sure to restart Cinnamon before continuing. Right-click an empty portion of the panel, select Troubleshooting, then 'Restart Cinnamon'. Alternately, you can open the run dialog - Alt-F2, type 'r' or 'restart', and enter. You can also log out and log back in if restarting Cinnamon is not an option. 15 | - Check your logs - there may be some obvious cause for your trouble. 16 | - If this is a *crash*, provide information about it if possible (CoreDump file, stack trace, etc...). In Linux Mint you can check the System Reports program. 17 | - Have you tried rebooting? 18 | 19 | --- 20 | 21 | Thank you for taking the time to report this issue. To allow us to work as efficiently as possible at resolving this, we need some information from you. 22 | 23 | - type: input 24 | id: distro 25 | attributes: 26 | label: Distribution 27 | description: Which Linux distribution are you using? Please be as specific as possible. 28 | placeholder: "example: Mint 21.3" 29 | validations: 30 | required: true 31 | 32 | - type: input 33 | id: pkgver 34 | attributes: 35 | label: Package version 36 | description: Please provide the Cinnamon version. You can get this by running `cinnamon --version` in a terminal, or launching 'System Info' from the menu. 37 | placeholder: "example: 6.0.0" 38 | validations: 39 | required: true 40 | 41 | - type: input 42 | id: graphics 43 | attributes: 44 | label: Graphics hardware in use 45 | description: Please provide information about your graphics hardware, if known. If you are using a dual-gpu system please specify that also. 46 | placeholder: "example: NVIDIA GeForce GTX 1660 TI" 47 | validations: 48 | required: false 49 | 50 | - type: dropdown 51 | id: frequency 52 | attributes: 53 | label: Frequency 54 | description: How often does this behavior occur? 55 | options: 56 | - Always 57 | - Quite often 58 | - Only occasionally 59 | validations: 60 | required: true 61 | 62 | - type: textarea 63 | id: current-behavior 64 | attributes: 65 | label: Bug description 66 | description: Please describe what is happening 67 | validations: 68 | required: true 69 | 70 | - type: textarea 71 | id: steps 72 | attributes: 73 | label: Steps to reproduce 74 | description: Please try to provide **detailed** steps on the most direct way to reproduce this issue. The chances of a bug being fixed go up **considerably** if we are able to duplicate the behavior ourselves. 75 | validations: 76 | required: true 77 | 78 | - type: textarea 79 | id: expected-behavior 80 | attributes: 81 | label: Expected behavior 82 | description: Describe what you think should happen instead of the current behavior. 83 | validations: 84 | required: true 85 | 86 | - type: textarea 87 | id: more-info 88 | attributes: 89 | label: Additional information 90 | description: You can add any other information you think may be relevant. 91 | validations: 92 | required: false 93 | 94 | - type: markdown 95 | attributes: 96 | value: | 97 | #### By submitting this report you agree to behave respectfully and in a mature manner. If in doubt, refer to the [Golden Rule](https://en.wikipedia.org/wiki/Golden_Rule) and [GitHub's Community Guidelines](https://docs.github.com/en/site-policy/github-terms/github-community-guidelines). 98 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wayland 2 | All issues related to Wayland (Cinnamon, XApp, tools etc..) 3 | --------------------------------------------------------------------------------