From 1a6a69914c548f5ac9f4cccdab158248d2f6bb3e Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 8 Jun 2017 17:19:02 -0400 Subject: [PATCH] changelog and bugfix --- CHANGELOG.md | 3 ++- app/main.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5c1bb1dc..8197e7035 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Web UI version numbers should always match the corresponding version of LBRY App ## [Unreleased] ### Added * More file types, like audio and documents, can be streamed and/or served from the app - * + * App is no longer gated. Reward authorization re-written. Added basic flows for new users. ### Changed * All UI strings are now rendered according to gettext standard, in prep for i18n @@ -20,6 +20,7 @@ Web UI version numbers should always match the corresponding version of LBRY App * Updated deprecated LBRY API call signatures * App scrolls to the top of the page on navigation * Download progress works properly for purchased but deleted files + * Publish channels for less than 1 LBC ### Deprecated * diff --git a/app/main.js b/app/main.js index 14ead8e95..85a0dd3c7 100644 --- a/app/main.js +++ b/app/main.js @@ -1,6 +1,6 @@ const {app, BrowserWindow, ipcMain} = require('electron'); const url = require('url'); -const isDebug = process.env.NODE_ENV === 'development' || true +const isDebug = process.env.NODE_ENV === 'development' if (isDebug) { require('electron-debug')({showDevTools: true});