Skip to content

Commit

Permalink
- fix compilation after deliberately breaking it in last commit
Browse files Browse the repository at this point in the history
- added missing docs for Engine.intToHexString()
  • Loading branch information
Christoph Hart committed Feb 10, 2025
1 parent 2fbc2f7 commit 68611b1
Show file tree
Hide file tree
Showing 7 changed files with 7,285 additions and 7,279 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,4 @@ tools/onnx_lib/Builds/
tools/onnx_lib/JuceLibraryCode/
tools/onnx_lib/Source/lib/
tools/onnx_lib/onnx_hise_library.dll
tools/auto_build/installer
2 changes: 1 addition & 1 deletion currentGitHash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
961d7d903632982c4c315062271cf1318cee278b
2fbc2f73819197491158b402cd593363df28a68e
2 changes: 1 addition & 1 deletion hi_backend/backend/CompileExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,7 @@ int CppBuilder::exportValueTreeAsCpp(const File &sourceDirectory, const File &de

#define ADD_LINE(x) (batchContent << x << NewLine::getDefault())

void CompileExporter::Batch FileCreator::createBatchFile(CompileExporter* exporter, BuildOption buildOption, TargetTypes types, ChildProcessManager* manager)
void CompileExporter::BatchFileCreator::createBatchFile(CompileExporter* exporter, BuildOption buildOption, TargetTypes types, ChildProcessManager* manager)
{
ModulatorSynthChain* chainToExport = exporter->chainToExport;
ignoreUnused(chainToExport);
Expand Down
2 changes: 1 addition & 1 deletion hi_backend/backend/currentGit.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PREVIOUS_HISE_COMMIT "961d7d903632982c4c315062271cf1318cee278b"
#define PREVIOUS_HISE_COMMIT "2fbc2f73819197491158b402cd593363df28a68e"
1 change: 1 addition & 0 deletions hi_scripting/scripting/api/ScriptingApi.h
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,7 @@ class ScriptingApi
/** Returns the width of the string for the given font properties. */
float getStringWidth(String text, String fontName, float fontSize, float fontSpacing);

/** Returns a number as string in hexadecimal format (0xFFFFFFFF). */
String intToHexString(int value);

/** Signals that the application should terminate. */
Expand Down
14,554 changes: 7,279 additions & 7,275 deletions hi_scripting/scripting/api/XmlApi.cpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hi_scripting/scripting/api/XmlApi.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace XmlApi
{
extern const char* apivaluetree_dat;
const int apivaluetree_datSize = 301444;
const int apivaluetree_datSize = 301602;

}

Expand Down

0 comments on commit 68611b1

Please sign in to comment.