├── LICENSE ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request_beta.yaml │ └── bug_report_beta.yaml └── stale.yml ├── .gitignore └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | All Rights reserved - Copyright © 2021 by GeheimagentNr1 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.gradle/ 2 | /.idea/ 3 | /build/ 4 | /gradle/ 5 | /run/ 6 | /gradlew 7 | /gradlew.bat -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 7 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | # Label to use when marking an issue as stale 10 | staleLabel: inactive 11 | # Comment to post when marking an issue as stale. Set to `false` to disable 12 | markComment: > 13 | This issue/pull request has been automatically marked as inactive because it 14 | has not had recent activity. It will be closed if no further activity occurs. 15 | # Comment to post when closing a stale issue. Set to `false` to disable 16 | closeComment: > 17 | This issue/pull request has been automatically closed because it has not 18 | had activity in a long time. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_beta.yaml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea for this project 3 | labels: [enhancement] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: "# Feature Request Form" 8 | - type: textarea 9 | id: desc 10 | attributes: 11 | label: Description 12 | description: Describe the feature you'd like to see implemented. Is your feature request related to a problem? 13 | validations: 14 | required: true 15 | - type: textarea 16 | id: references 17 | attributes: 18 | label: References (optional) 19 | description: If applicable, add screenshots or videos to help explain your request. 20 | validations: 21 | required: false 22 | - type: textarea 23 | id: misc 24 | attributes: 25 | label: Additional info (optional) 26 | description: Add any other context about the feature request here. 27 | validations: 28 | required: false 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Auto Restart 2 | 3 | This is a Minecraft Forge mod. 4 | A mod description can be found on [CurseForge](https://www.curseforge.com/minecraft/mc-mods/auto-restart). 5 | This is a combined work only using and not modifying used libraries. 6 | 7 | ## Used libraries 8 | 9 | The mentions of the used libraries, their licences and their copyright holders can be found in the lib_licences folder. 10 | Because in the master branch is no source code, lib_licences cannot be found in this branch. 11 | Direct dependent libraries are metioned here: 12 | 13 | ### Minecraft Forge 14 | 15 | This Minecraft Forge mod uses [Minecraft Forge](https://github.com/MinecraftForge/MinecraftForge) as mod launcher with the [GNU LGPLv2.1](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) 16 | A description how to use differnt versions of Minecraft Forge can be found here: [https://github.com/MinecraftForge/MinecraftForge](https://github.com/MinecraftForge/MinecraftForge) 17 | 18 | ## Branches 19 | 20 | | Branch | Description | 21 | | ------------- | ------------- | 22 | | master | default branch - holds only the licences of the libraries and the README file | 23 | | develop_X.X.X | develop branch for the Minecraft version X.X.X - holds unstable and possible not compilable or working version. | 24 | | master_X.X.X | master branch for the Minecraft version X.X.X - holds stable/released versions of the mod/jar files can be found on CurseForge | 25 | | Other branches | branches for implementing new feature - contains unstable and possible not compilable or working version. | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_beta.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | labels: [bug] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: "# Bug Report Form" 8 | - type: input 9 | id: minecraft-version 10 | attributes: 11 | label: Minecraft Version 12 | description: What Minecraft version are you using? 13 | placeholder: ex. 1.20.2 14 | validations: 15 | required: true 16 | - type: input 17 | id: forge-version 18 | attributes: 19 | label: Minecraft Forge Version 20 | description: What Minecraft Forge version are you using? 21 | placeholder: ex. 48.0.40 22 | validations: 23 | required: true 24 | - type: input 25 | id: mod-version 26 | attributes: 27 | label: Mod Version 28 | description: What Mod Forge version are you using? 29 | placeholder: ex. 1.20.2 30 | validations: 31 | required: true 32 | - type: textarea 33 | id: desc 34 | attributes: 35 | label: Describe the bug 36 | description: A clear and concise description of what the bug is and what happened. 37 | validations: 38 | required: true 39 | - type: textarea 40 | id: expected 41 | attributes: 42 | label: Expected behavior 43 | description: A clear and concise description of what you expected to happen. 44 | validations: 45 | required: true 46 | - type: textarea 47 | id: reproduce 48 | attributes: 49 | label: Steps to reproduce 50 | placeholder: | 51 | 1. 52 | 2. 53 | 3. 54 | ... 55 | description: We need to know how you encountered the bug to properly troubleshoot the issue. 56 | validations: 57 | required: true 58 | - type: textarea 59 | id: references 60 | attributes: 61 | label: References (optional) 62 | description: If applicable, add log files, screenshots or videos to help explain your problem. 63 | validations: 64 | required: false 65 | - type: textarea 66 | id: misc 67 | attributes: 68 | label: Additional info (optional) 69 | description: Add any other context about the problem here. Was this working before? When did the issue start occurring? 70 | validations: 71 | required: false 72 | --------------------------------------------------------------------------------