Termux34
2.7 MB
NexLang - V1.23 Unreleased (Termux / Linux)
- some unstable improvements
Nex Playground Engine - V1.34
Termux build - V1.05
to run NexLang compiler do this steps:
1) download compiler file
2) in termux move to directory where you saved this file
3) run these commands:
(to allow file execution)
(to execute)
4) you now can enter any commands you what!
5) to restart compiler just use
In case it saying "Permission denied" in directories lower. Example:
if you are here: /data/data/com.termux/files/home/storage/shared/...
move it here /data/data/com.termux/files/home
using
- some unstable improvements
Nex Playground Engine - V1.34
Termux build - V1.05
to run NexLang compiler do this steps:
1) download compiler file
2) in termux move to directory where you saved this file
3) run these commands:
(to allow file execution)
chmod +x Termux34
(to execute)
./Termux34
4) you now can enter any commands you what!
5) to restart compiler just use
./Termux34
In case it saying "Permission denied" in directories lower. Example:
if you are here: /data/data/com.termux/files/home/storage/shared/...
move it here /data/data/com.termux/files/home
using
mv Termux34 ~π2β€1π1π1π‘1
UI.exe
44.7 MB
NexLang - v1.37 Beta
- functions
- - example:
- line
- - execute line from code, example:
- part
- - parts concept, with part name and masks
- huge bug fixes
Nex Playground Terminal - v1.50
- highlight modifications
-
- stability improvements
- functions
- - example:
function name (int input, str input2; float output, int output2) {
return(output): ...;
return(output2): ...;
}
out: name(1, "q"); // [here list of outputs] - line
- - execute line from code, example:
line(5)- part
- - parts concept, with part name and masks
- huge bug fixes
Nex Playground Terminal - v1.50
- highlight modifications
-
about added- stability improvements
Example of a function for drawing a star with a fixed size from the variable
function draw_star (int size) {
if (size < 1) {
out: "Size must be at least 1!";
return;
}
// Top part
for (int i = 1; i <= size; i++) {
int spaces = size - i;
int stars = i * 2 - 1;
out: " " * spaces + "*" * stars;
}
// Low part
for (int i = size - 1; i >= 1; i--) {
int spaces = size - i;
int stars = i * 2 - 1;
out: " " * spaces + "*" * stars;
}
}
int star_size = 10; // Star size
out: "\nstar with size: ", star_size, "\n";
draw_star(star_size);image_2025-01-24_00-32-11.png
214.3 KB
Started working on modules (functions) for NexLang. Now you can try demo prototype in modules playground (windows only).
This modules will be:
1) inputted into the NexLang for NexCraft
2) used to give access gpt to pc and make possible execute specific hard tasks for you
Btw, test out the scroll action on some site or app, this may really surprize you
This modules will be:
1) inputted into the NexLang for NexCraft
2) used to give access gpt to pc and make possible execute specific hard tasks for you
Btw, test out the scroll action on some site or app, this may really surprize you
π₯1
LibsCollection.exe
25.8 MB
Modules Collections - version 2b, probably the last one for modules collection
New modules:
- music.play()
- music.stop()
- music.next()
- music.previous()
- file.open(path.ext) <- can be used to open apps, too
Short commands:
e | exit - to exit
v | about - about program
h | help - all modules
Btw, asap, gonna start adding these functions into NexLang
New modules:
- music.play()
- music.stop()
- music.next()
- music.previous()
- file.open(path.ext) <- can be used to open apps, too
Short commands:
e | exit - to exit
v | about - about program
h | help - all modules
Btw, asap, gonna start adding these functions into NexLang
doc22.md
6.5 KB
NexLang - v2.00 documentation
The Nex Terminal with NexLang 2.00 will be dropped tomorrow
The Nex Terminal with NexLang 2.00 will be dropped tomorrow
In the next 24 hours, will be dropped 2 versions:
1) NexLang 2.00 Beta
The second version of NexLang with time, mouse, keyboard, audio, and file modules; variable converting, stable functions, and much more. The 2.00 can be a preview for the integration of coding and interaction with real pc/laptop altogether.
2) NexLang 2.00 Unstable
Experimental version with high crash protection. It will crash only if you will overload it like any other app, but not because of a bug. As this version was never tested, it may break some functions and not work properly
1) NexLang 2.00 Beta
The second version of NexLang with time, mouse, keyboard, audio, and file modules; variable converting, stable functions, and much more. The 2.00 can be a preview for the integration of coding and interaction with real pc/laptop altogether.
2) NexLang 2.00 Unstable
Experimental version with high crash protection. It will crash only if you will overload it like any other app, but not because of a bug. As this version was never tested, it may break some functions and not work properly
π₯2
TerminalUI.exe
54.5 MB
NexLang - v2.00 Beta
- New modules:
- -
- -
- -
- -
- -
- Variable conversion: easily switch between data types
- Added opportunity to add new functions directly from C++ (unavailable through the terminal)
- Not operator
- Stability:
- - functions crashes fixed
- - more stable recursion
- - variable typing fixed
- - parts crashes fixed
- - short form of division now working
- - lots of small improvements
To find all new features and abilities use documentation above
Nex Terminal Playground - v1.69
- variables types highlighting breaks
- new engine - NexLang 2.00
- bugs fixes & stability improvements
Stay tuned for more! π
- New modules:
- -
time for working with time- -
mouse for mouse control - -
keyboard for keyboard interaction - -
music for audio management- -
file for opening and renaming files- Variable conversion: easily switch between data types
- Added opportunity to add new functions directly from C++ (unavailable through the terminal)
- Not operator
! added- Stability:
- - functions crashes fixed
- - more stable recursion
- - variable typing fixed
- - parts crashes fixed
- - short form of division now working
- - lots of small improvements
To find all new features and abilities use documentation above
Nex Terminal Playground - v1.69
- variables types highlighting breaks
- new engine - NexLang 2.00
- bugs fixes & stability improvements
Stay tuned for more! π
π2
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)
- 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
What would you like to see more as update for Nex Craft
Final Results
50%
New modules for NexLang
50%
UI for nexes creation
0%
App global UI
0%
More NexLang mechanics
50%
Ability to run scripts in a the files
50%
NexMap UI
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
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
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
β 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
- 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 .
- npt version 1.82
documentation will be updated soon. Also started work on ui
- 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
- 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
- modules added
- crossfile run now available
- bug fixes
- npt version 1.82-90
! laptop modules temporary unavailable
π₯1