Skip to content

Commit

Permalink
Merge pull request #945 from OutpostUniverse/v0.8.3-MinorChanges
Browse files Browse the repository at this point in the history
V0.8.3 minor changes
  • Loading branch information
ldicker83 authored Jun 6, 2021
2 parents d4a78d5 + 628e595 commit bfccd94
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
# Change Log
This is the changelog for OutpostHD.

## [0.8.2] - 2019-03-24
## [0.8.3] - 2021-06-6

Introduces the NotificationArea UI element to inform users of non-critical issues or notifications that don't interrupt gameplay and the user can look at and respond to at their leisure.

### Added
- Added a NotificationArea to display notifications
- Added a NotificationWindow to show detailed information about new notifications
- Added RadioButton and RadioButtonGroup
- Added Police Coverage overlay

### Changed
- Certain conditions will now throw exceptions -- these are logic bugs that should be reported and not ignored
- Population changes (births and deaths) will now push notifications to the player
- Robot aging and failure will now push notifications to the player
- Robot self-destruct will now push a notification instead of display a message box
- Structure state changes (construction complete, destroyed, disabled, etc.) will now push notifications to the player

### Fixed
- Log output redirect crash
- Disabled or destroyed Smelters will now be ignored in truck routing
- Assigned trucks will now be saved/loaded properly from save games
- Recycling structure will now be properly highlighted red if insufficient resources are available to build it


## [0.8.2] - 2021-03-24

Introduces communcations range overlays, additional GUI quality of life improvements and a number of bug fixes that correct some subtle behavior issues.

Expand All @@ -25,7 +49,7 @@ Introduces communcations range overlays, additional GUI quality of life improvem
- Fix savegame issue where game breaks when loading a savegame saved on turn 0 before the seed lander is placed


## [0.8.1] - 2019-02-17
## [0.8.1] - 2021-02-17

Introduces biowaste produced by residential units and some quality of life improvements in the GUI.

Expand Down
2 changes: 1 addition & 1 deletion OPHD/Constants/Strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace constants
// =====================================
// = MISCELLANEOUS
// =====================================
const std::string VERSION = "v0.8.2";
const std::string VERSION = "v0.8.3";
const std::string EMPTY_STR = ""; /**< Used in a few places to return an empty string without having to create one. */

const std::string TILE_INDEX_TRANSLATION_BULLDOZED = "Bulldozed";
Expand Down
8 changes: 4 additions & 4 deletions OPHD/ophd.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ IDI_ICON1 ICON "outpost.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,8,2,0
PRODUCTVERSION 0,8,2,0
FILEVERSION 0,8,3,0
PRODUCTVERSION 0,8,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "LairWorks Entertainment, LLC"
VALUE "FileDescription", "OutpostHD"
VALUE "FileVersion", "0.8.2.0"
VALUE "FileVersion", "0.8.3.0"
VALUE "InternalName", "OutpostHD"
VALUE "LegalCopyright", "Copyright � 2015 - 2021, Leeor Dicker"
VALUE "OriginalFilename", "OPHD.EXE"
VALUE "ProductName", "OutpostHD"
VALUE "ProductVersion", "0.8.2.0"
VALUE "ProductVersion", "0.8.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit bfccd94

Please sign in to comment.