1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

Electron release v0.10.21

This commit is contained in:
Laurent Cozic
2017-11-17 23:42:45 +00:00
parent 6f88c025f5
commit 716b1315a9
6 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "joplin", "name": "joplin",
"version": "0.10.69", "version": "0.10.70",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@@ -18,7 +18,7 @@
], ],
"owner": "Laurent Cozic" "owner": "Laurent Cozic"
}, },
"version": "0.10.69", "version": "0.10.70",
"bin": { "bin": {
"joplin": "./main.js" "joplin": "./main.js"
}, },

View File

@@ -1,6 +1,6 @@
{ {
"name": "Joplin", "name": "Joplin",
"version": "0.10.20", "version": "0.10.21",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "Joplin", "name": "Joplin",
"version": "0.10.20", "version": "0.10.21",
"description": "Joplin for Desktop", "description": "Joplin for Desktop",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View File

@@ -90,8 +90,8 @@ android {
applicationId "net.cozic.joplin" applicationId "net.cozic.joplin"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion 22
versionCode 56 versionCode 57
versionName "0.9.43" versionName "0.10.44"
ndk { ndk {
abiFilters "armeabi-v7a", "x86" abiFilters "armeabi-v7a", "x86"
} }

View File

@@ -134,6 +134,7 @@ const ActionButton = connect(
(state) => { (state) => {
return { return {
folders: state.folders, folders: state.folders,
locale: state.settings.locale,
}; };
} }
)(ActionButtonComponent) )(ActionButtonComponent)