Commit graph

2895 commits

Author SHA1 Message Date
Bill Thornton
5438d3b32c Limit public methods in app router 2022-04-21 12:25:47 -04:00
Bill Thornton
5633618ac2 Remove Dashboard.navigate usage in app router 2022-04-20 17:13:56 -04:00
Bill Thornton
2737399bbf Reduce route lookups 2022-04-19 23:36:20 -04:00
Bill Thornton
f625915540 Use history for app router 2022-04-19 23:36:20 -04:00
Bill Thornton
4b7f615001
Merge pull request #3560 from thornbill/refactor-transparency
Move backdrop transparency method to component
2022-04-19 23:26:12 -04:00
Bill Thornton
cd24cd19b0 Fix underline in card images 2022-04-19 16:53:46 -04:00
Bill Thornton
89af1e339d
Merge pull request #3479 from davidmurdoch/fix/buttons-arent-for-links
Change buttons that act as links to anchor tags
2022-04-19 16:42:13 -04:00
Bill Thornton
054587d9ae
Merge pull request #3559 from thornbill/remove-equality-funcs
Remove custom equality check functions
2022-04-19 16:27:48 -04:00
JodliDev
8420d31696
Move cursor: pointer; to .nowPlayingBar 2022-04-19 15:17:03 +02:00
JodliDev
f4ed457dba
Update nowPlayingBar.scss
Make clear that nowplayingBar is actually clickable
2022-04-14 11:59:46 +02:00
Bill Thornton
13a70d3186
Merge pull request #3509 from sancodes/eslint-novoid
add eslint novoid
2022-04-13 00:44:30 -04:00
Bill Thornton
a9ae263045 Remove default export for backdrop component 2022-04-12 16:58:56 -04:00
Bill Thornton
125d5cb015 Move backdrop transparency method to component 2022-04-12 16:22:00 -04:00
Bill Thornton
ff5c25c4a8 Remove custom equality check functions 2022-04-12 12:55:38 -04:00
Bill Thornton
9de11b443d Use toBoolean from string utils 2022-04-12 12:20:28 -04:00
Bill Thornton
92d249354c
Merge pull request #3554 from thornbill/move-util-files 2022-04-12 08:12:29 -04:00
Bill Thornton
812b8f1c74 Remove duplicate appRouter.param function 2022-04-11 11:20:53 -04:00
Bill Thornton
2d2b99d3b9 Move clientUtils and rename 2022-04-10 02:22:13 -04:00
Bill Thornton
a238ae21f1 Move string utils and migrate to typescript 2022-04-10 01:30:26 -04:00
sancodes
27cd24f5fc fix return statements 2022-04-08 19:10:11 -07:00
Bill Thornton
b8a69b892c
Merge pull request #3551 from thornbill/fix-location-search 2022-04-07 16:42:19 -04:00
Bill Thornton
9b884f1924 Fix url search in hash 2022-04-07 16:06:26 -04:00
Bill Thornton
8d27f45db0 Merge pull request #3525 from whiteowl3/patch-3
Correct Typo

(cherry picked from commit 847a81afd3cf2809cc40da29eb90fe0928ec8495)
Signed-off-by: crobibero <cody@robibe.ro>
2022-04-07 13:00:12 -04:00
Bill Thornton
7ec51f111c Merge pull request #3519 from dmitrylyzo/fix-escapehtml
Escape HTML

(cherry picked from commit ef811e699ca4473b2548badb6295256bccb82ea9)
Signed-off-by: crobibero <cody@robibe.ro>
2022-04-07 13:00:12 -04:00
Bill Thornton
3412201532 Simplify url utils 2022-04-06 17:31:54 -04:00
David Murdoch
812abdd648
fix lint error by adding missing semicolon 2022-04-06 14:16:43 -04:00
Bill Thornton
67169e2a6a Remove getParameterByName global 2022-04-05 15:58:12 -04:00
Bill Thornton
8e66ba315a Remove getWindowLocationSearch global and duplicate implementation 2022-04-05 15:44:55 -04:00
sancodes
95423468bb fix return 2022-04-03 12:08:10 -07:00
David Murdoch
0ffff84a9e
change buttons that act as links to anchor tags
Buttons and links are different and serve different purposes. Links _go
somewhere_ while buttons _do something_.

When I click on a movie title to _go to_ the movie page the thing I
click should act like a link. If I ctrl+click or middle click it it
should still act like a link... by opening in a new tab.
2022-04-01 18:52:16 -04:00
Bill Thornton
1085034c18 Remove setTitle function in app router 2022-03-31 14:36:09 -04:00
Bill Thornton
40f9067c88 Fix whitespace 2022-03-31 09:57:26 -04:00
Bill Thornton
a85ef16e99 Remove broken method of registering routes for plugins 2022-03-31 09:56:40 -04:00
Joshua M. Boniface
a993a80c91
Merge pull request #3343 from dmitrylyzo/transcode-resolution
Limit transcoding profiles with maximum resolution
2022-03-25 10:14:26 -04:00
sancodes
408f2b2bda modify necessary void replacements 2022-03-21 20:50:19 -07:00
Dmitry Lyzo
c42b5ea4ac Allow next higher resolution 2022-03-20 09:15:03 +03:00
Dmitry Lyzo
0dc920d3fd Limit quality settings with maximum resolution 2022-03-20 09:15:03 +03:00
Dmitry Lyzo
bbfe904a28 Limit transcoding profiles with maximum resolution 2022-03-20 09:15:03 +03:00
Dmitry Lyzo
4929bfd350 Fix HTML escaping
Regression: 59adbc348a
2022-03-19 10:51:52 +03:00
Dmitry Lyzo
93d3458fd0 Fix old streamInfo on stream change
When the client changes the stream (fail to play) `streamInfo`
contains the old play session and the next progress report
will update the wrong session. The server then responds with
the wrong playback method until the next progress report.

Update `streamInfo` before playback start so that the data
is up to date.
2022-03-15 23:40:12 +03:00
Dmitry Lyzo
3909398dc3 Fix theme songs with disabled theme videos 2022-03-13 00:37:24 +03:00
Dmitry Lyzo
7842eef4a6 Fix theme queue
Set play options for each item so that the playback manager
doesn't change the fullscreen state for the next item.
2022-03-12 22:37:58 +03:00
Joshua M. Boniface
7649264fc2
Merge pull request #2937 from oledfish/additional-episode-orders 2022-03-11 14:35:38 -05:00
Bill Thornton
b97c9344dd
Merge pull request #3495 from thornbill/fix-any-type
Fix any type warning
2022-03-10 13:06:23 -05:00
Bill Thornton
5db5d4641d
Merge pull request #3493 from thornbill/eslint-default-last
Add default-case-last rule and fix issues
2022-03-10 12:59:42 -05:00
Bill Thornton
58d10ef3b6 Fix event type 2022-03-10 12:54:24 -05:00
Bill Thornton
f4754422e6 Add default-case-last rule and fix issues 2022-03-10 11:46:58 -05:00
grafixeyehero
fc5a385d08 use UserDto type from API 2022-03-10 10:23:52 -05:00
grafixeyehero
3886b7da1f apply suggestion 2022-03-10 10:23:52 -05:00
grafixeyehero
417a9ddc99 update TypeScript 2022-03-10 10:23:52 -05:00