Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
2.0.7
Browse files Browse the repository at this point in the history
Fix for ETS2/ATS 1.51
  • Loading branch information
Hary309 committed Sep 12, 2024
1 parent 46396bd commit e11cfb1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_subdirectory(vendor)

use_static_linking()

project(hry-sic VERSION 2.0.6)
project(hry-sic VERSION 2.0.7)

file(GLOB_RECURSE hry-sic-src src/*.cpp src/*.hpp)
add_library(hry-sic SHARED ${hry-sic-src})
Expand Down
2 changes: 1 addition & 1 deletion deploy/installer/hry-sic.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Smooth Interior Camera"
#define MyAppVersion "2.0.6"
#define MyAppVersion "2.0.7"
#define MyAppPublisher "Piotr Krupa"
#define MyAppURL "https://hary309.github.io/projects/hry-plugins/hry-sic"

Expand Down
4 changes: 2 additions & 2 deletions src/Hooks/CameraHook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ bool CameraHook::Install()
hry::pattern functionPattern(
std::string_view("48 83 ? ? 48 8B ? 45 32 ? 48 8B ? ? ? ? ? 48 ? ? 74"));
hry::pattern dataFieldsPattern(
std::string_view("F3 0F 10 ? ? ? 00 00 F3 0F 10 ? ? ? 00 00 83 F8 01 75 ? F3 0F 11 ? ? "
"? 00 00 F3 0F 11 ? ? ? 00 00 89 9F ? ? 00 00 E9 ? ? 00 00"));
std::string_view("F3 0F 10 ? ? ? 00 00 F3 0F 10 ? ? ? 00 00 83 F8 01 75 ? F3 0F 11 ? ? ? 00 00 F3 0F 11 ? ? ? 00 00"));


SIC::Logger->info("Searching for pattern...");

Expand Down
2 changes: 1 addition & 1 deletion src/SIC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void SIC::fillPluginInfo()
_pluginInfo.fullName = "Smooth Interior Camera";
_pluginInfo.authorInfo = { "Piotr Krupa", "[email protected]" };
_pluginInfo.website = "https://hary309.github.io/projects/hry-plugins/hry-sic";
_pluginInfo.version = { 2, 0, 6 };
_pluginInfo.version = { 2, 0, 7 };
_pluginInfo.desc = R"(
## About
hry-sic improves interior camera by adding smooth rotation animation.
Expand Down

0 comments on commit e11cfb1

Please sign in to comment.