Releases: soteenstudio/BynixScript
Releases · soteenstudio/BynixScript
Version 0.2.1-next
What's new?
- Bug fixes:
- None
- Added
evalandurivalues to is_error - Added simpler error message
- Change the configuration file name from
bsconfig.jsontobsc.json
Installation
npm install -g bynixscript
Or run with CDN:
<script src="https://cdn.jsdelivr.net/npm/bynixscript"></script>Create an issue if there are bugs or problems.
I hope in this version you cannot find any bugs
Version 0.2.0
What's new?
- Bug fixes:
- Fixes for
endtranslation results - Fix for untranslated comments
- And fixes untranslated functions
- Fixes for
- Added
Err,URIErr,EvalErr,TypeErr,RangeErr,SyntaxErr,InternalErr,ReferenceErr,float,continue,is_error,super,throw,handle,recovery, andfinal - Delete
isNull - Changed the way some functions and statements are written:
is_includes === "World!"tois_includes("World!")is_start === "Hello"tois_start("Hello")is_end === "There!"tois_end("There!")is_matched === "/Hey/g"tois_matched(/Hey/g)is_design === "display: none"tois_design("display: none")isStr,isNum,isBool,isFunc,isBig,isUndef,isObj,isSymtois_typebreak:tobreak
For details on how to use, you can see the list of functions of BynixScript.
- Added property
watchto bsconfig.json:
{
"extension": {
"primary": ".bs",
"secondary": ".bynixscript",
"module": ".mbs"
},
"toFolder": "./dist/",
"readFolder": "./src/",
"allowJs": false,
"watch": false
}- The function of the
watchproperty is to automatically compile in a specified directory.
Installation
npm install -g bynixscript@0.2.0
Or run with CDN:
<script src="https://cdn.jsdelivr.net/npm/bynixscript@0.2.0/js/browser.min.js"></script>Create an issue if there are bugs or problems.
I hope in this version you cannot find any bugs
Version 0.1.2
What's new?
- Bug fixes
- Added property
allowJsto bsconfig.json:
{
"extension": {
"primary": ".bs",
"secondary": ".bynixscript",
"module": ".mbs"
},
"toFolder": "./dist/",
"readFolder": "./src/",
"allowJs": false
}- The function of the
allowJsproperty is to allow typing of JavaScript functions in BynixScript.
Installation
npm install -g bynixscript@0.1.2-next
Or clone this repository
git clone https://github.com/UngGasStudio/BynixScript.git
I hope in this version you cannot find any bugs
Version 0.1.1
What's new?
- Bug fixes
- Added
isBool,isUndef,isFunc,isSym,isBig, andisType - Changing the way end blocks are used:
end:andend::becomesendend:5000:becomesend:5000
Example:
var age = 16 if age < 20: print("You are still young") end delay: print("Delayed") end:5000
- Added property
readFolderto bsconfig.json:
{
"extension": {
"primary": ".bs",
"secondary": ".bynixscript",
"module": ".mbs"
},
"toFolder": "./dist/",
"readFolder": "./src"
}Installation
npm install -g bynixscript@0.1.1-next
Or clone this repository
git clone https://github.com/UngGasStudio/BynixScript.git
I hope in this version you cannot find any bugs
Version 0.1.0
What's new?
- Added
map,filter,reduce,isNum,isStr,isNull,class,extends,constructor,static, andnew - Added highlight, snippet, formatter with BynixScript Extension
- Added bsconfig.json:
{
"extension": {
"primary": ".bs",
"secondary": ".bynixscript",
"module": ".mbs"
},
"toFolder": "./example/"
}Installation
npm install -g bynixscript@0.1.0
Or clone this repository
git clone https://github.com/UngGasStudio/BynixScript.git
I hope in this version you cannot find any bugs
Version 0.0.4
What's new?
- Added
process.argv,num,str, andint
Installation
npm install -g bynixscript@0.0.4-next
Or clone this repository
git clone https://github.com/UngGasStudio/BynixScript.git
I hope in this version you cannot find any bugs
Version 0.0.3
What's new?
- Bug fixes
- Added
is_start,is_end, andrequire - Add the
bsd path/to/script.bscommand, and theb!helporb!help -vcommand.
Installation
npm install -g bynixscript@0.0.3-next.0
Or clone this repository
git clone https://github.com/UngGasStudio/BynixScript.git
I hope in this version you cannot find any bugs
Version 0.0.2
What's new?
- Bug fixes
- And the addition of
print.err,print.info,print.warn,print.debug,print.trace,print.assert
I hope in this version you cannot find any bugs
Version 0.0.1
This is the first version which is still in testing.