aseprite/CONTRIBUTING.md

103 lines
3.9 KiB
Markdown
Raw Normal View History

2013-11-23 19:01:49 +00:00
# Contributing
You can contribute to Aseprite in several ways. One of the easiest
2013-11-23 19:09:52 +00:00
ways is writting articles, blog posts, recording video tutorials,
[creating pixel art](http://aseprite.deviantart.com/), or showing your love
to Aseprite e.g. naming Aseprite in your website and linking it to
http://www.aseprite.org/, following
2013-11-23 19:01:49 +00:00
[@aseprite](https://twitter.com/aseprite) twitter account, or
[giving a donation](http://www.aseprite.org/donate/).
Other ways to contribute require direct contact with us. For example:
* Writting documentation.
* Making art *for* Aseprite (logos, skins, mockups).
* Sending patches for features or bug fixes.
* Reviewing issues in the [issue tracker](http://code.google.com/p/aseprite/issues/list) and making comments.
The following sections explain some tips about each of these points.
## Documentation
You can start seeing the
2014-08-14 03:41:30 +00:00
[documentation](http://www.aseprite.org/docs/), and
[contact us](support@aseprite.org) if you want to help
writting documentation or recording [tutorials](http://www.aseprite.org/tutorial/).
2013-11-23 19:01:49 +00:00
2014-08-14 03:41:30 +00:00
If you are going to write documentation, we recommend you to take
screenshots or record a GIF animations to show steps:
2013-11-23 19:01:49 +00:00
* As screen recording software, on Windows you can generate GIF files
2014-08-14 03:41:30 +00:00
using [LICEcap](http://www.cockos.com/licecap/).
* You can upload the PNG/GIF images to [Imgur](http://imgur.com/).
2013-11-23 19:01:49 +00:00
## Issues
You can review issues, make comments, or create new ones (features,
bug reports, etc.) in our
[issue tracker](http://code.google.com/p/aseprite/issues/list). You
are encouraged to create mockups for any issue you see and attach them.
## Hacking
The first thing to keep in main if you want to modify the source code:
2014-08-14 03:41:30 +00:00
checkout the **master** branch. It is the branch that we use to
develop new features and fix issues that are planned for the next big
release.
2013-11-23 19:01:49 +00:00
To start looking the source code, see how it is organized in
2014-08-14 03:41:30 +00:00
[src/README.md](https://github.com/aseprite/aseprite/tree/master/src/#aseprite-source-code)
2013-11-23 19:01:49 +00:00
file.
## Get the Source Code
If you want to help in Aseprite, first of all you will need a fresh
copy of the Git repository. It is located in GitHub, right here:
https://github.com/aseprite/aseprite
You can clone it locally using the following command (read-only URL):
2014-08-14 03:41:30 +00:00
git clone git://github.com/aseprite/aseprite.git
2013-11-23 19:01:49 +00:00
On Windows you can use programs like
[msysgit](http://msysgit.github.io/) to clone the repository.
2013-11-23 19:32:13 +00:00
## Compiling
See [INSTALL.md](INSTALL.md) to know how to compile Aseprite.
2013-11-23 19:01:49 +00:00
## Forking & Pull Requests
You can fork the GitHub repository using the Fork button at
[https://github.com/aseprite/aseprite](https://github.com/aseprite/aseprite).
The Pull Requests (PR) systems works in this way:
2014-08-14 03:41:30 +00:00
1. You've to create a new branch from `master`, e.g. `fix-8` to fix the issue 8.
2013-11-23 19:01:49 +00:00
1. Start working on that new branch, and push that branch to your fork.
2014-08-14 03:41:30 +00:00
1. Create a new PR to merge your `fix-8` branch to official `master`.
1. If the PR is accepted, your branch is merged into `master`.
1. You will need to pull changes from the official `master` branch, and
merge them in your own `master` branch. Finally you can discard your
2013-11-23 19:09:52 +00:00
own `fix-8` branch (because those changes should be already merged
2014-08-14 03:41:30 +00:00
into `master` if the PR was accepted).
1. Continue working from the new `master` head.
2013-11-23 19:01:49 +00:00
2014-08-14 03:41:30 +00:00
To keep in mind: **always** start working from the `master` head, if you
2013-11-23 19:01:49 +00:00
want to fix three different issues, create three different branches
2014-08-14 03:41:30 +00:00
from `master` and then send three different PR. Do not chain all the
2013-11-23 19:09:52 +00:00
fixes in one single branch. E.g. `fix-issues-3-and-8-and-25`.
2013-11-23 19:01:49 +00:00
2013-11-23 19:32:13 +00:00
## Mailing List
Subscribe to
[aseprite-discuss](http://groups.google.com/group/aseprite-discuss)
group. If you want to start working in something
(e.g. [an open issue](http://code.google.com/p/aseprite/issues/list)),
you should send an email to the group describing what you want to do,
to avoid programming in something that is already done or which
someone else is working on.
2013-11-23 19:01:49 +00:00
2013-11-23 19:32:13 +00:00
And always remember to look the
2014-08-14 03:41:30 +00:00
[Roadmap](http://www.aseprite.org/roadmap/).