Categories
TeaScript

Release of TeaScript 0.15.0 β˜•

TeaScript 0.15.0 was published on the 1st September in 2024 and can be downloaded for free: New Patch Release TeaScript C++ Library 0.15.1 (03. November 2024) – This patch release fixes the header only compile mode which was broken for Engine/CoroutineScriptEngine. TeaScript C++ Library TeaScript_CppLibrary_v0.15.1.zip TeaScript Host Windows TeaScript_v0.15.0_win64.zip TeaScript Host Linux (Ubuntu 22.04) TeaScript_v0.15.0_linux64.tgz […]

Categories
TeaScript

Release of TeaScript 0.14.0 πŸ–₯

TeaScript 0.14.0 was published on the 15th May in 2024 and can be downloaded for free: UPDATE: In the meanwhile a new release with new features has been done. Check out the download page! All details, features and changes for this new release are following in the blog post below. Infos and Links The download […]

Categories
C++Programming

Requires clause for overload resolution – real-world example

Intro This is the third (and probably last) article of my small mini series about maybe not so well known C++ features / pattern / programming techniques for which I found a practical usage during programming on my private projects. This time the topic is about the requires clause for overload resolution. The requires clause […]

Categories
TeaScript

Release of TeaScript 0.12.0 🌈

TeaScript 0.12.0 was published on the 18th January in 2024 and can be downloaded for free:β˜›β˜›β˜› Download is available here. ☚☚☚ (or browse the source code of the TeaScript C++ Library on Github) This Release could also be published with the headline: “TeaScript – in living color”, or “TeaScript – colorized” – hence the rainbow […]

Categories
C++Programming

An unevil const_cast – real-world example

Intro This is the second article of my small mini series about maybe not so well known C++ features / pattern / programming techniques for which I found a practical usage during programming on my private projects. This time the topic is about const_cast<T&>. const_cast is considered evil It is more or less indisputable, that […]

Categories
C++Programming

Ref-qualified overloads – real-world example

Intro This article is the first one of a small mini series of C++ related articles where I will show and explain some C++ features, which might be a little uncommon in its usage at least for some (or even many?) of C++ programmers – probably because the practical usage of these features is not […]

Categories
TeaScript

Release of TeaScript 0.11.0 πŸŽ‚

TeaScript 0.11.0 was published on the 11th December in 2023 and can be downloaded for free:β˜›β˜›β˜› Download is available here. ☚☚☚ (or browse the source code of the TeaScript C++ Library on Github) TeaScript 0.11.0 is also an anniversary release, since the first public release was made one year ago. Happy Birthday TeaScript! πŸŽ‚ What […]

Categories
TeaScript

Release of TeaScript 0.10.0 🌞

TeaScript 0.10.0 was published on the 10th March in 2023 and can be downloaded now.β˜›β˜›β˜› Download is available here. ☚☚☚ (or browse the source code of the TeaScript C++ Library on Github) What is new? The 0.10.0 release is really huge. It brings a battery of new features. Each of them enables a lot of […]

Categories
TeaScript

Release of TeaScript 0.9.0 🌻

TeaScript 0.9.0 was published on 02. Feb. 2023 and is available for download now. πŸŒžβ˜›β˜›β˜› Download it here! ☚☚☚ TeaScript is availableas Host Application for Windows 10/11as Host Application for Linux (Ubuntu 22.04) πŸ”₯NEWπŸ”₯as C++ Library πŸ”₯NEWπŸ”₯ A snapshot of the TeaScript C++ Library is also available on Github. (But the download bundle here contains […]

Categories
C++Programming TeaScript

Script Language comparison for embed in C++

Intro Sometimes you need to extend your C++ Application dynamically during runtime with something what is not known at compile time yet. For easy things you can provide config files which may be changed prior before the application is started. The Application reads the config files on startup and use the contained settings accordingly. But […]