changelog and bugfix
This commit is contained in:
parent
09ecae7e0d
commit
1a6a69914c
2 changed files with 3 additions and 2 deletions
|
@ -9,7 +9,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* More file types, like audio and documents, can be streamed and/or served from the app
|
* 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
|
### Changed
|
||||||
* All UI strings are now rendered according to gettext standard, in prep for i18n
|
* 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
|
* Updated deprecated LBRY API call signatures
|
||||||
* App scrolls to the top of the page on navigation
|
* App scrolls to the top of the page on navigation
|
||||||
* Download progress works properly for purchased but deleted files
|
* Download progress works properly for purchased but deleted files
|
||||||
|
* Publish channels for less than 1 LBC
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
const {app, BrowserWindow, ipcMain} = require('electron');
|
const {app, BrowserWindow, ipcMain} = require('electron');
|
||||||
const url = require('url');
|
const url = require('url');
|
||||||
const isDebug = process.env.NODE_ENV === 'development' || true
|
const isDebug = process.env.NODE_ENV === 'development'
|
||||||
|
|
||||||
if (isDebug) {
|
if (isDebug) {
|
||||||
require('electron-debug')({showDevTools: true});
|
require('electron-debug')({showDevTools: true});
|
||||||
|
|
Loading…
Reference in a new issue