Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesBoer committed Jan 5, 2023
2 parents f2280a7 + 02ff797 commit e8dc44b
Show file tree
Hide file tree
Showing 13 changed files with 6,967 additions and 3,010 deletions.
2 changes: 1 addition & 1 deletion Docs/API/html/_jinx_8h.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
<tr class="memdesc:a1c7318012adc2d64540cd28ed5f78b01"><td class="mdescLeft">&#160;</td><td class="mdescRight">Minor version number. <br /></td></tr>
<tr class="separator:a1c7318012adc2d64540cd28ed5f78b01"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae0e5e517609d07abbe8c6aa37e974d3a"><td class="memItemLeft" align="right" valign="top"><a id="ae0e5e517609d07abbe8c6aa37e974d3a"></a>
const uint32_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_jinx_8h.html#ae0e5e517609d07abbe8c6aa37e974d3a">Jinx::PatchNumber</a> = 4</td></tr>
const uint32_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_jinx_8h.html#ae0e5e517609d07abbe8c6aa37e974d3a">Jinx::PatchNumber</a> = 10</td></tr>
<tr class="memdesc:ae0e5e517609d07abbe8c6aa37e974d3a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Patch number. <br /></td></tr>
<tr class="separator:ae0e5e517609d07abbe8c6aa37e974d3a"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion Docs/API/html/_jinx_8h_source.html

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Docs/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.3.10] - 2023-01-05

- Updated Catch2 to fix several compilation issues
- Correct error in tutorial about precedence of functions

## [1.3.9] - 2022-06-17

- Fixed issue with duplicate non-local function registration
Expand Down
Binary file modified Docs/Tutorial.docx
Binary file not shown.
Binary file modified Docs/Tutorial.htm
Binary file not shown.
Binary file modified Docs/Tutorial.pdf
Binary file not shown.
3 changes: 2 additions & 1 deletion Include/Jinx.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ namespace Jinx
const uint32_t MinorVersion = 3;

/// Patch number
const uint32_t PatchNumber = 9;
const uint32_t PatchNumber = 10;

// Forward declaration
class IScript;
Expand Down Expand Up @@ -5604,6 +5604,7 @@ namespace Jinx::Impl

inline uint32_t Parser::GetOperatorPrecedence(Opcode opcode) const
{
// Lower values mean higher precedence
switch (opcode)
{
case Opcode::Multiply: return 1;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ There is a [more comprehensive tutorial](https://jamesboer.github.io/Jinx/Tutori
## Jinx Status
Jinx was released as 1.0.0 (stable) on January 1, 2019, after three years of development, refinement, and testing. Additional work, for the immediate future, will be restricted to bug fixing or critical refinements, with the intention of retaining backwards compatibility.
Jinx was released as 1.0.0 (stable) on January 1, 2019, after three years of development, refinement, and testing. Since then, mostly minor language features and API enhancements have been edded. Additional work, for the immediate future, will be restricted to bug fixing or critical refinements, with the intention of retaining backwards compatibility.
2 changes: 1 addition & 1 deletion Source/Jinx.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ namespace Jinx
const uint32_t MinorVersion = 3;

/// Patch number
const uint32_t PatchNumber = 9;
const uint32_t PatchNumber = 10;

// Forward declaration
class IScript;
Expand Down
1 change: 1 addition & 0 deletions Source/JxParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ namespace Jinx::Impl

inline_t uint32_t Parser::GetOperatorPrecedence(Opcode opcode) const
{
// Lower values mean higher precedence
switch (opcode)
{
case Opcode::Multiply: return 1;
Expand Down
2 changes: 1 addition & 1 deletion Tests/UnitTests/TestCasts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ TEST_CASE("Test Casts", "[Casts]")
REQUIRE(script->GetVariable("a").GetGuid() == guid);
}

}
}
2 changes: 1 addition & 1 deletion Tests/UnitTests/UnitTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ Jinx::ScriptPtr TestCreateScript(const char * scriptText, Jinx::RuntimePtr runti
Jinx::ScriptPtr TestExecuteScript(const char * scriptText, Jinx::RuntimePtr runtime = nullptr, JinxAny userContext = nullptr);
bool TestExecuteScript(Jinx::ScriptPtr script);

#endif // UNIT_TESTS_H____
#endif // UNIT_TESTS_H____
Loading

0 comments on commit e8dc44b

Please sign in to comment.