Skip to content

Commit

Permalink
1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cynosphere committed Jan 15, 2025
1 parent f6f4e32 commit ecc391f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 7 deletions.
29 changes: 26 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
- Fixed missing restart prompt when updating an extension
- Updated the Context Menu API to support regex
- Moved Moonbase to use a different API to hopefully fix a rare crash
## Moonbase

- Moved entry to the top of the settings menu
- Added about section
- Fixed the moonlight menu in the tray icon duplicating over time
- Added the ability to switch moonlight branches from the tray icon
- Added the ability to use Markdown in settings descriptions

## Core

- Fixed the Discord overlay being broken
- Fixed script blocking issue that would, among other things, break TikTok embeds
- Added simple error handling to injected Webpack modules

## Libraries

- Added Component Editor library
- Added Commands library
- Spacepack: Introduced logging for failed finds
- Spacepack: Deprecated findByExports

## Misc

- Updated README
- Introduced new `create-extension` CLI tool
- The manifest schema is now automatically generated
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moonlight",
"version": "1.3.1",
"version": "1.3.2",
"description": "Yet another Discord mod",
"homepage": "https://moonlight-mod.github.io/",
"license": "LGPL-3.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "moonlight",
"description": "Yet another Discord mod",
"version": "1.3.1",
"version": "1.3.2",
"permissions": ["declarativeNetRequestWithHostAccess", "webRequest", "scripting", "webNavigation"],
"host_permissions": ["https://moonlight-mod.github.io/*", "https://api.github.com/*", "https://*.discord.com/*"],
"content_scripts": [
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/manifestv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "moonlight",
"description": "Yet another Discord mod",
"version": "1.3.1",
"version": "1.3.2",
"permissions": [
"webRequest",
"webRequestBlocking",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonlight-mod/types",
"version": "1.3.5",
"version": "1.3.6",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
Expand Down

0 comments on commit ecc391f

Please sign in to comment.