GLMDB Standards
From GLMWiki
Contents
Programming
GIT
(Main Article: Git)
Suggested standard: Vr.f.h
For example: Take the version V2.4.13 -- 2 here is the release version, 4 is the feature version, and 13 is the hotfix version.
Releases and hotfixes already get tags (they are named for their version), but one will have to be manually added to a feature. You may do this with git tag -a v1.4 -m "bla bla my version 1.4".
This will apply that tag to the branch you are currently on. (git branch, git checkout x)Then, when you git push origin develop, also do git push --tags to send along the tag you've set.
Web Development
Always make sure that such things as a transparent navbar plays well with the colors of any background image that the client may be inclined to upload..