├── README.md └── .github └── ISSUE_TEMPLATE └── bugreport.yml /README.md: -------------------------------------------------------------------------------- 1 | # Ubuntu Touch Beta Testing 2 | 3 | Status overview and issues for beta tests of Ubuntu Touch on the Volla Phone 4 | 5 | The versions of Ubuntu Touch for the Volla Phone modes are under continuous improvement. An overview of the development status can be found on the platform Github, where we publish the source code of the operating system port. 6 | 7 | https://github.com/HelloVolla/ 8 | 9 | In the repository ubuntu-touch-beta-tests you will find this document as well as the possibility to report bugs and track their resolution. 10 | 11 | https://github.com/HelloVolla/ubuntu-touch-beta-tests/issues 12 | 13 | For customer care inquired please use our support contact form: 14 | 15 | https://volla.online/en/support/ 16 | 17 | ## High level epic overview for Ubuntu Touch port 18 | 19 | You find a frequently updated table in our project wiki. 20 | 21 | https://github.com/HelloVolla/ubuntu-touch-beta-tests/wiki/High-level-epic-overview-for-Ubuntu-Touch-port 22 | 23 | ## Miscellaneous 24 | 25 | This document will also be revised. General questions and suggestions are welcome via our contact form or via the Volla Beta-Tester Group on Telegram: 26 | 27 | https://volla.online/en/contact/ 28 | 29 | For the invitation to the Telegram Group for the beta testers, please write to Marc Aurel at the address @m_aurel. 30 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report for an issue observed on one of the Volla Phone models 3 | body: 4 | - id: verified 5 | type: dropdown 6 | attributes: 7 | label: Is this a new report? 8 | description: I verified that there isn't already an open issue for this bug 9 | options: 10 | - "Yes" 11 | - "No" 12 | validations: 13 | required: true 14 | - id: device 15 | type: dropdown 16 | attributes: 17 | label: Device model 18 | description: Which Volla Phone model was this issue observed on 19 | options: 20 | - "Volla Phone 22 (2022)" 21 | - "Volla Phone X (2021)" 22 | - "Volla Phone (2020)" 23 | validations: 24 | required: true 25 | - id: osver 26 | type: input 27 | attributes: 28 | label: OS version 29 | description: Version of Ubuntu Youch you are reporting this issue against; you can find this in `System Settings` > `About` 30 | placeholder: 16.04 (OTA-23), 16.04 (2022-W27) or 16.04 (2022-07-09) 31 | validations: 32 | required: true 33 | - id: description 34 | type: textarea 35 | attributes: 36 | label: Describe the bug 37 | description: A clear and concise description of what the bug is. 38 | placeholder: Clicking on this button in System Settings doesn't... 39 | validations: 40 | required: true 41 | - id: steps 42 | type: textarea 43 | attributes: 44 | label: Steps to reproduce the bug 45 | description: Clear steps to reproduce the bug 46 | placeholder: | 47 | 1. Go to '...' 48 | 2. Scroll down to '...' 49 | 3. Click on '...' 50 | 4. See error 51 | validations: 52 | required: true 53 | - id: expected 54 | type: textarea 55 | attributes: 56 | label: Expected behaviour 57 | description: A clear and concise description of what you expected to happen 58 | placeholder: The button is supposed to do this thing. 59 | validations: 60 | required: true 61 | - id: extra 62 | type: textarea 63 | attributes: 64 | label: Additional context 65 | description: | 66 | In case you for example have screenshots or log files to attach, add them here! 67 | 68 | Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. 69 | validations: 70 | required: false 71 | --------------------------------------------------------------------------------