├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── README.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report to help us improve Oliphaunt. 3 | title: "[Bug] " 4 | labels: ["bug"] 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | ❗ **Before opening a bug report**, please check whether the behaviour has already been reported in [existing issues](https://github.com/anosidium/Oliphaunt-Feedback-And-Support/issues). 11 | 12 | --- 13 | 14 | Thank you for taking the time to report a bug. To help us address this as quickly as possible, please provide the information below. 15 | 16 | - type: dropdown 17 | id: architecture 18 | attributes: 19 | label: System Architecture 20 | description: Please select the architecture of your system. 21 | options: 22 | - ARM-64 (Apple Silicon) 23 | - Intel (x86_64) 24 | - Hackintosh (non-Apple hardware) 25 | validations: 26 | required: true 27 | 28 | - type: input 29 | id: os_version 30 | attributes: 31 | label: Operating System Version 32 | description: | 33 | Please specify your operating system version. 34 | 35 | *From the Apple menu in the top-left corner of your screen, choose "About This Mac".* 36 | placeholder: e.g., macOS 14.2 Sonoma 37 | validations: 38 | required: true 39 | 40 | - type: input 41 | id: app_version 42 | attributes: 43 | label: Application Version 44 | description: | 45 | Please specify the version of the application. 46 | 47 | *From the Oliphaunt menu in the top-left corner of your screen, choose "About Oliphaunt".* 48 | placeholder: e.g., 1.0 49 | validations: 50 | required: true 51 | 52 | - type: input 53 | id: build_number 54 | attributes: 55 | label: Build Number 56 | description: | 57 | Please specify the build number. This is not the same as the application version — it appears in round brackets next to the version, e.g. Version 3.4 (31). 58 | 59 | *From the Oliphaunt menu in the top-left corner of your screen, choose "About Oliphaunt" and copy the number in brackets.* 60 | placeholder: e.g., 31 61 | validations: 62 | required: true 63 | 64 | - type: dropdown 65 | id: installation_source 66 | attributes: 67 | label: Installation Source 68 | description: Where did you install the application from? 69 | options: 70 | - App Store 71 | - TestFlight 72 | validations: 73 | required: true 74 | 75 | - type: textarea 76 | id: steps_to_reproduce 77 | attributes: 78 | label: Steps to Reproduce 79 | description: Please provide a step-by-step guide to reproduce the behaviour. 80 | placeholder: | 81 | 1. Launch the application. 82 | 2. Click on "..." 83 | 3. Scroll down to "..." 84 | 4. Observe the issue. 85 | validations: 86 | required: true 87 | 88 | - type: textarea 89 | id: expected_behaviour 90 | attributes: 91 | label: Expected Behaviour 92 | description: What did you expect to happen? 93 | placeholder: The application should... 94 | validations: 95 | required: true 96 | 97 | - type: textarea 98 | id: actual_behaviour 99 | attributes: 100 | label: Actual Behaviour 101 | description: What actually happened? 102 | placeholder: Instead, the application... 103 | validations: 104 | required: true 105 | 106 | - type: textarea 107 | id: screenshots 108 | attributes: 109 | label: Screenshots 110 | description: If applicable, add screenshots to help explain the issue. 111 | placeholder: Paste or drag and drop screenshots here. 112 | 113 | - type: textarea 114 | id: screen_recordings 115 | attributes: 116 | label: Screen Recordings 117 | description: If applicable, add screen recordings to help demonstrate the issue. 118 | placeholder: Paste or drag and drop screen recordings here. 119 | 120 | - type: textarea 121 | id: additional_context 122 | attributes: 123 | label: Additional Context 124 | description: Add any other context that might be helpful. You may upload a crash report, log file, or describe related symptoms. 125 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea or improvement for Oliphaunt 3 | title: "[Feature Request] " 4 | labels: ["enhancement"] 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | ❗ **Before opening a feature request**, please search for the behaviour in the [existing issues](https://github.com/anosidium/Oliphaunt-Feedback-And-Support/issues). 11 | 12 | --- 13 | 14 | Thank you for taking the time to file a feature request. To help us understand and prioritise it, please fill in the information below. 15 | 16 | - type: textarea 17 | id: problem 18 | attributes: 19 | label: Problem or Motivation 20 | description: A clear and concise description of the problem or missing capability. 21 | placeholder: I find it frustrating when... 22 | validations: 23 | required: true 24 | 25 | - type: textarea 26 | id: solution 27 | attributes: 28 | label: Proposed Solution 29 | description: If you have a solution in mind, please describe it. 30 | placeholder: I would like to see where I could... 31 | 32 | - type: textarea 33 | id: alternatives 34 | attributes: 35 | label: Alternatives Considered 36 | description: Have you considered any alternative solutions or workarounds? 37 | placeholder: I tried using... 38 | 39 | - type: textarea 40 | id: mockups 41 | attributes: 42 | label: Design Mockups 43 | description: If you have any mockups, sketches, or visual examples of your idea, please share them here. You can drag and drop images. 44 | placeholder: Paste or drag and drop mockups here. 45 | 46 | - type: textarea 47 | id: context 48 | attributes: 49 | label: Additional Context 50 | description: Add any other context, use cases, or examples about the feature request here. 51 | placeholder: This feature would be quite useful for users who might... 52 | 53 | - type: dropdown 54 | id: priority 55 | attributes: 56 | label: Feature Priority 57 | description: This helps us understand the impact of the feature. 58 | options: 59 | - Not important, but would be nice 60 | - Useful, but not urgent 61 | - Would significantly improve my experience 62 | - Critical — I cannot use the app effectively without it 63 | validations: 64 | required: true 65 | 66 | - type: checkboxes 67 | id: contribution 68 | attributes: 69 | label: Contribution Interest 70 | description: Would you be interested in helping out? 71 | options: 72 | - label: I am happy to help test this feature 73 | - label: I can provide more mockups or details if needed 74 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
A native macOS Client for Mastodon
5 |Developed by Ammad
6 |Made with ♥ in London, England, UK
7 |