Disable theatre mode styles for medium screen (or lower)
Fix the width of the cover in theater mode
Fix conflicting styles when width is 1150px
Remove duplicate from CHANGELOG
Co-authored-by: Jean-Michel Morani <probono+lbry@morani.org>
work in progress
added input to select custom and default server when creating comment
the problem of synchronizing the two commentServer of the application was solved
btn moved to the correct component and syncs correctly
Fixed why it didn't show comments
Aligned input
size and location of the refresh btn changed, and added maximum and minimum width for the comment server
margin removed
change using overflow
refresh
* Upgrade to electron 17.
* Remove unused dependencies.
* Update recommended node version in readme.
* Move all the dependencies back to devDependencies.
* Move dependencies back as they were.
* Allow only images in modal image uploader.
* Set file path and mime in file selector.
* Refactor WebFile.
* Update get-file-from-path to work with folders; fix file-list component.
* Get rid of File | string for filePath property in components.
* Show instant preview while updating channel thumbnail.
* Fix publish.
* Add jpeg and svg to image filter.
* doFetchModBlockedList: don't block ui thread
doFetchModBlockedList is blocking the ui thread.
Duplicate data in `doFetchModBlockedList::blockListsPerChannel` to about 1000. The tab is dead when function hits, about 4s after reload.
- Yield occasionally using the `setTimeout` method.
- Doing a chunk size of 1 for now so we don't have to yield the inner loop as well (seems good enough). This is just based on a relatively large blocklist size.
- Can't do `await` in a callback, so must change the `forEach` to a `for`.
* yield thread in storeList
Co-authored-by: infinite-persistence <inf.persistence@gmail.com>