Skip to content

Commit

Permalink
Update version string, remove some useless includes
Browse files Browse the repository at this point in the history
  • Loading branch information
llde committed Nov 21, 2024
1 parent 6320fca commit 75323bb
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion obse/obse/CommandTable.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#include <vector>
enum ParamType
{
kParamType_String = 0x00,
Expand Down
1 change: 0 additions & 1 deletion obse/obse/GameExtraData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "obse/GameAPI.h"
#include "obse/GameObjects.h"
#include "obse/Script.h"
#include "obse/Hooks_Gameplay.h"
#include <obse\Settings.h>

typedef ExtraContainerChanges* (* _GetOrCreateExtraContainerChanges)(TESObjectREFR* refr);
Expand Down
1 change: 0 additions & 1 deletion obse/obse/GameTasks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "GameAPI.h"
#include "GameForms.h"
#include "GameObjects.h"
#include "Hooks_Gameplay.h"


IOManager** g_ioManager = (IOManager**)0x00B33A10;
Expand Down
3 changes: 2 additions & 1 deletion obse/obse/Utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#include "GameAPI.h"
#include "Script.h"
#include "GameOSDepend.h"

#include <algorithm>
#include <DbgHelp.h>
void PrintItemType(TESForm * form)
{
Console_Print("%s (%s)", GetFullName(form), GetObjectClassName(form));
Expand Down
1 change: 1 addition & 0 deletions obse/obse/Utilities.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#include <functional>

class TESForm;
class Script;
Expand Down
Binary file modified obse/obse_common/obse_version.aps
Binary file not shown.
4 changes: 2 additions & 2 deletions obse/obse_common/obse_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

// these have to be macros so they can be used in the .rc
#define OBSE_VERSION_INTEGER 22
#define OBSE_VERSION_INTEGER_MINOR 10 //Avoid using revision 0 (at least 1 mod break for this)
#define OBSE_VERSION_INTEGER_MINOR 11 //Avoid using revision 0 (at least 1 mod break for this)
#define OBSE_VERSION_INTEGER_HOTIFX 0
#define OBSE_VERSION_VERSTRING "0, 22, 10, 0"
#define OBSE_VERSION_VERSTRING "0, 22, 11, 0"
#define OBSE_VERSION_PADDEDSTRING "0022"

// build numbers are the month and date each build was made
Expand Down
8 changes: 4 additions & 4 deletions obse/obse_common/obse_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ LANGUAGE LANG_ITALIAN, SUBLANG_ITALIAN
//

1 VERSIONINFO
FILEVERSION 0,22,10,0
PRODUCTVERSION 0,22,10,0
FILEVERSION 0,22,11,0
PRODUCTVERSION 0,22,11,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -31,11 +31,11 @@ BEGIN
BLOCK "041004b0"
BEGIN
VALUE "FileDescription", "A component of the Oblivion Script Extender"
VALUE "FileVersion", "0.22.10.0"
VALUE "FileVersion", "0.22.11.0"
VALUE "InternalName", "obse"
VALUE "LegalCopyright", "Copyright (C) 2006-2023"
VALUE "ProductName", "obse"
VALUE "ProductVersion", "0.22.10.0"
VALUE "ProductVersion", "0.22.11.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 75323bb

Please sign in to comment.