├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── punishment-appeal.yaml │ ├── question.yaml │ └── suggestion.yaml ├── dependabot.yml └── workflows │ └── discord-release.yml ├── .gitignore └── README.md /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- 1 | name: 🐞 Bug report 2 | description: Report a bug/issue 3 | labels: [bug] 4 | body: 5 | 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thank you for reporting a bug on CheatBreaker! 10 | 11 | # Before you proceed! 12 | Please check if your issue was addressed already in another issue or on our [Self Diagnostics page](https://docs.cheatbreaker.net/category/self-diagnostics) 13 | - type: textarea 14 | attributes: 15 | label: Describe the issue 16 | description: | 17 | Provide as many details as possible. Simply saying "X crashes" or "X gives bug" isn't enough! 18 | validations: 19 | required: true 20 | 21 | - type: textarea 22 | attributes: 23 | label: Keyword search 24 | description: Keywords you used to search for your issue 25 | validations: 26 | required: true 27 | 28 | - type: textarea 29 | attributes: 30 | label: Solutions tried 31 | description: | 32 | What did you do to try to solve the issue? 33 | 34 | Use [Self Diagnostics page](https://docs.cheatbreaker.net/category/self-diagnostics) if you haven't tried anything. 35 | validations: 36 | required: true 37 | 38 | - type: textarea 39 | attributes: 40 | label: Steps To Reproduce 41 | description: Steps to reproduce the behavior 42 | description: | 43 | There is no such thing as no steps to reproduce. Be specific. 44 | 45 | Don't know specifics? Just describe what you were doing prior to your issue. 46 | 47 | examples: 48 | 1. Go to '...' 49 | 2. Click on '...' 50 | 3. Scroll down to '...' 51 | 4. See error '...' 52 | validations: 53 | required: true 54 | 55 | - type: textarea 56 | attributes: 57 | label: Expected Behavior 58 | description: A concise description of what you expected to happen 59 | validations: 60 | required: true 61 | 62 | - type: textarea 63 | attributes: 64 | label: Environment 65 | description: | 66 | examples: 67 | - **OS**: macOS 13.3.1 68 | - **Game version**: 1.7.10 69 | - **Game build number**: 32617e9 70 | - **Launcher version**: 2.3.4 71 | - **JRE version**: 8u111 72 | value: | 73 | OS: 74 | Game version: 75 | Game build number: 76 | Launcher version: 77 | JRE version: 78 | render: markdown 79 | validations: 80 | required: true 81 | 82 | - type: textarea 83 | attributes: 84 | label: Log file 85 | description: | 86 | View [how to get the log file](https://docs.cheatbreaker.net/self-diagnostics/overview) 87 | 88 | > [!NOTE] 89 | > The launcher log file may include your system username. If thats something you don't want to share publicly, you can send the file to our support email (`support@cheatbreaker.net`), or simply remove every mention of your system username manually 90 | validations: 91 | required: true 92 | 93 | - type: textarea 94 | attributes: 95 | label: Anything else? 96 | description: | 97 | Links? References? Anything that will give us more context about the issue you are encountering! 98 | 99 | Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in 100 | validations: 101 | required: false 102 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/punishment-appeal.yaml: -------------------------------------------------------------------------------- 1 | name: 👨‍⚖️ Appeal a punishment 2 | description: Appeal a Discord or Client punishment 3 | labels: [punishment-appeal] 4 | body: 5 | 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thank you for submitting a punishment appeal! 10 | 11 | - Please do not submit multiple appeal forms for the same punishment 12 | - Provide as many details as possible 13 | 14 | - type: dropdown 15 | attributes: 16 | label: Type 17 | description: Are you appealing a Discord server punishment or a Client punishment? 18 | options: 19 | - Discord 20 | - Client 21 | validations: 22 | required: true 23 | 24 | - type: input 25 | attributes: 26 | label: What is your username? 27 | description: | 28 | Enter your full Discord username if you chose Discord above, or your Minecraft username if you chose Client above 29 | validations: 30 | required: true 31 | 32 | - type: textarea 33 | attributes: 34 | label: Describe the reason of your punishment (or the reason you think you were punished for) 35 | description: | 36 | Tip: You can attach images by clicking this area to highlight it and then dragging images in 37 | validations: 38 | required: true 39 | 40 | - type: textarea 41 | attributes: 42 | label: Describe why we should revoke your punishment 43 | description: | 44 | Tip: You can attach images by clicking this area to highlight it and then dragging images in 45 | validations: 46 | required: true 47 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- 1 | name: ❔ Question 2 | description: Have a question about CheatBreaker? 3 | labels: [question] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Thank you for submitting a question! 9 | 10 | - Please check if your question was already asked in another issue 11 | - Provide as many details as possible 12 | 13 | - type: dropdown 14 | attributes: 15 | label: Environment 16 | description: Is this a client related question or a launcher related question? 17 | options: 18 | - Client 19 | - Launcher 20 | - Else 21 | validations: 22 | required: true 23 | 24 | - type: textarea 25 | attributes: 26 | label: Describe your question 27 | description: | 28 | A concise description of your question 29 | 30 | Tip: You can attach images by clicking this area to highlight it and then dragging images in 31 | validations: 32 | required: true 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yaml: -------------------------------------------------------------------------------- 1 | name: 💡 Suggestion 2 | description: Submit client/launcher suggestions/feature requests 3 | labels: [enhancement] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Thank you for suggesting a feature! 9 | 10 | - Please run the game and try out all our existing features before suggesting a new one 11 | - Please check if your suggestion was already suggested in another issue or already exists ingame 12 | - Provide as many details as possible. Simply saying "I want X" or "Add X" isn't enough! 13 | 14 | - type: dropdown 15 | attributes: 16 | label: Environment 17 | description: Is this a client suggestion or a launcher suggestion? 18 | options: 19 | - Client 20 | - Launcher 21 | - Else 22 | validations: 23 | required: true 24 | 25 | - type: textarea 26 | attributes: 27 | label: Describe the suggestion 28 | description: A concise description of your suggestion 29 | validations: 30 | required: true 31 | 32 | - type: textarea 33 | attributes: 34 | label: Anything else? 35 | description: | 36 | Links? References? Anything that will give us more context about your suggestion! 37 | 38 | Tip: You can attach images by clicking this area to highlight it and then dragging images in 39 | validations: 40 | required: false 41 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "github-actions" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.github/workflows/discord-release.yml: -------------------------------------------------------------------------------- 1 | on: 2 | release: 3 | types: [published] 4 | 5 | jobs: 6 | github-releases-to-discord: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Checkout 10 | uses: actions/checkout@v4 11 | - name: Github Releases To Discord 12 | uses: SethCohen/github-releases-to-discord@master 13 | with: 14 | webhook_url: ${{ secrets.WEBHOOK_URL }} 15 | color: "14303827" 16 | content: "||<@&1080980966715179119>||" 17 | footer_title: "Client Update" 18 | footer_icon_url: "https://cheatbreaker.net/v/images/logo-108.png" 19 | footer_timestamp: true 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CheatBreaker 2 | 3 | [![Releases](https://img.shields.io/github/release/CheatBreakerNet/Client.svg)](https://github.com/CheatBreakerNet/Client/releases) 4 | [![Issues](https://img.shields.io/github/issues/CheatBreakerNet/Client)](https://github.com/CheatBreakerNet/Client/issues) 5 | [![Pull Requests](https://img.shields.io/github/issues-pr/CheatBreakerNet/Client)](https://github.com/CheatBreakerNet/Client/pulls) 6 | Discord Server 7 | 8 | [![amd64](https://img.shields.io/badge/amd64-yes-green.svg)](https://cheatbreaker.net/download/) 9 | ![i386](https://img.shields.io/badge/i386-no-red.svg) 10 | [![Windows](https://img.shields.io/badge/Windows-yes-green.svg)](https://github.com/CheatBreakerNet/Client/wiki/Windows-installation-instructions) 11 | [![macOS](https://img.shields.io/badge/macOS-yes-green.svg)](https://github.com/CheatBreakerNet/Client/wiki/MacOS-installation-instructions) 12 | [![Linux](https://img.shields.io/badge/Linux-yes-green.svg)](https://github.com/CheatBreakerNet/Client/wiki/Linux-(Other)-installation-instructions) 13 | 14 | CheatBreaker is a modpack and FPS booster combined! In most cases, CheatBreaker more than doubles your normal Minecraft frames! 15 | 16 | On this GitHub page you can report bugs and submit suggestions using the `Bug` and `Suggestion` forms 17 | 18 | You can also ask questions using the `Question` form 19 | 20 | For more information about CheatBreaker and a download link, visit our [website](https://cheatbreaker.net) 21 | 22 | 23 | Not affiliated with CheatBreaker, LLC --------------------------------------------------------------------------------