Skip to content

Commit

Permalink
Merge branch 'release/v3.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
kitce committed May 31, 2022
2 parents c741961 + a420c61 commit 15d7c3c
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ commitizen:
name: cz_conventional_commits
tag_format: v$version
update_changelog_on_bump: true
version: 3.6.0
version: 3.6.1
version_files:
- package.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v3.6.1 (2022-06-01)

### Fix

- **egg**: incorrect script URL

## v3.6.0 (2022-05-15)

### Refactor
Expand Down
1 change: 1 addition & 0 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ export const debugEgg = process.env.EGG === 'true';

export const publicURL = dev ? `http://localhost:${port}` : homepage;
export const publicDataURL = `${publicURL}/${Directory.Data}`;
export const publicDistURL = `${publicURL}/${Directory.Dist}`;
2 changes: 1 addition & 1 deletion dist/egg.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/egg.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/libel.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/libel.meta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Libel
// @version 3.6.0
// @version 3.6.1
// @author kitce <[email protected]>
// @description Label users on LIHKG
// @homepage https://kitce.github.io/libel
Expand Down
4 changes: 2 additions & 2 deletions dist/libel.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "libel",
"namespace": "libel",
"displayName": "Libel",
"version": "3.6.0",
"version": "3.6.1",
"description": "Label users on LIHKG",
"author": "kitce <[email protected]>",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/constants/egg.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { publicURL } from '../../config/config';
import { publicDistURL } from '../../config/config';

export const NAME = 'egg';

export const SCRIPT_URL = `${publicURL}/${NAME}.js`;
export const SCRIPT_URL = `${publicDistURL}/${NAME}.js`;

0 comments on commit 15d7c3c

Please sign in to comment.