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

Tools: Set version to 1.4

This commit is contained in:
Laurent Cozic 2020-11-05 17:41:25 +00:00
parent 0d7ca97556
commit c53cd52b4d
6 changed files with 7 additions and 7 deletions

View File

@ -31,7 +31,7 @@
],
"owner": "Laurent Cozic"
},
"version": "1.3.13",
"version": "1.4.0",
"bin": {
"joplin": "./main.js"
},

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Joplin Web Clipper [DEV]",
"version": "1.3.1",
"version": "1.4.0",
"description": "Capture and save web pages and screenshots from your browser to Joplin.",
"homepage_url": "https://joplinapp.org",
"content_security_policy": "script-src 'self'; object-src 'self'",

View File

@ -1,6 +1,6 @@
{
"name": "@joplinapp/app-desktop",
"version": "1.3.20",
"version": "1.4.0",
"description": "Joplin for Desktop",
"main": "main.js",
"private": true,

View File

@ -139,7 +139,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2097602
versionName "1.3.13"
versionName "1.4.0"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}

View File

@ -344,7 +344,7 @@
INFOPLIST_FILE = Joplin/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 10.3.1;
MARKETING_VERSION = 10.4.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@ -370,7 +370,7 @@
INFOPLIST_FILE = Joplin/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 10.3.1;
MARKETING_VERSION = 10.4.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",

View File

@ -1,7 +1,7 @@
const fs = require('fs-extra');
const path = require('path');
const rootDir = path.dirname(__dirname);
const rootDir = path.dirname(path.dirname(__dirname));
async function updatePackageVersion(packageFilePath, majorMinorVersion) {
const contentText = await fs.readFile(packageFilePath, 'utf8');