Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Commit

Permalink
2.1b3
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Jan 30, 2018
1 parent 65f4f7e commit fb6118a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ android {
applicationId "com.standardnotes"
minSdkVersion 21
targetSdkVersion 25
versionCode 2010002
versionName "2.1-beta.2"
versionCode 2010003
versionName "2.1-beta.3"
multiDexEnabled true
ndk {
abiFilters "armeabi-v7a", "x86"
Expand Down
2 changes: 1 addition & 1 deletion ios/StandardNotes/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2</string>
<string>3</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "StandardNotes",
"version": "2.1-beta.2",
"versionIOS": "2.1-beta.2",
"versionAndroid": "2.1-beta.2",
"version": "2.1-beta.3",
"versionIOS": "2.1-beta.3",
"versionAndroid": "2.1-beta.3",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
Expand Down
2 changes: 1 addition & 1 deletion src/OptionsState.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class OptionsState {
}

async loadSaved() {
Storage.getItem("options").then(function(result){
return Storage.getItem("options").then(function(result){
_.merge(this, _.omit(JSON.parse(result), ["changeObservers"]));
this.notifyObservers();
}.bind(this))
Expand Down

0 comments on commit fb6118a

Please sign in to comment.