forked from Reloaded-Project/Reloaded-II
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog-template.hbs
68 lines (51 loc) · 2.78 KB
/
changelog-template.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Highlights
- Added: *Trimming* to all remaining libraries in mod loader. Almost all unused code is now eliminated.
- Added: Support for translating the Reloaded Process Menu.
- Added: Option to skip Wine related launch warnings in Reloaded config.
- Added: Support for resolving symbolic links when adding application.
- Added: Public NuGet packages for more Reloaded internal APIs, e.g. Mod Updates, Update Package creation.
- Added: Ability to include README(s) and Changelog(s) inside published packages.
- Improved: Loader startup performance through re-introducing ReadyToRun.
- Improved: Launcher RAM usage after startup. Reloaded Launcher should have a working set of <100MB during normal use now.
- Improved: Linux (Wine) support to give more useful, clear and up to date information on process launch.
- Improved: Reduced the number of DLLs in Loader output to improve performance when booting after a fresh Windows reboot.
- Improved: *Trimming* support in Mod Template. Mod template will now automatically trim all libraies where `IsTrimmable == true` when trimming is enabled.
- Fixed: Hiding exit button in dialogue boxes will no longer hide exit button in main window.
- Fixed: GitHub resolver not being used while searching for dependencies (oops!).
- Changed: *Reloaded Process Menu* (click on process in processes list) now displays user friendly Mod Name instead of Mod Id.
- Changed: Ninject to IoC.Container to improve performance in launcher when loading new pages.
- Changed: Reloaded Loader's server code has been separated out to a separate mod.
## Complete Changes
{{#each releases}}
{{#if href}}
## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}}
{{else}}
## {{title}}{{#if tag}} - {{isoDate}}{{/if}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#if merges}}
### Merged
{{#each merges}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{/if}}
{{#if fixes}}
### Fixed
{{#each fixes}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}}{{#each fixes}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}{{/each}}
{{/each}}
{{/if}}
{{#commit-list commits heading='### Commits'}}
- {{#if breaking}}**Breaking change:** {{/if}}{{subject}} {{#if href}}[`{{shorthash}}`]({{href}}){{/if}}
{{/commit-list}}
{{/each}}
====
{{#unless options.hideCredit}}
Reloaded changelogs are generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog) 😇.
{{/unless}}