Skip to content

Commit

Permalink
v2.3.3.1 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2k3 committed Nov 18, 2019
1 parent ccea724 commit 10bc202
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.3.3.1
- Add `utils.ReadUTF8`. It's preferable to use this when you know the file is `UTF8` encoded... such as ones written by `utils.WriteTextFile`. Continue to use `utils.ReadTextFile` if the files are `UCS2-LE`, `ANSI` or unknown.

## v2.3.3
- Fix rare crash with `utils.ReadTextFile`.

Expand Down
4 changes: 2 additions & 2 deletions foo_jscript_panel/docs/Interfaces.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1215,9 +1215,9 @@ interface IUtils {

utils.ReadUTF8(filename); (string)
/*
It's preferable to use this when you know the file is UTF8 encoded... such as
It's preferable to use this when you know the file is "UTF8" encoded... such as
ones written by "utils.WriteTextFile". Continue to use "utils.ReadTextFile"
when you're unsure of the source.
if the files are "UCS2-LE", "ANSI" or unknown.
*/

utils.TimestampToDateString(ts); (string)
Expand Down
2 changes: 1 addition & 1 deletion src/foo_jscript_panel.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define JSP_DLL_NAME "foo_jscript_panel.dll"

// Remember to bump utils.version too
#define JSP_VERSION_NUMBER "2.3.3"
#define JSP_VERSION_NUMBER "2.3.3.1"
#define JSP_VERSION_TEST ""

#ifdef _DEBUG
Expand Down
2 changes: 1 addition & 1 deletion src/script_interface/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,6 @@ STDMETHODIMP Utils::get_Version(UINT* p)
{
if (!p) return E_POINTER;

*p = 2330;
*p = 2331;
return S_OK;
}

0 comments on commit 10bc202

Please sign in to comment.