Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 6 KB

CONTRIBUTING.md

File metadata and controls

98 lines (53 loc) · 6 KB

Contributing to LiveCode

LiveCode Community Logo

Copyright © 2003-2016 LiveCode Ltd., Edinburgh, UK

See also the documentation contributions guide.

Contributors' forums

General discussion about contributing to the LiveCode Community open-source projects takes place on the LiveCode Open Source forums, and in particular the Engine Contributors forum.

Contributor's License Agreement (CLA)

If you wish to contribute to development of LiveCode, you must sign the Contributor's Agreement. This agreement is required because the LiveCode project is dual-licensed both under the GPLv3 and a commercial (closed-source) license; you need to give LiveCode Ltd. permission to use your submissions in this way.

Note: LiveCode cannot accept any pull-requests from individuals who have not signed this agreement.

Using GitHub

The LiveCode workflow is a typical git workflow, where contributors fork the livecode/livecode repository, make their changes on a branch, and then submit a pull request.

Setting up git with your user information

Please ensure that your full name and e-mail address are in the git configuration. Ideally, the e-mail address you use with git should be the same as the e-mail address you used to sign the CLA (i.e. the one used for your LiveCode customer account).

You can set up the name and e-mail address from the command line:

git config --global user.name "<your name>"
git config --global user.email "<your email address>"

Note: Pull requests which add commits containing incorrect author name and e-mail addresses will be rejected.

Branches in GitHub

You should base your changes on an appropriate branch:

  • The develop branch is where work on the next major, experimental release of LiveCode takes place. It usually has all of the most exciting new features, but also a lot of bugs to go with them. If you are adding a new feature to LiveCode, submit your changes to this branch.

  • The develop-X.Y branches work towards the next X.Y.Z release. They are usually much more stable than the develop branch. If you are fixing a bug in LiveCode, submit your changes to the "oldest" develop-X.Y branch that exhibits the bug.

  • The release-X.Y branches are used as part of the release process. Unless you are helping to make a release, you should not normally work with these branches.

Creating a pull request

When you submit a pull request, please make sure to follow the following steps:

  1. Ensure that all the commits have good log messages, in the following format:
Summary line of less than 80 characters

Explanation of what the commit fixes and why it's the right
fix, possibly using multiple paragraphs.  For example, you
might want to describe other options and why the one you
chose is better.

It's very important that readers can get a good idea of what the commit is about just by reading the summary line. To help with this, we use some special "tags" at the start of a commit message summary line:

  • If the commit fixes a bug, please add [[Bug <bug number>]] at the start.

  • If the commit relates to a particular new feature — and there are several commits and pull requests involved in the feature — please add [<feature-name>] at the start.

  • If the commit fixes a Coverity Scan defect, please add [CID <defect number>] at the start.

  1. Make sure that the pull request only relates to one change (one bug fix, one new feature, etc.) or to a group of very closely-related fixes. Please make sure that the pull request has a good description too (often you can base the title and body of the pull request on the commit messages).

Please highlight any areas of your changes that you thought were particularly difficult to figure out. This will help make sure that your code gets thoroughly reviewed.

Pull request process

After you submit a pull request, a member of the LiveCode team will review your changes. They will probably find some improvements that need to be made. Please note that if a reviewer asks you to change your code, it doesn't necessarily mean that there was anything wrong with the changes you've made. It often means that they have spotted a way to fix other things at the same time, or to make your change fit in better with other things that are being worked on elsewhere.

Once a reviewer is happy with the changes, they will mark the pull request as reviewed. The LiveCode continuous integration system will then take your code, and automatically build & test it on all of the platforms supported by LiveCode.

If the tests don't pass, then you will need to make some more changes to fix the problems that were found. These will then be reviewed, etc.

Once your changes have been reviewed and tested, they will be merged in time for the next release.

Bugs

Finding and fixing bugs in LiveCode is a particularly valuable contribution.

If you've found a bug, please add a ticket to the LiveCode issue tracking system. This will give you a bug number which can be used whenever discussing the issue, and included in git commit log messages and in GitHub pull request descriptions. This will help other contributors keep track of who's working on what.

When you submit a pull request that fixes a bug, the status of the bug should be set to "AWAITING_MERGE" -- please also add a comment to the bug with a link to the pull request's page.

When the pull request is merged, the status should be set to "AWAITING_BUILD".

Coding style

See the separate documentation for: