Releases: Reloaded-Project/Reloaded-II
Release list
1.25.7
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Changelog (1.25.7)
- No more 'Rate Limited' by GitHub fail on
Setup.exe.
Changelog (1.25.6)
- Made error for GitHub rate limiting in Setup friendlier.
Changelog (1.25.5)
- Fixed an oversight where empty working directory was not defaulting to EXE folder.
Complete Changes
1.25.7 - 2024-02-17
Commits
====
1.25.6
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Changelog (1.25.6)
- Made error for GitHub rate limiting in Setup friendlier.
Changelog (1.25.5)
- Fixed an oversight where empty working directory was not defaulting to EXE folder.
Complete Changes
1.25.6 - 2024-02-17
Commits
- Changed: Added additional commandline parameters for setup & feedback for GitHub
772fe12 - Updated: Changelog
92825b9 - Updated: Reloaded to 1.25.6
41536cc
====
1.25.5
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Changelog (1.25.5)
- Fixed an oversight where empty working directory was not defaulting to EXE folder.
Complete Changes
1.25.5 - 2024-02-17
Commits
- Adding: Experimental OneDrive Dependency Download Hack
64664db - Bugfix: Treat Empty Working Directory Same as Null Working Directory
565fc18 - Bumped: Reloaded Version
db115d7
====
1.25.4
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Changelog (1.25.4)
- Fixed an oversight where using 1-click links fails on the web fails to fetch dependencies on next launcher boot.
- Caused by dependency update info being overwritten on boot before it can be used.
(Reported by @AnimatedSwine37)
Complete Changes
1.25.4 - 2024-02-14
Commits
- Changed: 1 Click Downloads now Auto-Download Dependencies
62e6e34 - Changed: Check Missing Deps Before their info is Potentially Removed on Boot
68de9a0 - Updated: Project Version & Changelog
3d84ded
====
1.25.3
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Changelog (1.25.3)
- Unreal Engine 4 games will no longer reboot via Steam if launched from launcher (thanks to a Hack from @AnimatedSwine37).
- Updated ASI Loader version.
- Added mod which caused load error on fail to load DLL mod.
Complete Changes
1.25.3 - 2024-01-31
Merged
- Make steam hook work with Unreal Engine games
#283
Commits
- Added: Info on fixing ILLink under .NET 8 SDK
069bb53 - Bumped Project Version
f69e104 - Updated: ASI Loader version for Deployment
8cb253e - Added: Re-throw exception on DLL Load Error
0813dfd - Updated: Changelog Template
2fe692b
====
1.25.1
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Release (1.24) Highlights
This is a very small feature update mostly consisting of community PRs.
Custom Controls for Mod Configurations
@jroweboy added the ability additional controls developers can use in their mods
;
The 3 new custom controls are:
Slider: Horizontal Slider with an optional textbox to display the value
FilePicker: Textbox with a button to open a `OpenFileDialog`.
FolderPicker: Textbox with a button to open a custom `FolderSelectDialog`.
Example usage:
[DisplayName("Int Slider")]
[Description("This is a int that uses a slider control similar to a volume control slider.")]
[DefaultValue(100)]
[SliderControlParams(/* Settings here */)]
public int IntSlider { get; set; } = 100;
[DisplayName("Double Slider")]
[Description("This is a double that uses a slider control without any frills.")]
[DefaultValue(0.5)]
[SliderControlParams(minimum: 0.0, maximum: 1.0)]
public double DoubleSlider { get; set; } = 0.5;
[DisplayName("File Picker")]
[Description("This is a sample file picker.")]
[DefaultValue("")]
[FilePickerParams(title:"Choose a File to load from")]
public string File { get; set; } = "";
[DisplayName("Folder Picker")]
[Description("Opens a file picker but locked to only allow folder selections.")]
[DefaultValue("")]
[FolderPickerParams(/* Settings here */)]
public string Folder { get; set; } = "";Added Localization for Traditional Chinese (TW)
@EditorKos contributed a localization for zh-TW locale.
Fixes
- Mod Packs can now use custom
ReleaseMetadataFileName(s). (thanks @jroweboy) - Mods from GameBanana which specify custom additional contributors/authors no longer breaks mod search.
- GameBanana (probably unintentionally) made a change to how one of the fields is returned.
- And that broke things... so I added a workaround.
- I also need to update the cache server; please give it a moment after the update goes live.
- Log files no longer incorrectly produce newlines for
Write()(thanks @gurrenm3)
Complete Changes
1.25.1 - 2023-10-31
Merged
- Support for command line arguments in community config
#264
Commits
- Bumped: Versions
b1a9f67
====
1.25.0
Hello World 👋,
Wassup, folks?! 🎉 Get this—just an hour ago, .NET 8 Release Candidate 1 blasted off! 🚀
Keeping Reloaded on the razor's edge of awesome, I've already juiced up the loader and launcher with this fresh runtime. :tools: Did a quick lap testing those mission-critical mods, and we're golden! 🌟
For now, that's the news. 😉
But keep those ears perked and eyes peeled for Reloaded3 coming in late 2024! 📆 We're talkin' next-level stuff here: fully native, cross-platform, cross-language modding. And yeah, we're stepping out of the Windows-only zone! 🎮 You'll hear more in due time.
Catch ya on the flip side, Code Warriors! 🤘
If you have issues updating, grab the .NET Runtimes manually:
- https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-desktop-8.0.0-rc.1-windows-x64-installer
- https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-desktop-8.0.0-rc.1-windows-x86-installer
Some people have been running into issues because the Microsoft Servers haven't updated their latest reported version over at https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0/latest.version , this is the price of bleeding edge, I suppose :p
1.24.3
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Release (1.24) Highlights
This is a very small feature update mostly consisting of community PRs.
Custom Controls for Mod Configurations
@jroweboy added the ability additional controls developers can use in their mods
;
The 3 new custom controls are:
Slider: Horizontal Slider with an optional textbox to display the value
FilePicker: Textbox with a button to open a `OpenFileDialog`.
FolderPicker: Textbox with a button to open a custom `FolderSelectDialog`.
Example usage:
[DisplayName("Int Slider")]
[Description("This is a int that uses a slider control similar to a volume control slider.")]
[DefaultValue(100)]
[SliderControlParams(/* Settings here */)]
public int IntSlider { get; set; } = 100;
[DisplayName("Double Slider")]
[Description("This is a double that uses a slider control without any frills.")]
[DefaultValue(0.5)]
[SliderControlParams(minimum: 0.0, maximum: 1.0)]
public double DoubleSlider { get; set; } = 0.5;
[DisplayName("File Picker")]
[Description("This is a sample file picker.")]
[DefaultValue("")]
[FilePickerParams(title:"Choose a File to load from")]
public string File { get; set; } = "";
[DisplayName("Folder Picker")]
[Description("Opens a file picker but locked to only allow folder selections.")]
[DefaultValue("")]
[FolderPickerParams(/* Settings here */)]
public string Folder { get; set; } = "";Added Localization for Traditional Chinese (TW)
@EditorKos contributed a localization for zh-TW locale.
Fixes
- Mod Packs can now use custom
ReleaseMetadataFileName(s). (thanks @jroweboy) - Mods from GameBanana which specify custom additional contributors/authors no longer breaks mod search.
- GameBanana (probably unintentionally) made a change to how one of the fields is returned.
- And that broke things... so I added a workaround.
- I also need to update the cache server; please give it a moment after the update goes live.
- Log files no longer incorrectly produce newlines for
Write()(thanks @gurrenm3)
Complete Changes
1.24.3 - 2023-08-20
Merged
- Update SteamHook.cs
#246
Commits
====
1.24.1
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Release (1.24) Highlights
This is a very small feature update mostly consisting of community PRs.
Custom Controls for Mod Configurations
@jroweboy added the ability additional controls developers can use in their mods
;
The 3 new custom controls are:
Slider: Horizontal Slider with an optional textbox to display the value
FilePicker: Textbox with a button to open a `OpenFileDialog`.
FolderPicker: Textbox with a button to open a custom `FolderSelectDialog`.
Example usage:
[DisplayName("Int Slider")]
[Description("This is a int that uses a slider control similar to a volume control slider.")]
[DefaultValue(100)]
[SliderControlParams(/* Settings here */)]
public int IntSlider { get; set; } = 100;
[DisplayName("Double Slider")]
[Description("This is a double that uses a slider control without any frills.")]
[DefaultValue(0.5)]
[SliderControlParams(minimum: 0.0, maximum: 1.0)]
public double DoubleSlider { get; set; } = 0.5;
[DisplayName("File Picker")]
[Description("This is a sample file picker.")]
[DefaultValue("")]
[FilePickerParams(title:"Choose a File to load from")]
public string File { get; set; } = "";
[DisplayName("Folder Picker")]
[Description("Opens a file picker but locked to only allow folder selections.")]
[DefaultValue("")]
[FolderPickerParams(/* Settings here */)]
public string Folder { get; set; } = "";Added Localization for Traditional Chinese (TW)
@EditorKos contributed a localization for zh-TW locale.
Fixes
- Mod Packs can now use custom
ReleaseMetadataFileName(s). (thanks @jroweboy) - Mods from GameBanana which specify custom additional contributors/authors no longer breaks mod search.
- GameBanana (probably unintentionally) made a change to how one of the fields is returned.
- And that broke things... so I added a workaround.
- I also need to update the cache server; please give it a moment after the update goes live.
- Log files no longer incorrectly produce newlines for
Write()(thanks @gurrenm3)
Complete Changes
1.24.1 - 2023-04-24
Merged
- Fixed Logger.Write creating new lines in LogFile
#223 - Add missing using in template
#218 - Update Reloaded.Mod.Interfaces version number
#215
Commits
====
1.24.0
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
Release (1.24) Highlights
This is a very small feature update mostly consisting of community PRs.
Custom Controls for Mod Configurations
@jroweboy added the ability additional controls developers can use in their mods
;
The 3 new custom controls are:
Slider: Horizontal Slider with an optional textbox to display the value
FilePicker: Textbox with a button to open a `OpenFileDialog`.
FolderPicker: Textbox with a button to open a custom `FolderSelectDialog`.
Example usage:
[DisplayName("Int Slider")]
[Description("This is a int that uses a slider control similar to a volume control slider.")]
[DefaultValue(100)]
[SliderControlParams(/* Settings here */)]
public int IntSlider { get; set; } = 100;
[DisplayName("Double Slider")]
[Description("This is a double that uses a slider control without any frills.")]
[DefaultValue(0.5)]
[SliderControlParams(minimum: 0.0, maximum: 1.0)]
public double DoubleSlider { get; set; } = 0.5;
[DisplayName("File Picker")]
[Description("This is a sample file picker.")]
[DefaultValue("")]
[FilePickerParams(title:"Choose a File to load from")]
public string File { get; set; } = "";
[DisplayName("Folder Picker")]
[Description("Opens a file picker but locked to only allow folder selections.")]
[DefaultValue("")]
[FolderPickerParams(/* Settings here */)]
public string Folder { get; set; } = "";Added Localization for Traditional Chinese (TW)
@EditorKos contributed a localization for zh-TW locale.
Fixes
- Mod Packs can now use custom
ReleaseMetadataFileName(s). (thanks @jroweboy) - Mods from GameBanana which specify custom additional contributors/authors no longer breaks mod search.
- GameBanana (probably unintentionally) made a change to how one of the fields is returned.
- And that broke things... so I added a workaround.
- I also need to update the cache server; please give it a moment after the update goes live.
Complete Changes
1.24.0 - 2023-04-08
Merged
- Add ReleaseMetadataFileName to mod pack item
#213 - Add Traditional Chinese language translation
#212 - Slider FilePicker and FolderPicker Custom Control implementation
#207
Commits
- Fix: Add handling for number type for GameBanana credits field.
d61ddf5 - Bumped: Project Version
2839b6a - Updated: Template Mod & Changelog Template
3dda67c
====