Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Code of Conduct

## Our Pledge
We pledge to make participation in our project a welcoming and harassment-free experience for everyone.
We are committed to fostering a friendly, safe, and inclusive environment for all people.

## Our Standards

Examples of behavior that contributes to a positive environment include:
- Being respectful and considerate in communication
- Offering helpful and constructive feedback
- Gracefully accepting feedback or disagreement
- Showing empathy and kindness to others

Examples of unacceptable behavior include:
- Harassment, bullying, or discriminatory remarks
- Posting offensive or inappropriate content
- Personal attacks or insults
- Disruptive or antagonistic comments
- Trolling, flame wars, or intentionally derailing discussions

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable conduct.

They have the right to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that do not align with this Code of Conduct, and may temporarily or permanently ban contributors for behavior deemed inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies to all project spaces — including GitHub repositories, issue trackers, our Discord server, and any other community platforms — and also applies when an individual is representing the project officially.

## Enforcement

Violations may be reported by opening an issue, contacting the maintainers directly, or via our [Discord server](https://discord.gg/helpchat). All reports will be reviewed and investigated.

Reports will be handled with discretion, and any actions taken will be appropriate to the situation.
38 changes: 38 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Contributing

Thank you for your interest in contributing to DeluxeMenus!

By contributing to this project, you agree to follow our [Code of Conduct].

## Requirements

To get started, you’ll need a few tools. The easiest setup is using an IDE like IntelliJ IDEA, which includes most of these:

1. Java 17 or higher
2. Gradle (check the version in `/gradle/wrapper/gradle-wrapper.properties`)
3. A text editor or IDE

## Getting Started

1. Fork the repository on GitHub
2. Clone your fork to your local machine
3. Set up your development environment
4. Make your changes on a new branch

## Before You Submit a Pull Request

- Make sure you’ve read and followed the [Code of Conduct]
- Test your changes thoroughly
- Review and verify any AI-generated code

## Pull Request Guidelines

When opening a pull request, please:

- Provide a **clear description** of the changes
- Explain **why** the changes are necessary
- Link any related issues, if applicable

Your contributions help improve the project for everyone. Thank you!

[Code of Conduct]: https://github.com/HelpChat/DeluxeMenus/blob/main/CODE_OF_CONDUCT.md
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
}

// Change to true when releasing
val release = true
val majorVersion = "1.14.1"
val release = false
val majorVersion = "1.14.2"
val minorVersion = if (release) "Release" else "DEV-" + System.getenv("BUILD_NUMBER")

group = "com.extendedclip"
Expand Down
Loading