├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── compatibility-list.yml │ └── config.yml ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: paypal.me/0ptitSeb 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibility-list.yml: -------------------------------------------------------------------------------- 1 | name: Compatibility report 2 | description: A template to report game/software compatibilities 3 | title: "GAME NAME HERE" 4 | labels: [] 5 | assignees: ["ptitSeb"] 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | ### Description 11 | - type: textarea 12 | id: description 13 | attributes: 14 | label: Description 15 | description: Provide a simple description of what happens during the emulation 16 | validations: 17 | required: true 18 | - type: markdown 19 | attributes: 20 | value: | 21 | ### Tested on 22 | - type: textarea 23 | id: tested_on 24 | attributes: 25 | label: Tested on 26 | description: Machine on which it's has been tested on (like RPi4, OpenPandora, Odroid XU4.. 27 | validations: 28 | required: true 29 | - type: dropdown 30 | id: box_type 31 | attributes: 32 | label: Tested on Box86, Box32, and/or Box64 33 | multiple: true 34 | description: Select the Box type you tried using to run the game/software. 35 | options: 36 | - Box86 37 | - Box32 38 | - Box64 39 | validations: 40 | required: true 41 | - type: markdown 42 | attributes: 43 | value: | 44 | ### Status 45 | **Previous behavior:** 46 | - type: textarea 47 | id: previous_behavior 48 | attributes: 49 | label: Previous behavior 50 | description: If there is no known previous behavior (e.g. you're creating the issue) just put 'None reported' 51 | validations: 52 | required: true 53 | - type: markdown 54 | attributes: 55 | value: | 56 | **Current behavior:** 57 | - type: textarea 58 | id: current_behavior 59 | attributes: 60 | label: Current behavior 61 | description: Can be similar to your desciption, just shorter and more concise 62 | validations: 63 | required: true 64 | - type: markdown 65 | attributes: 66 | value: | 67 | ### Screenshots 68 | - type: textarea 69 | id: screenshots 70 | attributes: 71 | label: Screenshots 72 | description: Graphics, Glitches, 'Test-Case' Messages, etc. 73 | validations: 74 | required: true 75 | - type: markdown 76 | attributes: 77 | value: | 78 | ### OpenGL 79 | - type: textarea 80 | id: opengl 81 | attributes: 82 | label: OpenGL 83 | description: Did OpenGL is used? If yes, what profile (1.x, 2.x 3.x...). Also, is S3TC/DxTC used? 84 | validations: 85 | required: true 86 | - type: markdown 87 | attributes: 88 | value: | 89 | ### Additional Information 90 | - type: textarea 91 | id: additional_information 92 | attributes: 93 | label: Additional Information 94 | description: Any additional information such as configuration or other comments 95 | validations: 96 | required: true 97 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 ptitSeb 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # The box86 compatibility list 2 | 3 | This repo is a metadata repository for [`box86`](https://github.com/ptitSeb/box86/) and [`box64`](https://github.com/ptitSeb/box64/). The list of open issues correspond to the status of various applications running using `box86`/`box64`. 4 | 5 | if you want to have a quick overview of the state of the project, you can visit the [compatibility list](https://box86.org/app/). 6 | 7 | If you want to know more about the `box86` and `box64` projects, visit the GitHub repositories for them, or visit the [box86.org website](https://box86.org). 8 | --------------------------------------------------------------------------------