Contributing
Thank you for your interest in contributing to the SmartLists plugin! This guide will help you get started.
Prerequisites
Before contributing, make sure you:
- Have set up the local development environment
- Are familiar with Git and GitHub
- Have tested your changes locally
How to Contribute
1. Fork the Repository
- Go to the repository page
- Click the Fork button in the top right
- This creates a copy of the repository in your GitHub account
2. Clone Your Fork
git clone https://github.com/YOUR_USERNAME/jellyfin-smartlists-plugin.git
cd jellyfin-smartlists-plugin
3. Make Your Changes
-
Create a new branch for your changes:
-
Make your changes to the codebase
- Test your changes using the local development environment (see Building Locally)
- Commit your changes:
4. Push and Create a Pull Request
-
Push your branch to your fork:
-
Go to your fork on GitHub
- Click Contribute → Open Pull Request
- Select your branch and create a pull request to the
mainbranch of the original repository - Fill out the pull request description explaining your changes
Your pull request will be reviewed, and once approved, it will be merged into the main branch.
What to Contribute
All contributions are welcome:
- Bug fixes - Report and fix issues you encounter
- New features - Add functionality that would benefit users
- Documentation - Improve or expand the documentation
- Code improvements - Refactor, optimize, or improve existing code
- Testing - Add tests or improve test coverage
Code Guidelines
- Follow existing code style and patterns
- Write clear, descriptive commit messages
- Test your changes thoroughly before submitting
- Update documentation if you add new features or change behavior