Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyOThan committed Jul 13, 2024
1 parent b48ab89 commit 2177454
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 39 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Changelog

| modName | TUFX |
| ------- | ------------------------------------ |
| license | GPL-3 |
| author | shadowmage45, JonnyOThan |

### Tools used for maintaining this file:

* https://pypi.org/project/yaclog-ksp/
* https://yaclog.readthedocs.io
* https://keepachangelog.com

### Known Issues

* Restock launch clamps do not render properly in the editor
* ***IMPORTANT***: If you experience blurring or smearing, try turning off temporal antialiasing in scatterer's settings. If they persist, also disable temporal antialiasing in your TUFX profile as well as motion blur. Once you've eliminated the issue, turn settings back on one by one until you find something you like.

## Unreleased

### Notable Changes

* New dependencies: ClickThroughBlocker, ToolbarController
* Remove patch that disables scatterer's temporal antialiasing
* Better default profile settings (mostly removing the neutral tonemapper which tended to result in a desaturated image)
* Added clickthroughblocker support (this is now a dependency)
* Fixed icons appearing blurry when game is not at full texture resolution
* Added a "close window" button to the config window so that you can click it when in photo mode. To use TUFX in photo mode:
* Open the TUFX window
* Press escape
* Press F2
* You can now move the camera around and change TUFX settings
* When you have the settings you like, close the TUFX window and press F1 to take a screenshot
* Disable stock antialiasing when HDR and bloom are enabled to prevent strobing artifacts
* Configuration window now loads and saves directly to cfg files
* Redesigned profile editor UI
* Postprocessing effects now only apply to the final camera so that they don't get doubled up when in IVA or other situations.
* Added a secondary camera antialiasing setting. The old setting will be applied only to the main camera (local space in flight). The secondary antialiasing method will be applied to other cameras (galaxycam, scaled space, internal camera). This prevents smearing when using temporal antialiasing because the cameras do not share motion information.
35 changes: 16 additions & 19 deletions GameData/TUFX/TUFX.version
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
{
"NAME":"TUFX",
"URL":"https://raw.githubusercontent.com/KSPModStewards/TUFX/main/GameData/TUFX/TexturesUnlimitedFX.version",
"DOWNLOAD":"https://github.com/KSPModStewards/TUFX/releases",
"CHANGE_LOG_URL":"https://github.com/KSPModStewards/TUFX/CHANGELOG.md",
"VERSION":
{
"MAJOR":1,
"MINOR":0,
"PATCH":8
"NAME": "TUFX",
"URL": "https://raw.githubusercontent.com/KSPModStewards/TUFX/main/GameData/TUFX/TexturesUnlimitedFX.version",
"DOWNLOAD": "https://github.com/KSPModStewards/TUFX/releases",
"CHANGE_LOG_URL": "https://github.com/KSPModStewards/TUFX/blob/main/CHANGELOG.md",
"VERSION": {
"MAJOR": "1",
"MINOR": "0",
"PATCH": "8"
},
"KSP_VERSION_MIN":
{
"MAJOR":1,
"MINOR":12,
"PATCH":3
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 3
},
"KSP_VERSION_MAX":
{
"MAJOR":1,
"MINOR":12,
"PATCH":99
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 99
}
}
35 changes: 16 additions & 19 deletions GameData/TUFX/TUFX.version.versiontemplate
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
{
"NAME":"TUFX",
"URL":"https://raw.githubusercontent.com/KSPModStewards/TUFX/main/GameData/TUFX/TexturesUnlimitedFX.version",
"DOWNLOAD":"https://github.com/KSPModStewards/TUFX/releases",
"CHANGE_LOG_URL":"https://github.com/KSPModStewards/TUFX/CHANGELOG.md",
"VERSION":
{
"MAJOR":@VERSION_MAJOR@,
"MINOR":@VERSION_MINOR@,
"PATCH":@VERSION_PATCH@
"NAME": "TUFX",
"URL": "https://raw.githubusercontent.com/KSPModStewards/TUFX/main/GameData/TUFX/TexturesUnlimitedFX.version",
"DOWNLOAD": "https://github.com/KSPModStewards/TUFX/releases",
"CHANGE_LOG_URL": "https://github.com/KSPModStewards/TUFX/blob/main/CHANGELOG.md",
"VERSION": {
"MAJOR": "@VERSION_MAJOR@",
"MINOR": "@VERSION_MINOR@",
"PATCH": "@VERSION_PATCH@"
},
"KSP_VERSION_MIN":
{
"MAJOR":1,
"MINOR":12,
"PATCH":3
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 3
},
"KSP_VERSION_MAX":
{
"MAJOR":1,
"MINOR":12,
"PATCH":99
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 99
}
}
3 changes: 2 additions & 1 deletion TUFX.sln
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9956C157-67C8-4F77-A278-AF7732518796}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
GameData\TUFX\TexturesUnlimitedFX.version = GameData\TUFX\TexturesUnlimitedFX.version
CHANGELOG.md = CHANGELOG.md
GameData\TUFX\TexturesUnlimitedFX.version.versiontemplate = GameData\TUFX\TexturesUnlimitedFX.version.versiontemplate
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TUFX", "Source\TUFX.csproj", "{02EFB286-38A9-47C4-83CD-6DD59077AA2F}"
Expand Down

0 comments on commit 2177454

Please sign in to comment.