Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jul 14, 2024
1 parent 15a0215 commit 536f928
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
### 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.
* ***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
## 1.1.0 - 2024-07-14

### Notable Changes

Expand All @@ -35,4 +35,4 @@
* 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.
* 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.
4 changes: 2 additions & 2 deletions GameData/TUFX/TUFX.version
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"CHANGE_LOG_URL": "https://github.com/KSPModStewards/TUFX/blob/main/CHANGELOG.md",
"VERSION": {
"MAJOR": "1",
"MINOR": "0",
"PATCH": "8"
"MINOR": "1",
"PATCH": "0"
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
71 changes: 71 additions & 0 deletions GameData/TUFX/TUFXChangelog.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
// Changelog file generated by yaclog-ksp (https://github.com/drewcassidy/yaclog-ksp)
KERBALCHANGELOG
{
modName = TUFX
author = shadowmage45, JonnyOThan
VERSION {
version = 1.1.0
versionDate = 2024-07-14
CHANGE {
type = Notable Changes
change = New dependencies: ClickThroughBlocker, ToolbarController
}

CHANGE {
type = Notable Changes
change = Remove patch that disables scatterer's temporal antialiasing
}
CHANGE {
type = Notable Changes
change = Better default profile settings (mostly removing the neutral tonemapper which tended to result in a desaturated image)
}
CHANGE {
type = Notable Changes
change = Added clickthroughblocker support (this is now a dependency)
}
CHANGE {
type = Notable Changes
change = Fixed icons appearing blurry when game is not at full texture resolution
}
CHANGE {
type = Notable Changes
change = 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:
subchange = Open the TUFX window
subchange = Press escape
subchange = Press F2
subchange = You can now move the camera around and change TUFX settings
subchange = When you have the settings you like, close the TUFX window and press F1 to take a screenshot
}
CHANGE {
type = Notable Changes
change = Disable stock antialiasing when HDR and bloom are enabled to prevent strobing artifacts
}
CHANGE {
type = Notable Changes
change = Configuration window now loads and saves directly to cfg files
}
CHANGE {
type = Notable Changes
change = Redesigned profile editor UI
}
CHANGE {
type = Notable Changes
change = Postprocessing effects now only apply to the final camera so that they don't get doubled up when in IVA or other situations.
}

CHANGE {
type = Notable Changes
change = 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.
}

}

}
6 changes: 3 additions & 3 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("02efb286-38a9-47c4-83cd-6dd59077aa2f")]

[assembly: AssemblyVersion("1.0.8")]
[assembly: AssemblyFileVersion("1.0.8")]
[assembly: KSPAssembly("TUFX", 1, 0, 8)]
[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: KSPAssembly("TUFX", 1, 1, 0)]

[assembly: KSPAssemblyDependency("ClickThroughBlocker", 1, 0)]
[assembly: KSPAssemblyDependency("ToolbarController", 1, 0)]

0 comments on commit 536f928

Please sign in to comment.