├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ └── feature.yml └── README.md /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | title: "[Bug]: " 4 | labels: [] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Before opening a bug report, please search for the behaviour in the existing issues. 10 | 11 | --- 12 | 13 | Thank you for taking the time to file a bug report. To address this bug as fast as possible, we need some information. 14 | - type: input 15 | id: os 16 | attributes: 17 | label: Operating system 18 | description: "Which operating system do you use? Please provide the version as well." 19 | placeholder: "macOS Big Sur 11.5.2" 20 | validations: 21 | required: true 22 | - type: input 23 | id: browser 24 | attributes: 25 | label: Browser Version 26 | description: "Please provide the full version of the browser that you are using." 27 | placeholder: "Brave Version 1.28.106 Chromium: 92.0.4515.159 (Official Build) (x86_64)" 28 | validations: 29 | required: true 30 | - type: input 31 | id: website 32 | attributes: 33 | label: Website 34 | description: "If the bug occured transforming a specific website, you can provide the link here." 35 | - type: textarea 36 | id: bug-description 37 | attributes: 38 | label: Bug description 39 | description: What happened and what did you expect to happen? 40 | validations: 41 | required: true 42 | - type: textarea 43 | id: steps 44 | attributes: 45 | label: Steps to reproduce 46 | description: Which steps do we need to take to reproduce this error? 47 | 48 | - type: textarea 49 | id: logs 50 | attributes: 51 | label: Relevant log output 52 | description: If applicable, provide relevant log output. No need for backticks here. 53 | render: shell 54 | 55 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Propose a new feature for Windy 3 | title: "[Feature Request]: " 4 | labels: [feature request] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for proposing a feature for Windy! 10 | - type: textarea 11 | id: feature-description 12 | attributes: 13 | label: Feature Description 14 | description: How should this feature look like? 15 | placeholder: Location in the software, usage, output ... 16 | validations: 17 | required: true 18 | - type: textarea 19 | id: valuable 20 | attributes: 21 | label: Is this feature valuable for other users as well and why? 22 | description: We want to build software that provides a great experience for all of us. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Windy](https://usewindy.com/img/card.png) 2 | 3 | # Windy Extension – Transform any HTML element from any website into a Tailwind CSS component 4 | 5 | Please contact us via the support email address at the [Windy website](https://beyondco.de). 6 | --------------------------------------------------------------------------------