-
Notifications
You must be signed in to change notification settings - Fork 109
Contributing Code
If you're not yet familiar with the way GitHub works (forking, pull requests, etc.), be sure to check out the awesome article about forking on the GitHub Help website — it will get you started quickly.
-
Create a personal fork of the project on GitHub.
-
Clone the fork on your local machine. Your remote repo on GitHub is called
origin
. -
Add the original repository as a remote called
upstream
. -
If you created your fork a while ago be sure to pull upstream changes into your local repository.
-
Create a new branch to work on! Branch from
master
.You should always write each batch of changes (feature, bugfix, etc.) in its own topic branch.
Please do not commit to the
master
branch, or your unrelated changes will go into the same pull request. -
Implement/fix your feature, comment your code.
-
Follow the code style of the project, including indentation.
-
Add or change the documentation as needed.
-
Squash some commits into a single commit if necessary.
-
Push your branch to your fork on GitHub, the remote
origin
. -
From your fork open a pull request in the correct branch. Target the project's
master
branch! -
…
-
If the maintainer requests further changes just push them to your branch. The PR will be updated automatically.
-
Once the pull request is approved and merged you can pull the changes from
upstream
to your local repo and delete your extra branch(es).
And last but not least: follow our commit messages style:
- Start message with some keyword describing it's scope ("IITC-Mobile: …", "draw-tools: …")
- Follow good practices, e.g. these seven rules.
- If it seems difficult to summarize what your commit does,
it may be because it includes several logical changes or bug fixes,
and are better split up into several commits using
git add -p
.
For IITC users
-
Guide on how to migrate data from an legacy version of IITC Mobile
-
(click to expand )
Cache (Data caching to prevent reloading)
Controls (Map controls/widgets)
Draw (Allow drawing things onto the current map so you may plan your next move)
Highlighter (Portal highlighters)
- Hide portal ownership
- Highlight portals by level color
- Highlight inactive portals
- Highlight portal weakness
- Highlight high level portals
- Highlight portals by my level
- Highlight portals with ornaments
- Highlight portals that need recharging
- Highlight portals with ornaments
- Highlight portals that need recharging
- Highlight portals missing resonators
- Highlight portals with infrastructure problems
Info (Display additional information)
- Available AP statistics
- Portal count
- Portals list
- Player level guess
- Localized scoreboard
- Missions
- Scoring cycle / checkpoint times
- Layer count
Layer (Additional map layers)
- Find farms on map
- Portal Level Numbers
- Overlay KML / GPX / GeoJSON
- Ingress scoring regions
- Zaprange
- Player activity tracker
- Portal Names
- Keys on map
Map Tiles (Alternative map layers)
- Stamen.com map layers
- Blank map
- Gray Google map
- Bing maps
- OpenStreetMap.org map
- Gaode (高德地图) / AutoNavi map
- Kartverket.no maps (Norway)
- Yandex maps
Portal Info (Enhanced information on the selected portal)
Tweaks (Adjust IITC settings)
Misc (Unclassified plugins)
For plugin developers
For IITC developers