File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 1.7.8] - 2022-12-29
11+
1012### Fixed
1113
1214- Fix scaling algorithm autodetection when using manual resolution input in interactive mode.
@@ -406,7 +408,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
406408
407409- Initial release.
408410
409- [ Unreleased ] : https://github.com/nbusseneau/hephaistos/compare/v1.7.7...HEAD
411+ [ Unreleased ] : https://github.com/nbusseneau/hephaistos/compare/v1.7.8...HEAD
412+
413+ [ 1.7.8 ] : https://github.com/nbusseneau/hephaistos/compare/v1.7.7...v1.7.8
410414
411415[ 1.7.7 ] : https://github.com/nbusseneau/hephaistos/compare/v1.7.6...v1.7.7
412416
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def center_y(self) -> int:
2222DEFAULT_SCREEN = Screen (1920 , 1080 )
2323
2424# Hephaistos constants
25- VERSION = 'v1.7.7 '
25+ VERSION = 'v1.7.8 '
2626LATEST_RELEASE_URL = 'https://github.com/nbusseneau/hephaistos/releases/latest/'
2727LATEST_RELEASE_API_URL = 'https://api.github.com/repos/nbusseneau/hephaistos/releases/latest'
2828HEPHAISTOS_NAME = 'hephaistos'
Original file line number Diff line number Diff line change 11VSVersionInfo (
22 ffi = FixedFileInfo (
3- filevers = (1 , 7 , 7 , 0 ),
4- prodvers = (1 , 7 , 7 , 0 ),
3+ filevers = (1 , 7 , 8 , 0 ),
4+ prodvers = (1 , 7 , 8 , 0 ),
55 mask = 0x3f ,
66 flags = 0x0 ,
77 OS = 0x4 ,
1616 [
1717 StringStruct (u'CompanyName' , u'' ),
1818 StringStruct (u'FileDescription' , u'Ultrawide mod for Hades' ),
19- StringStruct (u'FileVersion' , u'1.7.7 ' ),
19+ StringStruct (u'FileVersion' , u'1.7.8 ' ),
2020 StringStruct (u'InternalName' , u'hephaistos' ),
2121 StringStruct (u'LegalCopyright' , u'' ),
2222 StringStruct (u'OriginalFilename' , u'hephaistos.exe' ),
2323 StringStruct (u'ProductName' , u'Hephaistos' ),
24- StringStruct (u'ProductVersion' , u'1.7.7 ' )
24+ StringStruct (u'ProductVersion' , u'1.7.8 ' )
2525 ]
2626 )
2727 ]),
You can’t perform that action at this time.
0 commit comments