blob: 715975fade096ae83d1b73a04fee0855a84173d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
## Irssi's Script Repository
This repository contains scripts available at
[scripts.irssi.org](http://scripts.irssi.org).
[](https://travis-ci.org/irssi/scripts.irssi.org)
### Contributing
To add or modify a script do the following:
1. Fork this repository on Github.
2. Create a feature branch for your set of patches using `git checkout -b foobar`.
3. Add or modify your script in the repository. Remember to add it to Git using `git add`.
4. If you are modifying a script, remember to increase the version number and update the last modification date.
5. If the script has a ChangeLog, remember to include your modifications.
6. Commit your changes to Git and push them to Github.
7. Submit pull request.
8. Review the travis report once it is done.
9. Await review of your changes by one of our developers.
### Version Numbering
To increase the version numbering, take the following conditions into account:
1. Do not create explicit minor revision numbers if they are not present (1.3 becomes 1.4 or 2.1, not 1.3.1)
2. When modifying an existing feature, increase the minor revision number (1.3 becomes 1.4, not 2.1)
3. When adding a new feature, increase the major revision number (1.3 becomes 2.1, not 1.4)
|