1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Android release v1.0.339-3

This commit is contained in:
Laurent Cozic 2020-09-04 17:28:18 +01:00
parent 569355a318
commit 44f2842820
3 changed files with 6 additions and 4 deletions

View File

@ -125,8 +125,8 @@ android {
applicationId "net.cozic.joplin"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2097574
versionName "1.0.338"
versionCode 2097575
versionName "1.0.339"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}

View File

@ -452,7 +452,7 @@ async function initialize(dispatch, messageHandler) {
if (Setting.value('env') == 'prod') {
await db.open({ name: 'joplin.sqlite' });
} else {
await db.open({ name: 'joplin-71.sqlite' });
await db.open({ name: 'joplin-76.sqlite' });
// await db.clearForTesting();
}

View File

@ -184,8 +184,10 @@ async function main() {
console.info(`Creating GitHub release ${tagName}...`);
const releaseOptions = { isPreRelease: !!rcSuffix };
const oauthToken = await githubOauthToken();
const release = await githubRelease(projectName, tagName);
const release = await githubRelease(projectName, tagName, releaseOptions);
const uploadUrlTemplate = uriTemplate.parse(release.upload_url);
for (const releaseFilename in releaseFiles) {