···11-# Core
22-- Updated mappings
11+## Core
3244-# Libraries
55-- Support for message accessories in Component Editor
66-- Settings sections now allow for a function to compute position (thanks @MeguminSama!)
77-- Error boundary component in Common
88-- `spacepack.lazyLoad` now supports `\i` in regular expressions
33+- Updated mappings
44+- Fixed using remapped paths as patch finds not working
···77import MarkupUtils from "@moonlight-mod/wp/discord/modules/markup/MarkupUtils";
88import Flex from "@moonlight-mod/wp/discord/uikit/Flex";
99import {
1010- ThemeDarkIcon,
1110 Button,
1211 Text,
1312 ModalRoot,
···1918 openModal
2019} from "@moonlight-mod/wp/discord/components/common/index";
2120import MarkupClasses from "@moonlight-mod/wp/discord/modules/messages/web/Markup.css";
2121+import ThemeDarkIcon from "@moonlight-mod/wp/moonbase_ThemeDarkIcon";
22222323const strings: Record<UpdateState, string> = {
2424 [UpdateState.Ready]: "A new version of moonlight is available.",
···4141 if (moonlightHost.getConfigOption<boolean>("nativeFixes", "linuxSpeechDispatcher") ?? true) {
4242 app.commandLine.appendSwitch("enable-speech-dispatcher");
4343 }
4444+4545+ if (moonlightHost.getConfigOption<boolean>("nativeFixes", "linuxHevcSupport") ?? true) {
4646+ enabledFeatures.push("PlatformHEVCDecoderSupport");
4747+ }
4448}
45494650// NOTE: Only tested if this appears on Windows, it should appear on all when
···6464 "description": "Actually implements updating Discord on Linux. Has no effect on other operating systems",
6565 "type": "boolean",
6666 "default": false
6767+ },
6868+ "linuxHevcSupport": {
6969+ "advice": "restart",
7070+ "displayName": "HEVC support on Linux",
7171+ "description": "You might also need to enable Vulkan renderer. Has no effect on other operating systems",
7272+ "type": "boolean",
7373+ "default": true
6774 }
6875 },
6976 "apiLevel": 2