pre-commit-ci[bot]
faa0379b89
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-05-30 07:03:27 +00:00
Ravioli8235
fb3ed6b39a
Implement autoplay
2024-05-30 08:53:35 +02:00
dmunozv04
1ab7e73b52
bump version
v2.0.7
2024-05-29 23:41:42 +02:00
David
d310e4c817
Merge pull request #160 from dmunozv04/update-dependencies
...
Update dependencies
2024-05-29 23:39:01 +02:00
pre-commit-ci[bot]
d21bb6320f
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-05-29 21:31:56 +00:00
dmunozv04
dd42e20dc4
Remove session closer, it seems to break the config setup
2024-05-05 19:16:27 +02:00
dmunozv04
213ae97bf2
Fix web_session
2024-05-05 19:07:03 +02:00
pre-commit-ci[bot]
865f5469a2
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-05-03 16:24:21 +00:00
Ryan Kupka
daa7026221
Refactor CLI setup script, add prompts for muting and skipping native youtube ads
2024-05-03 10:18:16 -06:00
dmunozv04
582b9bf725
Patch the main aiohttp.ClientSession() into YTlounge
2024-04-27 19:26:55 +02:00
dmunozv04
ce95b6dbf0
Update dependencies
2024-04-27 19:17:52 +02:00
dmunozv04
80196b19aa
Rework dockerfile and build for armv7
2024-03-12 22:40:23 +01:00
David
4dd6aa1c4d
Merge pull request #140 from SShah7433/utilize_logging_standards
...
Update logging for standards
2024-03-07 09:14:40 +01:00
David
1a5f29fe2a
Merge branch 'main' into utilize_logging_standards
2024-03-07 09:14:33 +01:00
David
13fe1f69ae
Bump version
v2.0.6
2024-02-14 22:07:51 +01:00
David
3b1ce5297f
Merge pull request #136 from PetkoVasilev/main
...
fix for overlapping segments
2024-02-12 09:07:40 +01:00
Sidd Shah
e689a713ef
remove unused code from prev logging implementation
2024-02-02 22:34:01 -05:00
Sidd Shah
e6b1e14d80
remove unused argument
2024-02-02 22:30:58 -05:00
pre-commit-ci[bot]
4934eff8b7
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-02-03 03:27:03 +00:00
Sidd Shah
674a13e43a
utilize standard logging libraries and formats
2024-02-02 22:22:08 -05:00
David
152ba104a6
Merge branch 'main' into main
2024-01-31 11:47:32 +01:00
dmunozv04
265c56f3d6
bump version
v2.0.5
2024-01-29 22:28:07 +01:00
David
7e954478f2
Merge branch 'main' into main
2024-01-29 21:47:07 +01:00
David
4f39f64ed0
Merge pull request #134 from bertybuttface/patch-5
...
Fix list_to_tuple
2024-01-29 21:46:48 +01:00
Petko Vasilev
8208a51176
more understandable logic (same result)
2024-01-29 12:39:22 +02:00
pre-commit-ci[bot]
ab6b67f88b
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-28 08:11:55 +00:00
Petko Vasilev
9068b58bf6
fix for overlapping segments
2024-01-28 09:59:47 +02:00
bertybuttface
a9f9a5b31c
Update api_helpers.py
...
Fix list to tuple
2024-01-27 16:36:31 +00:00
David
a75dd83548
Merge pull request #132 from dmunozv04/open-file-utf-8
...
open and close config file with
2024-01-17 14:25:04 +01:00
dmunozv04
4e3c9d115c
open and close config file with
...
utf-8 encoding
2024-01-15 21:53:08 +01:00
David
04533162cb
Merge pull request #129 from dmunozv04/make-docker-image-smaller
...
Make docker image smaller by caching .pyc and removing .py files
2024-01-14 21:11:41 +01:00
pre-commit-ci[bot]
bee2a9c80f
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-14 15:39:02 +00:00
dmunozv04
f620ed2fcc
Make docker image smaller by caching .pyc and removing .py files
2024-01-14 16:38:39 +01:00
David
db26bff3d2
Merge pull request #128 from dmunozv04/deepsource-autofix-c896b47c
...
refactor: refactor unnecessary `else` / `elif` when `if` block has a `continue` statement
2024-01-14 15:19:53 +01:00
David
d205848132
Merge pull request #127 from dmunozv04/deepsource-autofix-75d7989d
...
refactor: replace range(len(...)) with enumerate(...)
2024-01-14 15:19:22 +01:00
David
29445e678f
Merge pull request #126 from dmunozv04/deepsource-autofix-097a200c
...
refactor: refactor unnecessary `else` / `elif` when `if` block has a `return` statement
2024-01-14 15:19:04 +01:00
deepsource-autofix[bot]
35453bc49e
refactor: refactor unnecessary else / elif when if block has a continue statement
...
The use of `else` or `elif` becomes redundant and can be dropped if the last statement under the leading `if` / `elif` block is a `continue` statement.
In the case of an `elif` after `continue`, it can be written as a separate `if` block.
For `else` blocks after `continue`, the statements can be shifted out of `else`. Please refer to the examples below for reference.
Refactoring the code this way can improve code-readability and make it easier to maintain.
2024-01-14 14:18:37 +00:00
deepsource-autofix[bot]
88875a82d3
refactor: replace range(len(...)) with enumerate(...)
...
Using `range(len(...))` is not pythonic. Python does not have not index-based loops. Instead, it uses collection iterators. Python has a built-in method `enumerate` which adds a counter to an iterable.
2024-01-14 14:18:20 +00:00
deepsource-autofix[bot]
446393b078
refactor: refactor unnecessary else / elif when if block has a return statement
...
The use of `else` or `elif` becomes redundant and can be dropped if the last statement under the leading `if` / `elif` block is a `return` statement.
In the case of an `elif` after `return`, it can be written as a separate `if` block.
For `else` blocks after `return`, the statements can be shifted out of `else`. Please refer to the examples below for reference.
Refactoring the code this way can improve code-readability and make it easier to maintain.
2024-01-14 14:18:05 +00:00
David
784d54c4e2
Merge pull request #125 from dmunozv04/add-pre-commit
...
add pre-commit
2024-01-14 15:12:02 +01:00
pre-commit-ci[bot]
66b39c4cac
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-14 14:10:15 +00:00
dmunozv04
321a9e6e9b
reformat DIAL license
2024-01-14 15:09:30 +01:00
pre-commit-ci[bot]
ecb3583c35
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-14 14:03:37 +00:00
dmunozv04
3cee674e91
Merge remote-tracking branch 'origin/add-pre-commit' into add-pre-commit
2024-01-14 15:03:17 +01:00
dmunozv04
d575a296e7
setup black --preview
2024-01-14 15:03:01 +01:00
pre-commit-ci[bot]
7bf52b6df1
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-14 13:53:04 +00:00
dmunozv04
846ea444d2
Merge remote-tracking branch 'origin/add-pre-commit' into add-pre-commit
2024-01-14 14:52:56 +01:00
dmunozv04
1671d7841b
set black for max line length
2024-01-14 14:52:38 +01:00
pre-commit-ci[bot]
a4f0b5fffe
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2024-01-14 13:47:14 +00:00
dmunozv04
dae27e7aa3
add pre-commit
2024-01-14 14:46:46 +01:00