├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md └── _prodos-testing-submit-a-bug.gif /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @JohnMBrooks @DevoKun 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ## Description 9 | 10 | 11 | 12 | ## Expected Behavior 13 | 14 | 15 | 16 | ## Actual Behavior 17 | 18 | 19 | 20 | ## Possible Fix 21 | 22 | 23 | 24 | ## Steps to Reproduce 25 | 26 | 27 | 28 | 1. 29 | 2. 30 | 3. 31 | 4. 32 | 33 | 34 | ## Context 35 | 36 | 37 | 38 | ## Your Environment 39 | 40 | 41 | ### Hardware: 42 | 43 | 44 | 45 | ### ProDOS8 version: 46 | 47 | 48 | 49 | ### Non-Operating System release software being used: 50 | 51 | 52 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.bak 3 | *~ 4 | *.exe 5 | *.msi 6 | *.zip 7 | *.bin 8 | *.7z 9 | *.tar.gz 10 | *.tar.bz2 11 | .project 12 | 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Apple ProDOS 8 development 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 | ProDOS-8 Testing 2 | ================ 3 | 4 | 5 | 6 | ## Submitting an Issue / Bug Report 7 | 8 | * Go to: https://github.com/ProDOS-8/ProDOS8-Testing/issues 9 | * **Create an issue** 10 | * **Label** the issue as a **bug** 11 | * Set the **Project** to be the **ProDOS 2.4** or **ProDOS 2.5** major version release project. 12 | * *Bugs for releases prior to version 2.4 can not be accepted.* 13 | 14 | ![Submit a Bug](_prodos-testing-submit-a-bug.gif) -------------------------------------------------------------------------------- /_prodos-testing-submit-a-bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProDOS-8/ProDOS8-Testing/0d412fb31e31a3b254de00223385362438a4b1a8/_prodos-testing-submit-a-bug.gif --------------------------------------------------------------------------------