Skip to content

Commit

Permalink
v2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
linyuan.yang committed Mar 26, 2022
1 parent 90fa753 commit 7df2fe4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.3.8 (*2022-03-26*)
* `[修复]`修复class toString自动拼接的问题

## v2.3.7 (*2022-03-18*)
* `[新增]` io库增加函数
* readAllLines
Expand Down
4 changes: 2 additions & 2 deletions Scorpio/src/Runtime/ScriptContextExecuteBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1773,12 +1773,12 @@ public ScriptValue Execute(ScriptValue thisObject, ScriptValue[] args, int lengt
iInstruction = tryStack[tryIndex--];
goto KeepOn;
} else {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
throw;
}
//脚本系统错误
} catch (ExecutionException e) {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
if (tryIndex > -1) {
stackObjects[stackIndex = 0] = ScriptValue.CreateValue(e);
iInstruction = tryStack[tryIndex--];
Expand Down
4 changes: 2 additions & 2 deletions Scorpio/src/Runtime/ScriptContextExecuteCoroutine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1773,12 +1773,12 @@ public ScriptValue Execute(ScriptValue thisObject, ScriptValue[] args, int lengt
iInstruction = tryStack[tryIndex--];
goto KeepOn;
} else {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
throw;
}
//脚本系统错误
} catch (ExecutionException e) {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
if (tryIndex > -1) {
stackObjects[stackIndex = 0] = ScriptValue.CreateValue(e);
iInstruction = tryStack[tryIndex--];
Expand Down
4 changes: 2 additions & 2 deletions Scorpio/src/Runtime/ScriptContextExecuteCoroutineBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1774,12 +1774,12 @@ public ScriptValue Execute(ScriptValue thisObject, ScriptValue[] args, int lengt
iInstruction = tryStack[tryIndex--];
goto KeepOn;
} else {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
throw;
}
//脚本系统错误
} catch (ExecutionException e) {
e.message = $"{m_Breviary}:{instruction.line}({opcode}){parameters.GetParametersString(length)}\n {e.message}";
e.message = $"{m_Breviary}:{instruction.line}({opcode})\n {e.message}";
if (tryIndex > -1) {
stackObjects[stackIndex = 0] = ScriptValue.CreateValue(e);
iInstruction = tryStack[tryIndex--];
Expand Down
4 changes: 2 additions & 2 deletions Scorpio/src/Version.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//github : https://github.com/qingfeng346/Scorpio-CSharp
namespace Scorpio {
public static class Version {
public const string version = "2.3.7";
public const string date = "2022-03-18";
public const string version = "2.3.8";
public const string date = "2022-03-26";
}
}
2 changes: 1 addition & 1 deletion Tools/build.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "2.3.7"
$version = "2.3.8"
$name = "sco"

$today = Get-Date
Expand Down

0 comments on commit 7df2fe4

Please sign in to comment.