From 7a5990ca4b02675d3d20f88633c9adb1bc0796ad Mon Sep 17 00:00:00 2001 From: JonasDevDE Date: Thu, 24 Jul 2025 16:25:01 +0200 Subject: [PATCH 1/4] chore: added .gitignore file --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f35ca9e --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file From db3cf80233bab737b93ed39d09faa1ae5f85e5e0 Mon Sep 17 00:00:00 2001 From: JonasDevDE Date: Thu, 24 Jul 2025 16:27:01 +0200 Subject: [PATCH 2/4] chore: added config for issue templates --- .github/ISSUE_TEMPLATES/config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATES/config.yml diff --git a/.github/ISSUE_TEMPLATES/config.yml b/.github/ISSUE_TEMPLATES/config.yml new file mode 100644 index 0000000..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file From 9ff038e5fbe5820b979b0d1998740c6e1d230025 Mon Sep 17 00:00:00 2001 From: JonasDevDE Date: Thu, 24 Jul 2025 16:27:17 +0200 Subject: [PATCH 3/4] feat: added issue template for bug reports --- .github/ISSUE_TEMPLATES/bug_report.yml | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/ISSUE_TEMPLATES/bug_report.yml diff --git a/.github/ISSUE_TEMPLATES/bug_report.yml b/.github/ISSUE_TEMPLATES/bug_report.yml new file mode 100644 index 0000000..3362320 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/bug_report.yml @@ -0,0 +1,31 @@ +name: Bug Report +description: File a bug report. +title: "Bug: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us what you expected to happen. + placeholder: Tell us what you see! + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of the project are you running? + placeholder: "1.4.1-rc.2" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. + render: shell From de6c71b36021bfbb6b80aa15dbfd6f99e0dcdbda Mon Sep 17 00:00:00 2001 From: JonasDevDE Date: Thu, 24 Jul 2025 16:27:26 +0200 Subject: [PATCH 4/4] feat: added issue template for feature requests --- .github/ISSUE_TEMPLATES/feature_request.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/ISSUE_TEMPLATES/feature_request.yml diff --git a/.github/ISSUE_TEMPLATES/feature_request.yml b/.github/ISSUE_TEMPLATES/feature_request.yml new file mode 100644 index 0000000..315d346 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/feature_request.yml @@ -0,0 +1,13 @@ +name: Feature Request +description: Suggest a new feature. +title: "Feature: " +labels: ["feature"] +body: + - type: textarea + id: description + attributes: + label: Describe your idea + description: Please provide a complete description of the feature, including examples or mockups + placeholder: A detailed description, possibly with examples or concept art. + validations: + required: true