[PR #321] [MERGED] 7.9: twitter gifs, ok.ru support, pinterest improvements, and fixes #1097

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

📋 Pull Request Information

Original PR: https://github.com/imputnet/cobalt/pull/321
Author: @wukko
Created: 1/17/2024
Status: Merged
Merged: 1/17/2024
Merged by: @wukko

Base: currentHead: twitter-gif


📝 Commits (10+)

  • 6145259 page: remove useless trailing slash on meta elements
  • b5952f1 page: fix invalid style preload
  • e5045df emoji: add space after style attribute if added
  • b0996b8 page, stream: drop leftover selfURL usage
  • 62f847b servicesConfig: add support for instagram live vods
  • 6f5bb80 page: remove invalid attributes, closing tags, useless trailing slashes
  • c04c37a page: deduplicate tiktok settings element id
  • 4680582 frontend: use class instead of id for reoccurring elements
  • c32704d frontend: more self-closing/invalid closing tag cleanup
  • 7a7343b updateBanners: correct file format for v4.6 update

📊 Changes

30 files changed (+396 additions, -198 deletions)

View changed files

📝 package.json (+1 -1)
📝 src/config.json (+2 -1)
📝 src/front/cobalt.css (+33 -33)
📝 src/front/cobalt.js (+11 -4)
src/front/updateBanners/shutup.png (+0 -0)
src/front/updateBanners/shutup.webp (+0 -0)
📝 src/localization/languages/en.json (+6 -8)
📝 src/localization/languages/ru.json (+6 -8)
📝 src/localization/manager.js (+1 -1)
📝 src/modules/changelog/changelog.json (+21 -0)
📝 src/modules/changelog/changelogManager.js (+19 -17)
📝 src/modules/emoji.js (+1 -1)
📝 src/modules/pageRender/elements.js (+23 -23)
📝 src/modules/pageRender/onDemand.js (+5 -4)
📝 src/modules/pageRender/page.js (+58 -40)
📝 src/modules/processing/match.js (+33 -20)
📝 src/modules/processing/matchActionDecider.js (+7 -2)
src/modules/processing/services/ok.js (+56 -0)
📝 src/modules/processing/services/pinterest.js (+27 -20)
📝 src/modules/processing/services/twitter.js (+6 -3)

...and 10 more files

📄 Description

  • added an option to convert gifs from twitter into actual .gif format (#250)
  • added support for ok.ru (#322)
  • redone pinterest module and added pin.it support (#160)
  • added support for all reddit subdomains (including old.reddit.com) (#318)
  • added support for instagram live vods (#316)
  • fixed a rare vimeo bug related to 1440p videos (#289)
  • cobalt html is now biblically accurate and passes all tests (#317)

🔄 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/321 **Author:** [@wukko](https://github.com/wukko) **Created:** 1/17/2024 **Status:** ✅ Merged **Merged:** 1/17/2024 **Merged by:** [@wukko](https://github.com/wukko) **Base:** `current` ← **Head:** `twitter-gif` --- ### 📝 Commits (10+) - [`6145259`](https://github.com/imputnet/cobalt/commit/6145259db82f5245692a8905aa6932957254909c) page: remove useless trailing slash on meta elements - [`b5952f1`](https://github.com/imputnet/cobalt/commit/b5952f1ef93bb9c67b323cad3712214f0527590c) page: fix invalid style preload - [`e5045df`](https://github.com/imputnet/cobalt/commit/e5045df9afd9a0f3fc05876c9e76ff6c5e73f1f2) emoji: add space after style attribute if added - [`b0996b8`](https://github.com/imputnet/cobalt/commit/b0996b85fbd21a60eef4aa383b22718e261036bc) page, stream: drop leftover selfURL usage - [`62f847b`](https://github.com/imputnet/cobalt/commit/62f847ba617f5631cdfc709f725036bd2ecca90e) servicesConfig: add support for instagram live vods - [`6f5bb80`](https://github.com/imputnet/cobalt/commit/6f5bb80b3a50b7c5df65a647d2988c9c9a7cc0da) page: remove invalid attributes, closing tags, useless trailing slashes - [`c04c37a`](https://github.com/imputnet/cobalt/commit/c04c37a5486f1472b8ece47860cdea268d02d8cc) page: deduplicate tiktok settings element id - [`4680582`](https://github.com/imputnet/cobalt/commit/4680582ce9aadadbb544fa19c770cfdb07ea4801) frontend: use `class` instead of `id` for reoccurring elements - [`c32704d`](https://github.com/imputnet/cobalt/commit/c32704dfe3fb414b9a17b7be6e3145e5c3fd4b9f) frontend: more self-closing/invalid closing tag cleanup - [`7a7343b`](https://github.com/imputnet/cobalt/commit/7a7343bf135d05486fc43d9505528dca515004f8) updateBanners: correct file format for v4.6 update ### 📊 Changes **30 files changed** (+396 additions, -198 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `src/config.json` (+2 -1) 📝 `src/front/cobalt.css` (+33 -33) 📝 `src/front/cobalt.js` (+11 -4) ➖ `src/front/updateBanners/shutup.png` (+0 -0) ➕ `src/front/updateBanners/shutup.webp` (+0 -0) 📝 `src/localization/languages/en.json` (+6 -8) 📝 `src/localization/languages/ru.json` (+6 -8) 📝 `src/localization/manager.js` (+1 -1) 📝 `src/modules/changelog/changelog.json` (+21 -0) 📝 `src/modules/changelog/changelogManager.js` (+19 -17) 📝 `src/modules/emoji.js` (+1 -1) 📝 `src/modules/pageRender/elements.js` (+23 -23) 📝 `src/modules/pageRender/onDemand.js` (+5 -4) 📝 `src/modules/pageRender/page.js` (+58 -40) 📝 `src/modules/processing/match.js` (+33 -20) 📝 `src/modules/processing/matchActionDecider.js` (+7 -2) ➕ `src/modules/processing/services/ok.js` (+56 -0) 📝 `src/modules/processing/services/pinterest.js` (+27 -20) 📝 `src/modules/processing/services/twitter.js` (+6 -3) _...and 10 more files_ </details> ### 📄 Description - added an option to convert gifs from twitter into actual .gif format (#250) - added support for ok.ru (#322) - redone pinterest module and added pin.it support (#160) - added support for all reddit subdomains (including old.reddit.com) (#318) - added support for instagram live vods (#316) - fixed a rare vimeo bug related to 1440p videos (#289) - cobalt html is now biblically accurate and passes all tests (#317) --- <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:05:42 -06:00
Sign in to join this conversation.