Merge pull request #3247 from vector-im/feature/bma/master_main
`master` branch has been renamed to `main`
This commit is contained in:
commit
659d012e13
|
@ -29,6 +29,14 @@ Test:
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
- New store descriptions
|
- New store descriptions
|
||||||
|
- `master` branch has been renamed to `main`. To apply change to your dev environment, run:
|
||||||
|
```sh
|
||||||
|
git branch -m master main
|
||||||
|
git fetch origin
|
||||||
|
git branch -u origin/main main
|
||||||
|
# And optionally
|
||||||
|
git remote prune origin
|
||||||
|
```
|
||||||
|
|
||||||
Changes in Element 1.1.6 (2021-04-16)
|
Changes in Element 1.1.6 (2021-04-16)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
|
@ -59,7 +59,7 @@ allprojects {
|
||||||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
||||||
// Jitsi repo
|
// Jitsi repo
|
||||||
maven {
|
maven {
|
||||||
url "https://github.com/vector-im/jitsi_libre_maven/raw/master/android-sdk-3.1.0"
|
url "https://github.com/vector-im/jitsi_libre_maven/raw/main/android-sdk-3.1.0"
|
||||||
// Note: to test Jitsi release you can use a local file like this:
|
// Note: to test Jitsi release you can use a local file like this:
|
||||||
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.1.0"
|
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.1.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,9 +64,9 @@ static def gitBranchName() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// For Google Play build, build on any other branch than master will have a "-dev" suffix
|
// For Google Play build, build on any other branch than main will have a "-dev" suffix
|
||||||
static def getGplayVersionSuffix() {
|
static def getGplayVersionSuffix() {
|
||||||
if (gitBranchName() == "master") {
|
if (gitBranchName() == "main") {
|
||||||
return ""
|
return ""
|
||||||
} else {
|
} else {
|
||||||
return "-dev"
|
return "-dev"
|
||||||
|
@ -119,7 +119,7 @@ android {
|
||||||
renderscriptSupportModeEnabled true
|
renderscriptSupportModeEnabled true
|
||||||
|
|
||||||
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode.
|
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode.
|
||||||
// Other branches (master, features, etc.) will have version code based on application version.
|
// Other branches (main, features, etc.) will have version code based on application version.
|
||||||
versionCode project.getVersionCode()
|
versionCode project.getVersionCode()
|
||||||
|
|
||||||
// Required for sonar analysis
|
// Required for sonar analysis
|
||||||
|
|
Loading…
Reference in New Issue