infinite-persistence
8e6604cfa6
Add blank Swap page
2021-04-13 14:02:25 -04:00
infinite-persistence
28260c27d1
SendLBC: switch from Modal to Page
2021-04-13 14:02:25 -04:00
infinite-persistence
5d31dc536c
ReceiveLBC: switch from Modal to Page
2021-04-13 14:02:25 -04:00
zeppi
fbff266b28
add br mindblown icon
2021-04-13 13:22:02 -04:00
infinite-persistence
4252db91f9
Add new notification filter api params
2021-04-08 14:28:21 -04:00
infinite-persistence
855ae15a27
Search: infinite scroll
2021-04-07 12:08:17 -04:00
infinite-persistence
5421a64b65
Revamp search filters
...
## Issue
4945: Simplify / revamp search filters for odysee (and lbry.tv)
## Changes
- Tweaked the "claim type = file | channel | everything" a little to hopefully make it more intuitive.
- Added "Sort By".
- Added "Upload Date".
- Fixed the affected files to handle both Desktop and Odysee.
- Tweaked the layout to be more condensed so that we can see some results as we change the filter.
- Added animations.
- Added "Exact match" option that helps user to surround with quotes.
2021-04-07 12:08:17 -04:00
infinite-persistence
a9cae23d87
getSearchQueryString: add "time_filter" option
2021-04-07 12:08:17 -04:00
infinite-persistence
2cc049bb83
getSearchQueryString: add "exact" option to include surrounding quotes.
2021-04-07 12:08:17 -04:00
infinite-persistence
dc06e2da99
getSearchQueryString: add "sort_by" options
2021-04-07 12:08:17 -04:00
seanyesmunt
e3ea004f67
revert e3a478adc3
2021-04-06 15:42:27 -04:00
seanyesmunt
0d41e6d88d
Revert "Simplify language lists"
...
This reverts commit 27d43b2b41
.
2021-04-06 15:42:27 -04:00
Stefan Sundin
039264531f
Add 24-hour clock setting.
2021-04-06 13:00:10 -04:00
infinite-persistence
b17ba20fd5
Change: 'Wikang Filipino' --> 'Filipino'
...
I think both are acceptable, but the latter seems more popular. Doing this change as we'll be sorting the list.
2021-04-05 01:56:49 -04:00
infinite-persistence
52f068cead
Add: Japanese, Afrikaans, Filipino, Thai and Vietnamese
...
## Issue
Closes 5646: Add more completed language translations
## Notes
SDK uses RFC 5646 format, which led me to
https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry . Took the codes from here. They match what's already used in Transifex, so that's good.
2021-04-04 22:54:33 -04:00
infinite-persistence
81e4730037
Simplify language lists
...
- SUPPORTED_SUB_LANGUAGE_CODES[] that I introduced was pretty redundant when SUPPORTED_LANGUAGES[] already hold the information. The logic to ignore sub-languages (i.e. reduce the locale's "en-GB" to "en" is now located in getDefaultLanguage()).
- SUPPORTED_BROWSER_LANGUAGES[] and SUPPORTED_LANGUAGES[] look so similar and hard to tell what the former is for at first glance. The functionality to map 'zh-CN' to 'zh-Hans' is now handled by resolveLanguageAlias(), which makes the intention clearer.
This leaves us with a single list -- SUPPORTED_LANGUAGES[], whose key also tells us the desired language code to use.
Also, clients now need to call `resolveLanguageAlias` to map any language code aliases, as they differ depending on how it is queried (e.g. `navigator.language` vs. `app.getLocal()` uses different standards).
I think we no longer need to explicitly migrate existing user's 'zh-CN' into 'zh-Hans' because the rest of the system will always use the desired language code as long as 'resolveLanguageAlias' is called appropriately. e.g. the system uses `selectLanguage` and `selectLanguage` calls `resolveLanguageAlias`.
2021-04-04 22:54:33 -04:00
zeppi
137c268a7b
add livestream icons
2021-03-24 12:13:26 -04:00
DispatchCommit
f18ad64527
use new livestream iframe embed
2021-03-22 15:30:25 -07:00
DispatchCommit
76ac4c19b9
Hookup new live detection API
2021-03-22 15:30:22 -07:00
Sean Yesmunt
0f24f3fdfd
use has_no_source to check if claim is a livestream
2021-03-22 15:30:16 -07:00
Sean Yesmunt
da3e3c8404
add new 'livestream' publish mode
2021-03-22 15:30:03 -07:00
Sean Yesmunt
73f593ddb3
bring in livestream changes from odysee
2021-03-22 15:30:01 -07:00
DispatchCommit
02c0882d90
Create livestream page and generate signed streamkey
2021-03-22 15:29:59 -07:00
DispatchCommit
51a940ed62
Add Go Live to header dropdown
2021-03-22 15:29:58 -07:00
infinite-persistence
5d40a4c9f6
Markdown editor: Remove character limit
...
## Issue
Closes 5687: Ensure post mode has no text limit
## Changes
- `type="markdown"` can now have unlimited length if clients don't define `textAreaMaxWidth`.
- The internal default limit of 2000 is narrowed down to `type=textarea`.
2021-03-21 21:00:16 -04:00
infinite-persistence
605d33331b
Support for Category-Page Metadata definition.
...
## Issue
Part of 4786: Add support for web metadata on category pages
## Note
Remaining task: `category-metadata.js` needs to be filled first.
2021-03-19 11:11:02 -04:00
zeppi
b6d613fe47
re-unify icons with master
2021-03-08 11:08:23 -05:00
Sean Yesmunt
ea74a66dbd
New moderation tools: block & mute ( #5572 )
...
* initial support for block/mute
* hide blocked + muted content everywhere
* add info message for blocked/muted characteristics
* sort blocked list by most recent block first
* add 'blocked' message on channel page for channels that you have blocked
* cleanup
* delete unused files
* always pass mute/block list to claim_search on homepage
* PR cleanup
2021-03-03 13:50:16 -05:00
infinite-persistence
277a1d5d1f
Tell user to reduce 'Channel Description' when exceeded tx-limit.
...
## Issue
Second attempt at 5571: Limit description length on channel edit
## Changes
- Undo #5573 : restore limit back to 5000.
- Translate the `bad-txns-claimscriptsize-toolarge (code 16)` error into `Transaction limit reached. Try reducing the Description length.`
2021-03-03 11:52:51 -05:00
infinite-persistence
aa8b1f8602
Lowered 'Channel Description' limit from 5000 to 3000 chars.
...
## Issue
Closes 5571: Limit description length on channel edit
## Notes
Similar to the previous value of '5000', this is a trial-and-error estimate.
2021-02-24 11:11:06 -05:00
jessopb
06681017ee
Try some popcorn ( #5553 )
...
* try popcorn
* different icon
* icon attr
* popcorn2
* popcorn3
* popcorn to movies
2021-02-18 22:10:25 -05:00
Sean Yesmunt
09b689ba1c
add channel staked amount indicator on channel thumbnails
2021-02-18 01:14:39 -05:00
infiinte-persistence
52a5655b26
Remove irrelevant comment (was copy-pasted)
2021-02-17 17:39:54 -05:00
infiinte-persistence
a127fce561
Add Finnish and Norwegian
...
## Issue
5458: add Finnish/Norwegian languages to supported
2021-02-17 17:39:54 -05:00
Sean Yesmunt
db87125dc8
refactor 'active' channel usage across the app
2021-02-11 10:45:34 -05:00
zeppi
d01f3da174
mass claim tips
...
bump
ui pass
move mass tip unlock to modal
better track wallet operations in progress
2021-02-05 16:55:06 -05:00
zeppi
40408e25be
review changes
2021-02-04 20:55:36 -05:00
zeppi
a85c9a1f48
provide tags for disabling comments
2021-02-04 20:55:36 -05:00
Jeffrey Fisher
4c97cb4ba4
Enable PDF Viewer in App
...
Closes #2903
2021-01-28 10:21:35 -05:00
infiinte-persistence
7419fefa2d
Zoomable image viewer in Markdown (posts and comments)
...
## Issue
4899: Ability to expand images in markdown posts for viewing
2021-01-27 10:06:31 -05:00
infiinte-persistence
912489cce0
Make zoom level persistent on Desktop
...
- uses local storage.
- for 'web', the browser is already handling that.
2021-01-26 10:20:59 -05:00
zeppi
68de0a8107
language map fix
2021-01-11 18:14:42 -05:00
zeppi
6fb345dbbc
zh languages
...
bugfix
bugfix3
publish
add zh back for homepage selector
test
revert i18n file
DRY publish language
2021-01-11 10:30:26 -05:00
zeppi
99ab165a8f
New repost flow
...
Clearer display of takeover amounts
Repost from empty search result, from top page, or from claim
review changes
final touches
bump
empty comment copy
they
emptier
validation cleanup
extra
2020-12-16 09:47:28 -05:00
Sean Yesmunt
120300643f
improved mobile-search experience
2020-12-11 14:37:06 -05:00
Sean Yesmunt
30d8a0406d
wunderbar improvements
2020-12-03 12:39:12 -05:00
Sean Yesmunt
a4c9115063
cleanup from last PR
2020-11-13 15:54:00 -05:00
Sean Yesmunt
f1adfddded
bump lbry-redux and handle other fatal sync errors
2020-11-13 14:48:04 -05:00
Sean Yesmunt
1023f30b4c
initial PR for custom homepages - take 2
2020-11-10 12:08:19 -05:00
Sean Yesmunt
353c1a5689
Revert "unified custom homepage"
...
This reverts commit 55768fc6b5
.
2020-11-10 10:36:11 -05:00
jessop
55768fc6b5
unified custom homepage
2020-11-10 10:24:04 -05:00
Sean Yesmunt
1cc7be746b
move splash animation out of settings
2020-11-09 13:37:51 -05:00
Sean Yesmunt
485a734c9b
make notifications deleteable + unsub from the bell on notifications page
2020-11-04 10:25:49 -05:00
Sean Yesmunt
63f1fed33c
per channel notification settings
2020-11-02 14:13:13 -05:00
jessop
c4d05a5a1a
claim-search by language
...
setting to search only in language as default
add channel update language selection and about
bump
searchable languages
2020-10-29 15:20:18 -04:00
Sean Yesmunt
ad20e355cf
creator only like reactions
2020-10-27 12:27:30 -04:00
jessop
9d4f7dc642
sync reducer stuff
...
bring tags into app repo
prevent prefset until prefsReady
prefs ready on sign up
prefsReady-desktop
2020-10-27 10:17:11 -04:00
Sean Yesmunt
f54a0de797
bring in sync code from lbryinc
2020-10-27 10:17:11 -04:00
Sean Yesmunt
295b8cf2e1
refactor floatingUri to allow inline players in comments/markdown
2020-10-21 15:29:29 -04:00
Sean Yesmunt
106f5a0ac2
initial comment pin PR with new commit
2020-10-19 23:37:39 -04:00
Sean Yesmunt
264a85d837
Revert "comment pin action"
...
This reverts commit 636ab7427d
.
2020-10-19 15:01:09 -04:00
jessop
636ab7427d
comment pin action
...
owners can pin and unpin comments
tweak pin icon styles
move commenting activeChannel from localStorage to redux
2020-10-19 14:48:01 -04:00
Sean Yesmunt
44bcc943a0
add new sort icons for new/best/controversial
2020-10-14 16:51:48 -04:00
Sean Yesmunt
761b93d811
add style for comments with is_pinned=true
2020-10-08 11:48:32 -04:00
Sean Yesmunt
f534291767
update comment sort icons
2020-10-06 17:36:13 -04:00
Sean Yesmunt
00c05437ca
add comment sorting and improve comment focus styles
2020-10-06 16:04:52 -04:00
Sean Yesmunt
eb84a366d2
add file reactions code from odysee
2020-10-02 15:28:00 -04:00
infiinte-persistence
16b1605a35
Add SETTINGS.ENABLE_PUBLISH_PREVIEW
...
This option allows users to bypass the "publish preview" modal. Users can disable it by checking "don't show this again" in the modal, and re-enable it in the Settings Page.
2020-10-02 10:25:17 -04:00
infiinte-persistence
4c3728a20f
Add "Publish Preview" modal
2020-10-02 10:25:17 -04:00
jessop
63ce107cc1
comment reactions
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b0d19455c1
add placeholder upvote/downvote buttons on comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
f8e01c7c99
fix target for notification for daily_watch_remind type
2020-09-29 17:12:32 -04:00
Sean Yesmunt
93c2e753b2
link to following page for daily watch reward notification
2020-09-29 17:12:32 -04:00
Sean Yesmunt
86003c73a3
handle comment reply notifications
2020-09-29 17:12:32 -04:00
Sean Yesmunt
f547053ebc
add yotube sync to initial sign up flow
2020-09-29 17:12:32 -04:00
Sean Yesmunt
bc89d774ba
add youtube sync to first run
2020-09-29 17:12:32 -04:00
Sean Yesmunt
83a6589cd0
new lbc icon
2020-09-29 17:12:32 -04:00
Sean Yesmunt
1f2fabe81b
Use sentence case for all card titles
2020-09-29 17:12:32 -04:00
Sean Yesmunt
5beb219ff6
fix notification link to comment not working in some cases
...
the router scroll handling was interefering. I turned that off if exists as a search param
2020-09-29 17:12:32 -04:00
Sean Yesmunt
248e578422
new comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
19fb7d7f06
new layout 🕺
2020-09-29 17:12:32 -04:00
jessop
9127266956
get sync password out of signing flow
2020-09-21 14:11:25 -04:00
jessop
3b23f09bed
fix sync clean wallet bug
...
remove previous changes,keep syncpref in wallet, change anon wallet pref key to local
sync choices wip
dont relocate syncenable setting
bump
no prefs on web unauth
bugfix redux bump
pull after sync change
bump
2020-09-21 14:11:25 -04:00
infiinte-persistence
6a73e02bf1
Fix "Price=free" giving 0 results in Following query
...
## Issue
Fixes 4477: `Price="free" yields nothing`
## Remarks
I didn't consult the documentation, but simply did a trial-and-error.
"=0" -- didn't work
"<=0" -- works
2020-09-21 12:22:33 -04:00
jessop
6c4842a111
sync changes
2020-09-10 14:20:02 -04:00
Sean Yesmunt
9ee4b256fb
add mark as seen to notifications
2020-08-21 16:04:27 -04:00
Franco Montenegro
cbfed97853
Add app closing behavior setting
2020-08-20 01:16:11 -04:00
Sean Yesmunt
692862c769
collapsable sidebar initial commit
2020-08-11 17:04:14 -04:00
Thomas Zarebczan
7b504b5fa7
update invalid symbols
2020-08-11 11:30:23 -04:00
Baltazar Gomez
2089a0064f
add new chars limit for post
2020-08-05 21:37:00 -04:00
btzr-io
a565f7c5df
fix labeling and rename some strings
2020-08-04 11:49:12 -04:00
btzr-io
a5d1746151
add in-app text and markdown publishing
2020-08-04 11:49:12 -04:00
Sean Yesmunt
9acbdf9825
group comment notifications and clean up notification style
2020-07-30 16:15:02 -04:00
Sean Yesmunt
0df388280e
add search code from lbry-redux
2020-07-27 16:37:36 -04:00
Sean Yesmunt
d76ece04bc
group similar settings in preparation of tabular settings page
2020-07-27 14:19:18 -04:00
jessop
d9bf72a351
all settings constants come from redux
...
sync settings
backout nav cases and anon preference key
more robust backout header
put notificationSettings under backout bar
review changes
2020-07-27 11:53:14 -04:00
Sean Yesmunt
201417efcf
Publish => Upload
2020-07-27 10:48:05 -04:00
Sean Yesmunt
90327a72ed
add comments behind a flag
2020-07-23 11:03:00 -04:00
Sean Yesmunt
69cfcd81e9
bring in 'blocked' code from lbry-redux take 2
2020-07-15 09:52:08 -04:00
Sean Yesmunt
9c9530c6f3
Revert "bring in comments/blocked code from 'lbry-redux'"
...
This reverts commit fa7f74f979
.
2020-07-14 19:23:25 -04:00