diff --git a/Documentation.md b/Documentation.md index 8b21754..b877167 100644 --- a/Documentation.md +++ b/Documentation.md @@ -5,12 +5,13 @@ To build a unsigned apk of the app just do `./gradlew assembleRelease`. We map the version name to the versioncode. The version code follows this scheme: `nnrrmmm`, -* **Release**: versionName: "0.6.0" -> versionCode: 0006000 - * **Release**: versionName: "0.6.1" -> versionCode: 0006100 +* **Release**: versionName: "0.6.0" -> versionCode: 0006000 = 00.06.000 + * **Release**: versionName: "0.6.1" -> versionCode: 0006100 = 00.06.100 * **RC**: versionName: "0.6.0-RC1" -> versionCode: 00059xx (from beta) -* **Beta**: versionName: "0.5.90" -> versionCode: 0005900 +* **Beta**: versionName: "0.5.90" -> versionCode: 0005900 = 00.05.x90 +* **Alpha**: versionName: "0.5.80" -> versionCode: 0005800 = 00.05.x80 -A beta release will always be version "x.x.9x". There is a total of 10 "Beta" version names (x.x.90 to x.x.99). The beat version codes will start at `nnpp000`. The RC phase the nersion name is always "*VERSION*-RC*X*". Th version code will be increased as with the beta versions. The final release will be `nnrr000`. +A beta release will always be version "n.r.m9x". There is a total of 10 "Beta" version names (n.r.m90 to n.r.m99). The beta version codes will start at `nnppm00`. The RC phase the version name is always "*VERSION*-RC*X*". The version code will be increased as with the beta versions. A final major release will be `nnrr000`. n: 0 (currently not used) r: the release number