Skip to content

Commit

Permalink
Release v1.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 29, 2022
1 parent 97282fd commit bd4cb7b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.7.8] - 2022-12-29

### Fixed

- Fix scaling algorithm autodetection when using manual resolution input in interactive mode.
Expand Down Expand Up @@ -406,7 +408,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[Unreleased]: https://github.com/nbusseneau/hephaistos/compare/v1.7.7...HEAD
[Unreleased]: https://github.com/nbusseneau/hephaistos/compare/v1.7.8...HEAD

[1.7.8]: https://github.com/nbusseneau/hephaistos/compare/v1.7.7...v1.7.8

[1.7.7]: https://github.com/nbusseneau/hephaistos/compare/v1.7.6...v1.7.7

Expand Down
2 changes: 1 addition & 1 deletion hephaistos/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def center_y(self) -> int:
DEFAULT_SCREEN = Screen(1920, 1080)

# Hephaistos constants
VERSION = 'v1.7.7'
VERSION = 'v1.7.8'
LATEST_RELEASE_URL = 'https://github.com/nbusseneau/hephaistos/releases/latest/'
LATEST_RELEASE_API_URL = 'https://api.github.com/repos/nbusseneau/hephaistos/releases/latest'
HEPHAISTOS_NAME = 'hephaistos'
Expand Down
8 changes: 4 additions & 4 deletions windows_version_info.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(1, 7, 7, 0),
prodvers=(1, 7, 7, 0),
filevers=(1, 7, 8, 0),
prodvers=(1, 7, 8, 0),
mask=0x3f,
flags=0x0,
OS=0x4,
Expand All @@ -16,12 +16,12 @@
[
StringStruct(u'CompanyName', u''),
StringStruct(u'FileDescription', u'Ultrawide mod for Hades'),
StringStruct(u'FileVersion', u'1.7.7'),
StringStruct(u'FileVersion', u'1.7.8'),
StringStruct(u'InternalName', u'hephaistos'),
StringStruct(u'LegalCopyright', u''),
StringStruct(u'OriginalFilename', u'hephaistos.exe'),
StringStruct(u'ProductName', u'Hephaistos'),
StringStruct(u'ProductVersion', u'1.7.7')
StringStruct(u'ProductVersion', u'1.7.8')
]
)
]),
Expand Down

0 comments on commit bd4cb7b

Please sign in to comment.