├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | We welcome any feedback regarding technical issues (broken letters, ligatures not working, bad spacing etc). We will have a look and try to implement the changes in future versions. Before reporting, [make sure to check the FAQ](https://www.monolisa.dev/faq) as it covers answers to the most common questions (how to install etc.). 2 | 3 | --- 4 | 5 | ## Background information 6 | 7 | To help debugging, fill the following information before describing the issue: 8 | 9 | * Font edition (i.e. trial, personal, plus, pro): TODO 10 | * Font version (i.e. 1.805): TODO 11 | * The type of the font file you are using (i.e. otf, ttf): TODO 12 | * Operating system (i.e. MacOS, Windows): TODO 13 | * Display resolution (i.e. 3072x1920): TODO 14 | * Any other information that might be helpful: TODO 15 | 16 | ## Issue 17 | 18 | TODO: Describe the issue now. If possible, include screenshots. If you are requesting a feature, then comparative screenshots showing how it has been solved in another typefaces is helpful for reference. 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: File a bug report 3 | title: "[Bug]: " 4 | labels: ["bug"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this bug report! Before submitting, make sure to [read the FAQ](https://www.monolisa.dev/faq) as it covers the most common issues (i.e., how to install etc.). 10 | - type: dropdown 11 | id: edition 12 | attributes: 13 | label: Edition 14 | description: What edition are you using? 15 | options: 16 | - Basic (Personal) 17 | - Plus 18 | - Complete (Pro) 19 | validations: 20 | required: true 21 | - type: input 22 | id: version 23 | attributes: 24 | label: "What version are you using?" 25 | description: "Tell us the exact version you are using." 26 | placeholder: "For example, 2.003" 27 | validations: 28 | required: true 29 | - type: dropdown 30 | id: variable-or-static 31 | attributes: 32 | label: What type of weights are you using? 33 | description: Tell us which weights you downloaded 34 | options: 35 | - Default (non-customized) 36 | - Variable (customized) 37 | - Static (customized) 38 | validations: 39 | required: true 40 | - type: input 41 | id: operating-system 42 | attributes: 43 | label: Operating system 44 | description: Tell us the exact name and version of your operating system 45 | placeholder: For example, MacOS Ventura 13.0.1 46 | validations: 47 | required: true 48 | - type: input 49 | id: editor 50 | attributes: 51 | label: Program 52 | description: Tell us which program (editor, terminal, etc.) you are using 53 | placeholder: For example, VS Code or iTerm 2 54 | validations: 55 | required: false 56 | - type: input 57 | id: display-resolution 58 | attributes: 59 | label: Display resolution 60 | description: Tell us your display resolution if the issue is rendering related 61 | placeholder: For example, 3072x1920 62 | validations: 63 | required: false 64 | - type: textarea 65 | id: what-happened 66 | attributes: 67 | label: What happened? 68 | description: Also tell us, what did you expect to happen in clear steps to follow. 69 | placeholder: Tell us what you see! Screenshots are helpful. 70 | validations: 71 | required: true 72 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: File a feature request 3 | title: "[Feature request]: " 4 | labels: ["enhancement"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this feature request! 10 | - type: textarea 11 | id: what-feature 12 | attributes: 13 | label: What feature are you proposing? 14 | description: Tell us what feature you are missing. 15 | placeholder: Tell us what you would like to see! Screenshots are helpful. 16 | value: "An awesome feature!" 17 | validations: 18 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Feedback 2 | 3 | Send us your feedback regarding the MonoLisa font. 4 | 5 | --------------------------------------------------------------------------------