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]
|
||||
### 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
|
||||
*
|
||||
|
|
|
@ -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});
|
||||
|
|
Loading…
Add table
Reference in a new issue