Major update with lots of new features and fixes

This commit is contained in:
Luna 2026-05-17 05:36:04 -07:00
parent 17c149c21a
commit 74b3efd990
16 changed files with 1648 additions and 904 deletions

31
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,31 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug executable 'yt-offline'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"run",
"--bin=yt-offline"
]
},
"args": []
},
{
"name": "Debug unit tests in executable 'yt-offline'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--bin=yt-offline"
]
}
}
]
}