Skip to content

Commit

Permalink
Merge pull request #3376 from Expensify/main
Browse files Browse the repository at this point in the history
  • Loading branch information
OSBotify authored Jun 4, 2021
2 parents 2374c79 + 3ce1f41 commit 16c50e4
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 35 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1001006206
versionName "1.0.62-6"
versionCode 1001006207
versionName "1.0.62-7"
}
splits {
abi {
Expand Down
3 changes: 1 addition & 2 deletions desktop/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ const mainWindow = (() => {
width: 1200,
height: 900,
webPreferences: {
enableRemoteModule: true,
nodeIntegration: true,
},
titleBarStyle: 'hidden',
Expand Down Expand Up @@ -229,7 +228,7 @@ const mainWindow = (() => {
ipcMain.on(ELECTRON_EVENTS.REQUEST_VISIBILITY, (event) => {
// This is how synchronous messages work in Electron
// eslint-disable-next-line no-param-reassign
event.returnValue = browserWindow.isFocused();
event.returnValue = browserWindow && browserWindow.isFocused();
});

// This allows the renderer process to bring the app
Expand Down
2 changes: 1 addition & 1 deletion ios/ExpensifyCash/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.0.62.6</string>
<string>1.0.62.7</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/ExpensifyCashTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0.62.6</string>
<string>1.0.62.7</string>
</dict>
</plist>
61 changes: 34 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expensify.cash",
"version": "1.0.62-6",
"version": "1.0.62-7",
"author": "Expensify, Inc.",
"homepage": "https://expensify.cash",
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
Expand Down Expand Up @@ -130,7 +130,7 @@
"copy-webpack-plugin": "^6.0.3",
"detox": "^17.8.3",
"diff-so-fancy": "^1.3.0",
"electron": "^9.2.0",
"electron": "^11.4.8",
"electron-builder": "^22.8.0",
"electron-notarize": "^1.0.0",
"electron-reloader": "^1.2.0",
Expand Down

0 comments on commit 16c50e4

Please sign in to comment.