This repository has been archived by the owner on Jul 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
701798a
commit 6d61412
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Create Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- "release.md" | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Get version from package.json | ||
id: app-version | ||
uses: martinbeentjes/[email protected] | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ steps.app-version.outputs.current-version}} | ||
release_name: Moopa v${{ steps.app-version.outputs.current-version}} | ||
body_path: "release.md" | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Changelog | ||
|
||
This document contains a summary of all significant changes made to this release. | ||
|
||
## Update v4.0.5 | ||
|
||
### Added | ||
|
||
- Added option to disable custom list. | ||
- Added schdeule | ||
- Added redis for caching. | ||
- Support for the GPL v3.0 license in the project documentation. | ||
|
||
### Fixed | ||
|
||
- Issue #66: Resolved a bug that caused the workflow to fail under specific conditions. | ||
- Premid not detecting cover image when viewing info page | ||
|
||
### Changed | ||
|
||
- Changed the app's license from MIT to GPL v3.0 for improved open-source compliance and restrictions. | ||
- Redesigned and rewrote portions of the information page to improve mobile-friendliness and enhance the user experience. | ||
- Conducted a significant refactoring of the API codebase to enhance performance and scalability, resulting in a more efficient and responsive application. |