-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cf-support' of https://github.com/TheBossMagnus/Modpack…
…Changelogger into cf-support
- Loading branch information
Showing
4 changed files
with
80 additions
and
43 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,16 @@ | ||
# Changleog | ||
All notable changes to this project will be documented in this file. Betas won't be included. | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.2.0](https://github.com/TheBossMagnus/ModpackChangelogger/releases/tag/0.2.0) - 2024-01-30 | ||
### Added | ||
* Adde the option to print changelog to console (just do -f console) | ||
### Fixed | ||
* Fixed a crash when running as a module | ||
### Changed | ||
* Improve reliability and performance of web requests | ||
* Various refactorings and improvements | ||
|
||
## [0.1.0](https://github.com/TheBossMagnus/ModpackChangelogger/releases/tag/0.1.0) - 2023-12-24 | ||
First Release |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Mod ecosistem used (modrinth or curseforge) | ||
Modpacks_Format = None | ||
# Version number | ||
VERSION = "0.2.0-beta2" | ||
VERSION = "0.2.0" | ||
# Default config | ||
DEFAULT_CONFIG = { | ||
'check': { | ||
|
@@ -18,5 +18,13 @@ | |
}, | ||
} | ||
# Networking | ||
HEADERS = {'User-Agent':f"TheBossMagnus/ModpackChangelogger/{VERSION} ([email protected])"} | ||
MODRINTH_API_URL = "https://api.modrinth.com/v2" | ||
MR_HEADERS = {'User-Agent':f"TheBossMagnus/ModpackChangelogger/{VERSION} ([email protected])"} | ||
MR_API_URL = "https://api.modrinth.com/v2" | ||
|
||
# DO NOT USE THIS KEY FOR YOUR OWN PROJECT/FORKS | ||
# You can get your own key at https://docs.curseforge.com | ||
CF_KEY = '$2a$10$GiT8VjJE8VJpcK68Wlz6aeJ5CPAZcRuTBcGuys8XtX5hGC87sIgku' | ||
CF_HEADERS = {'User-Agent': f"TheBossMagnus/ModpackChangelogger/{VERSION} ([email protected])", | ||
'x-api-key': f"{CF_KEY}"} | ||
CF_API_URL = "https://api.curseforge.com" | ||
|
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
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