this repo has no description

1.3.3

Changed files
+19 -22
packages
+15 -18
CHANGELOG.md
··· 1 1 ## Moonbase 2 2 3 - - Moved entry to the top of the settings menu 4 - - Added about section 5 - - Fixed the moonlight menu in the tray icon duplicating over time 6 - - Added the ability to switch moonlight branches from the tray icon 7 - - Added the ability to use Markdown in settings descriptions 3 + - Added changelog for moonlight updates (but it won't show this one D:) 4 + - Added a button to update all extensions 5 + - Added an icon to distinguish the repository of an extension 6 + - Extensions now stay at the top even after updating (thanks @maddymeows!) 7 + - Moved some buttons to the extension tab bar 8 + - Added missing row gap to extension info 9 + - Improved update handling 8 10 9 11 ## Core 10 12 11 - - Fixed the Discord overlay being broken 12 - - Fixed script blocking issue that would, among other things, break TikTok embeds 13 - - Added simple error handling to injected Webpack modules 14 - 15 - ## Libraries 16 - 17 - - Added Component Editor library 18 - - Added Commands library 19 - - Spacepack: Introduced logging for failed finds 20 - - Spacepack: Deprecated findByExports 13 + - Updated mappings 14 + - For extension developers: there were a lot of type changes! Your extension should still run, but there may be issues with compilation. Please let us know if we got any types wrong. 15 + - Added new `donate` key in manifest 16 + - For extension developers: Put your donate links here! Don't have/want donations? Put a charity you like! 17 + - Added new patches to Quiet Loggers (thanks @gBasil!) 18 + - Made `setConfigOption` actually async 21 19 22 20 ## Misc 23 21 24 - - Updated README 25 - - Introduced new `create-extension` CLI tool 26 - - The manifest schema is now automatically generated 22 + - Added packageManager to `package.json` for corepack (thanks @slonkazoid!) 23 + - Began work on using the moonlight installer from a Flatpak
+1 -1
package.json
··· 1 1 { 2 2 "name": "moonlight", 3 - "version": "1.3.2", 3 + "version": "1.3.3", 4 4 "description": "Yet another Discord mod", 5 5 "homepage": "https://moonlight-mod.github.io/", 6 6 "license": "LGPL-3.0-or-later",
+1 -1
packages/browser/manifest.json
··· 2 2 "manifest_version": 3, 3 3 "name": "moonlight", 4 4 "description": "Yet another Discord mod", 5 - "version": "1.3.2", 5 + "version": "1.3.3", 6 6 "permissions": ["declarativeNetRequestWithHostAccess", "webRequest", "scripting", "webNavigation"], 7 7 "host_permissions": ["https://moonlight-mod.github.io/*", "https://api.github.com/*", "https://*.discord.com/*"], 8 8 "content_scripts": [
+1 -1
packages/browser/manifestv2.json
··· 2 2 "manifest_version": 2, 3 3 "name": "moonlight", 4 4 "description": "Yet another Discord mod", 5 - "version": "1.3.2", 5 + "version": "1.3.3", 6 6 "permissions": [ 7 7 "webRequest", 8 8 "webRequestBlocking",
+1 -1
packages/types/package.json
··· 1 1 { 2 2 "name": "@moonlight-mod/types", 3 - "version": "1.3.6", 3 + "version": "1.3.7", 4 4 "main": "./src/index.ts", 5 5 "types": "./src/index.ts", 6 6 "exports": {