Skip to content

Commit

Permalink
Update core to 4.1.0 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand authored Jul 5, 2024
1 parent 64f460a commit 786c229
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenDocumentReader/CoreWrapper.mm
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ - (bool)translate:(NSString *)inputPath into:(NSString *)outputPath with:(NSStri
auto outputPathC = [outputPath cStringUsingEncoding:NSUTF8StringEncoding];
auto outputPathCpp = std::string(outputPathC);

html = odr::OpenDocumentReader::html(inputPathCpp, passwordC, outputPathCpp, config);
html = odr::OpenDocumentReader::html(inputPathCpp, [passwordC]() { return passwordC; }, outputPathCpp, config);

NSMutableArray *pageNames = [[NSMutableArray alloc] init];
NSMutableArray *pagePaths = [[NSMutableArray alloc] init];
Expand Down
2 changes: 1 addition & 1 deletion conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Pkg(ConanFile):
settings = "os", "compiler", "arch", "build_type"
options = {"configuration": ["Debug", "Debug Lite", "Release", "Release Lite"]}
default_options = {"configuration": "Debug"}
requires = "odrcore/3.0.0"
requires = "odrcore/4.1.0"

def generate(self):
xcode = XcodeDeps(self)
Expand Down

0 comments on commit 786c229

Please sign in to comment.