DoubleD Software β€” Official TG Channel
24 subscribers
8 photos
1 video
46 files
5 links
https://clynet.ru/
https://nexelang.pro/terminal/

This is an official DoubleDProd Software channel where I (Don Demon) will post news about updates of my soft like Invisible Encryption, NexeLang aka NXE, and much more. Feel free to join! πŸ’«
Download Telegram
UI.exe
54.5 MB
Experimental / Unstable version of NexLang 2.00 / NTP 1.70U
- all features of NexLang 2.00 beta
- Version has high protection from crashes
- Some unstable features was added to test if this will work fine with stable features
- relevant documentation - docs22 (above)
πŸ”₯1
DoubleD Software β€” Official TG Channel
doc22.md
Documentation for 2.00 beta now available on the site

request it or open to get the file

https://leadgensoftware.site/api/nex/docs/2-00-beta
πŸ”₯1
image_2025-01-31_19-28-58.png
17 KB
NexLang Editor Prototype

Will be available as the part of subscription. Work on UI mode and Nex Map will be started soon
Approximate rollout plan for Nex Craft:

βœ“ NexLang Engine
January 2025 - February 2025 β€”
Language for the app to be able to work with different modules and give the ability to run different scripts

βœ“ Terminal
January 2025 β€”
Terminal for command execution and script testing. Available as a part of the free version

β€ŠΒ± Editor
February 2025 β€”
Comfortable IDE for working on huge projects. Includes highlighting, auto correction. Part of the pro version

β€Šΰ«¦ UI (like in macrodroid)
Spring 2025 β€”
Part of the app for creating and editing nexes. As the user finishes the editing, it will be converted to NexLang for faster working. Working on this macro can still be continued later in UI mode. More likely, it will be in a free version

β€Šΰ«¦ AI introduction
Spring 2025 β€”
AI that can create macros and scrips instead of you by only 1 sentence. Pro version only

β€Šΰ«¦ First beta release
Summer 2025 β€”
Most likely only as a free version

β€Šΰ«¦ Map UI
Summer 2025 β€”
Map with the possibility of working with triggers and actions there. Most likely, the pro version only

β€Šΰ«¦ Recorder UI
Fall 2025 β€”
Recorder that can record your actions and convert it to ui or script later. Pro version

β€Šΰ«¦ Global release
Winter 2025 - 2026 β€”
First global release of the free and pro versions


* All of the released features above will be improving even if global work on them already finished
DoubleD Software β€” Official TG Channel pinned Β«Approximate rollout plan for Nex Craft: βœ“ NexLang Engine January 2025 - February 2025 β€” Language for the app to be able to work with different modules and give the ability to run different scripts βœ“ Terminal January 2025 β€” Terminal for command execution…»
UI.exe
54.5 MB
NexLang - v2.04 Beta
- c-style for loop fixed
- line crash fixed
- some other fixes
- npt version 1.73
UI.exe
54.4 MB
NexLang - v2.10 beta
- fixed bug with copying variables
- fixed bug with strange list behavior while assigning
- fixed bug multi-return function
- fixed void bug
- added ability to delete elements from list with operator -
- added ability to get count of elements in list with operator /
- added ability to increase lists by repeating elements inside of list with operator *
- now functions can be used as methods with .
smth.func(arg2, arg3...)
- npt version 1.82

documentation will be updated soon. Also started work on ui
UI.exe
56.1 MB
NexLang - v2.14 Beta
- classes added
- bug fixes
- npt version 1.82-40
UI.exe
60.4 MB
NexLang - v2.18 Beta
- modules added
- crossfile run now available
- bug fixes
- npt version 1.82-90

! laptop modules temporary unavailable
πŸ”₯1
Due to some problems with time, the rollout plan and future releases will be delayed
image_2025-06-01_16-59-23.png
46.9 KB
Hello there, I'm with some good news

A few things from new versions:
+ ide directives added (you can resize app window from ide)
+ map type added
+ row type added and optimized for "for" operator. for (1'9 -> i) {...}

plan:
+ add map
- add custom types
- optimize custom types for libs
- add lib with triggers
image_2025-06-16_01-39-42.png
1.3 MB
Version 3.0 (probably with triggers) gonna be dropped this month!

what's new:
+ new documentation
+ triggers
+ custom variables
+ more stable libraries (for working with volume, mouse, keyboard, etc)
+ variable types
+ loc / eloc file system
+ ide directives
+ new style
and much more
Due to copyright issues (I found a few other languages with the same name), NexLang will now get an additional "e" and become NexeLang.
The name NexeLang can be interpreted as: New Executable Language. "exe" since it will get it first compiler inside of .exe files.
The file extension is still undefined, but here are a few options being considered:
Keep it as it is – .nex
Change it to .nxl or .nx
Or use .nel

By the way, GitHub and other repositories will be created soon.
Clynet is currently having issues, but it will be available shortly
Channel name was changed to Β«LeaGen Software β€” Official TG ChannelΒ»
image_2025-07-16_02-40-29.png
1.7 MB
Useful Scripts

This code will automatically include all the libraries located in the same directory as the program. You can create a file named prenx.ide in the same directory and insert this code there so that it runs every time before the program starts.

! Requires String.dll library:
https://github.com/don-demon/NexeLang/blob/main/Extensions/Strings.dll

! Requires version 918 or later:
https://github.com/don-demon/NexeLang/blob/main/Software/V3/918/NexeLang%20Terminal.exe
Useful Scripts

Password generator

! Requires rnd.dll library
! Requires version 10.07.00 or later

include: "rnd";

str passwd;
repeat (8) {
    passwd += rnd::gen("a" ' "z" + "A" ' "Z" + "0" ' "9");
}
out: "Password: ", passwd;
🀯1