Commit graph

10591 commits

Author SHA1 Message Date
jessopb 5e3844390f
update disk space setting to new api (#7356) 2021-12-15 18:11:22 -05:00
jessopb 4c17b3818e
quick fix for download connecting... (#7354) 2021-12-15 17:56:20 -05:00
jessopb a0917908bb
add feature to enable experimental upgrades (#7353) 2021-12-15 15:58:47 -05:00
infinite-persistence 05d5e6c05d
Remove old mobile chromecast css hack (#7352)
lbry-desktop--6844

This negates 49abbecb.

Now that we have a dedicated chromecast button, we don't need to hack Chrome's default cast button to appear on top of vjs-mobile-ui.  The hack no longer works anyway, since the CSS exposure has been deprecated around mid 2020 -- it is still available, but its abilities has become less and less.
2021-12-14 21:09:24 -05:00
jessopb 514bc0a273
remove referral code from share (#7350)
* remove referral code from share

* cleanup
2021-12-13 09:02:28 -05:00
jessopb f474c014f3
update changelog (#7347) 2021-12-12 22:28:23 -05:00
jessopb 0cd1c6d535
improve repost modal styling (#7345) 2021-12-12 18:14:07 -05:00
Bradley Ray e5072c8681
Modal repost (#7341)
* make repost into a modal

* remove unecessary import

* removed page/repost

* fixed yarn lint errors

* added page/repost back

* added "Repost" title bar

* fixed yarn lint errors
2021-12-12 01:03:00 -05:00
jessopb 6fed123253
update changelog (#7340) 2021-12-10 15:03:14 -05:00
jessopb 13a9f5035d
Fixes the play/pause on drag issue with the floating player. (#221) (#7339)
I tried to use event.preventDefault on the click handler but that didn't
work. So instead I'm using css 'pointer-events: none' to disable click
events on the player while the player is being dragged.

https://github.com/OdyseeTeam/odysee-frontend/issues/206

Co-authored-by: maxime peabody <maximepeabody@gmail.com>
2021-12-10 13:08:15 -05:00
jessopb 474782eeb0
redisable windows build (#7337) 2021-12-09 18:07:28 -05:00
Bohdan Kornatskyi 3458fa5e50
Fix MenuButton behavior from toggle dropdown onMousePress to onClick (#7335)
* changed behavior of a MenuButton. now it shows drop down on click not on mouse down

* fix 'Enter' key handling

* changed behavior of a MenuButton. now it shows drop down on click not on mouse down

* fix 'Enter' key handling
2021-12-09 18:05:37 -05:00
zeppi 6e27100606 v0.52.0-rc.8.3 2021-12-09 16:54:45 -05:00
zeppi d22442a316 deploy no csc win 2021-12-09 16:52:34 -05:00
zeppi 28383efbdf v0.52.0-rc.8 2021-12-09 11:27:52 -05:00
zeppi d9afaadb27 update webpack to 4.44.2 and copy-webpack-plugin to 6.4.1 2021-12-08 23:52:05 -05:00
zeppi ec14cc8828 update deps 2021-12-08 21:18:45 -05:00
zeppi 3519be4633 remove react-plastic 2021-12-08 20:55:55 -05:00
zeppi 408eb9a347 cleanup 2021-12-08 20:41:57 -05:00
zeppi 6ba1fafaa0 remove extra sign up pages 2021-12-08 20:41:57 -05:00
zeppi 5e09de5f94 remove invites and rewards 2021-12-08 20:41:57 -05:00
zeppi faa21cb681 remove libappindicator dependency no longer needed after electron 8 2021-12-06 00:50:03 -05:00
zeppi 79dbcfdafa fix duplicate flow files for windows 2021-12-04 23:25:10 -05:00
zeppi 19b24d3f58 v0.52.0-rc.7 2021-12-04 22:21:50 -05:00
jessopb 5be27a5e2c Revert "rm lbry.tv, rm lbryfirst, rm DOMAIN, etc"
This reverts commit 041127bbce.
2021-12-04 22:20:39 -05:00
zeppi 797c18fd15 v0.52.0-rc.6 2021-12-04 16:41:24 -05:00
zeppi 5a1cafc7d3 changelog 2021-12-04 16:40:19 -05:00
zeppi 64a31f1aad lbrynet .106 2021-12-04 16:40:19 -05:00
zeppi d89ef5b928 fix scroll bars 2021-12-03 17:07:09 -05:00
zeppi 041127bbce rm lbry.tv, rm lbryfirst, rm DOMAIN, etc 2021-12-03 16:39:40 -05:00
infinite-persistence 0459148e30 Comment-selectors: fix memoization 2021-12-03 15:22:32 -05:00
infinite-persistence 4d01452447 Fix reaction-selector reference invalidation
When comments are refreshed, each `Comment` gets rendered 4-5 times due to reference invalidation for `othersReacts` (the data didn't actually change).

For selectors without transformation, there is no need to memoize using `createSelector` -- just access it directly. Also, don't do things like `return a[id] || {}` in a reducer, because the reference to the empty object will be different on each call.

Always return directly from the state so that the same reference is returned.

This simple change avoided the wasted resources needed for `createSelector`, and reduced to render to just 2 (initial render, and when reactions are fetched).
2021-12-03 15:22:32 -05:00
zeppi e7572312a8 comment react selectors 2021-12-03 15:22:32 -05:00
infinite-persistence 29b845c3fc Optimize tags and followedTags
followedTags:
- Moved the filtering to the reducer side, so that we don't do it every time. We can't rely on `createSelector` because the store will be invalidated on each `USER_STATE_POPULATE`, unfortunately.

tags:
- Memoize via re-reselect for the "ForUri" selector.
2021-12-03 15:22:32 -05:00
infinite-persistence 26f89b3ec9 re-reselect proof of concept + fix Date selector as first example
`makeSelectDataForUri` always returns a new reference, so `ClaimPreview` was constantly being rendered. It's pretty expensive since `ClaimPreview`'s rendering checks against a huge blocklist, which is another issue on it's own.

- This commit tests the usage of `re-reselect` as the solution to the multi-instance memoization problem (https://github.com/toomuchdesign/re-reselect/blob/master/examples/1-join-selectors.md)
2021-12-03 15:22:32 -05:00
zeppi e262e44912 update changelog 2021-12-03 11:46:37 -05:00
zeppi 7c11f91630 only upload linux to s3 2021-12-03 00:49:34 -05:00
zeppi b778c70837 ORDER typo 2021-12-02 21:19:42 -05:00
zeppi 60f2fd65fd remove copy 2021-12-02 21:13:47 -05:00
zeppi 0c1b681b44 cleaner discover filters display 2021-12-02 20:43:32 -05:00
zeppi 5fed2d01c0 list editing behind toggle button 2021-12-02 20:43:19 -05:00
zeppi f79446b1e7 update trending to use trending_score 2021-12-02 20:42:51 -05:00
zeppi cfd876927f list publish page listview type 2021-12-02 15:08:24 -05:00
zeppi f2da969f72 appstrings 2021-12-02 15:08:24 -05:00
zeppi fea6ca8635 clean 2021-12-02 15:08:24 -05:00
zeppi f1de3b193e collection reordering changes 2021-12-02 15:08:24 -05:00
infinite-persistence 02ba41e759 File description (collapsed): show ~3 lines instead of ~1
## Ticket
- Closes https://github.com/lbryio/lbry-desktop/issues/7222
- Also felt it's too squished for the longest time. Previously fixed comments but didn't handle this.
2021-12-01 13:47:14 -05:00
zeppi d50a74327f improve sync 2021-11-30 15:03:38 -05:00
infinite-persistence 7afe2c58b0 Debounce volume and muted state update.
## Ticket
"Overall React Lag or Extra Re-renders / Volume slider laggy since v0.48"

## The problem
Every redux update results in each mounted component's prop mapping function (the `select` and `perform` stuff) to be recalculated. This is normal per redux, but we do lots of heavy stuff there.

The slider was sending tons of redux update for the Volume and Muted setting.

## Changes
The redux volume/muted setting is just used to restore vjs to the user's setting on the next video, so it doesn't need to be updated immediately/constantly -- vjs keeps it's own video settings.  Debounced that action.
2021-11-29 16:19:38 -05:00
infinite-persistence 30b1562e64 Syntax correction 2021-11-29 16:19:08 -05:00