1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Added: Setting to hide streams in the directory based upon tags.
* Added: Setting to not automatically join raids to specific channels.
* Added: Setting to attempt to display Golden Kappa Trains when Hype Trains are otherwise hidden.
* Added: Settings profile filter rule for when the window is in fullscreen.
* Fixed: Do not activate theater mode settings when in fullscreen.
* API Added: The `site.player` module now has a `getUptime` method for getting the uptime of the current stream, if one is available.
* API Removed: The tag-related methods of `site.twitch_data`, aside from `getMatchingTags` which now has a different signature. The methods were non-functional due to Twitch removing the relevant endpoints.
* Developer: Added a debugging tool for viewing GraphQL queries in Apollo's cache.
* Maintenance: Tweak the webpack build to hopefully get Mozilla to stop complaining that their build environment is weird while accusing me of having the weird build environment.
This commit is contained in:
SirStendec 2023-09-13 16:08:10 -04:00
parent 8ac95f3a52
commit 92fcc853a6
26 changed files with 665 additions and 403 deletions

View file

@ -181,6 +181,21 @@ const config = {
: '[name].[contenthash:8].json'
}
},
{
// This stupid rule goes out to Mozilla, who consistantly
// manage to have this one file not included in the bundle
// the same way as every other build on every other machine
// out of like twelve I've tested. So fine. We'll do it
// your way. Whatever. I don't care.
test: /entities.json$/,
include: /node_modules/,
type: 'asset/resource',
generator: {
filename: (FOR_EXTENSION || DEV_BUILD)
? '[name].json'
: '[name].[contenthash:8].json'
}
},
{
test: /\.(?:otf|eot|ttf|woff|woff2)$/,
use: [{