[PR #719] [MERGED] cobalt 10: svelte web app, improved backend #1242

Closed
opened 2025-11-09 10:08:53 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/imputnet/cobalt/pull/719
Author: @wukko
Created: 9/9/2024
Status: Merged
Merged: 9/9/2024
Merged by: @wukko

Base: currentHead: 10


📝 Commits (10+)

  • b3d846a web/i18n/settings: update audio bitrate description
  • 102dec4 api/match-action: clean up audio action
  • c7a0884 web/i18n/settings: update audio format & bitrate descriptions
  • a21c9e7 api/core/api: clean up imports
  • d7d707e web/DialogHolder: fix dialog animation jumping on new safari versions
  • b6d2175 web/settings/defaults: enable full tiktok audio by default
  • ee375a2 api/schema: enable tiktok full audio by default
  • 7a557a9 api: move service disabling to DISABLED_SERVICES env
  • 70264f3 api/core: update server info
  • 24f2329 web/settings: slightly update navigation style on mobile

📊 Changes

413 files changed (+20737 additions, -8514 deletions)

View changed files

.dockerignore (+21 -0)
📝 .github/test.sh (+15 -21)
.github/workflows/test-services.yml (+33 -0)
📝 .github/workflows/test.yml (+12 -40)
📝 .gitignore (+9 -9)
📝 Dockerfile (+20 -10)
📝 README.md (+55 -69)
api/LICENSE (+661 -0)
api/README.md (+22 -0)
api/package.json (+49 -0)
api/src/cobalt.js (+27 -0)
api/src/config.js (+51 -0)
api/src/core/api.js (+326 -0)
📝 api/src/misc/console-text.js (+0 -0)
📝 api/src/misc/crypto.js (+0 -0)
api/src/misc/load-from-fs.js (+20 -0)
📝 api/src/misc/randomize-ciphers.js (+0 -0)
📝 api/src/misc/run-test.js (+11 -9)
📝 api/src/misc/utils.js (+0 -0)
📝 api/src/processing/cookie/cookie.js (+0 -0)

...and 80 more files

📄 Description

closes #608
closes #590
closes #577
closes #566
closes #410
closes #363
closes #298
closes #251
closes #93
closes #679


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/imputnet/cobalt/pull/719 **Author:** [@wukko](https://github.com/wukko) **Created:** 9/9/2024 **Status:** ✅ Merged **Merged:** 9/9/2024 **Merged by:** [@wukko](https://github.com/wukko) **Base:** `current` ← **Head:** `10` --- ### 📝 Commits (10+) - [`b3d846a`](https://github.com/imputnet/cobalt/commit/b3d846a1e35963ccc1062dc3c0932e864347d7c2) web/i18n/settings: update audio bitrate description - [`102dec4`](https://github.com/imputnet/cobalt/commit/102dec4a8453136a3ddb614d8856461d241f2644) api/match-action: clean up audio action - [`c7a0884`](https://github.com/imputnet/cobalt/commit/c7a08844e3a0ae65ee7dbd45bbd770fd2f9c1fdd) web/i18n/settings: update audio format & bitrate descriptions - [`a21c9e7`](https://github.com/imputnet/cobalt/commit/a21c9e7632f9cb985abbcc5c080e5c5668bde3cc) api/core/api: clean up imports - [`d7d707e`](https://github.com/imputnet/cobalt/commit/d7d707e666ac3933afba361fb3ba34eb9d861ff4) web/DialogHolder: fix dialog animation jumping on new safari versions - [`b6d2175`](https://github.com/imputnet/cobalt/commit/b6d2175d4b4f9aae983ffdd08690f3e59f303b3c) web/settings/defaults: enable full tiktok audio by default - [`ee375a2`](https://github.com/imputnet/cobalt/commit/ee375a27cdc0e8b56552e74759f1a388b075bf2e) api/schema: enable tiktok full audio by default - [`7a557a9`](https://github.com/imputnet/cobalt/commit/7a557a97c3ebb2a46bffdb569bffabe1182154fd) api: move service disabling to `DISABLED_SERVICES` env - [`70264f3`](https://github.com/imputnet/cobalt/commit/70264f36919c296485293520a8dd08bdd9863b6e) api/core: update server info - [`24f2329`](https://github.com/imputnet/cobalt/commit/24f2329e9d8cc09e6a442545a5cae46b2ef72326) web/settings: slightly update navigation style on mobile ### 📊 Changes **413 files changed** (+20737 additions, -8514 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+21 -0) 📝 `.github/test.sh` (+15 -21) ➕ `.github/workflows/test-services.yml` (+33 -0) 📝 `.github/workflows/test.yml` (+12 -40) 📝 `.gitignore` (+9 -9) 📝 `Dockerfile` (+20 -10) 📝 `README.md` (+55 -69) ➕ `api/LICENSE` (+661 -0) ➕ `api/README.md` (+22 -0) ➕ `api/package.json` (+49 -0) ➕ `api/src/cobalt.js` (+27 -0) ➕ `api/src/config.js` (+51 -0) ➕ `api/src/core/api.js` (+326 -0) 📝 `api/src/misc/console-text.js` (+0 -0) 📝 `api/src/misc/crypto.js` (+0 -0) ➕ `api/src/misc/load-from-fs.js` (+20 -0) 📝 `api/src/misc/randomize-ciphers.js` (+0 -0) 📝 `api/src/misc/run-test.js` (+11 -9) 📝 `api/src/misc/utils.js` (+0 -0) 📝 `api/src/processing/cookie/cookie.js` (+0 -0) _...and 80 more files_ </details> ### 📄 Description closes #608 closes #590 closes #577 closes #566 closes #410 closes #363 closes #298 closes #251 closes #93 closes #679 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-09 10:08:53 -06:00
Sign in to join this conversation.