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

Commit

Permalink
Merge branch 'release/3.8.18' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonella Sgarlatta committed Jul 22, 2021
2 parents e98fb1f + 843e595 commit 4727775
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion app/javascripts/renderer/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Bridge } from '@web/services/bridge';

declare const BUGSNAG_API_KEY: string;
declare const DEFAULT_SYNC_SERVER: string;
declare const WEBSOCKET_URL: string;
declare global {
interface Window {
ElectronValence: any;
Expand Down Expand Up @@ -40,7 +41,8 @@ window._bugsnag_api_key = BUGSNAG_API_KEY;
window.startApplication(
// eslint-disable-next-line no-undef
DEFAULT_SYNC_SERVER || 'https://sync.standardnotes.org',
window.bridge
window.bridge,
WEBSOCKET_URL
);

await new Promise((resolve) =>
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "Standard Notes",
"description": "A simple and private place for your notes, thoughts, and life's work.",
"author": "Standard Notes <[email protected]>",
"version": "3.8.17",
"version": "3.8.18",
"main": "./dist/index.js",
"dependencies": {
"keytar": "^7.4.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "standard-notes",
"main": "./app/dist/index.js",
"version": "3.8.17",
"version": "3.8.18",
"repository": {
"type": "git",
"url": "git://github.com/standardnotes/desktop"
Expand Down
2 changes: 1 addition & 1 deletion web
Submodule web updated from de8be4 to 640894
1 change: 1 addition & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ module.exports = function ({
),
BUGSNAG_API_KEY: JSON.stringify(process.env.BUGSNAG_API_KEY),
EXPERIMENTAL_FEATURES,
WEBSOCKET_URL: JSON.stringify(process.env.WEBSOCKET_URL),
}),
],
};
Expand Down

0 comments on commit 4727775

Please sign in to comment.