v2.0.1 - Patch Release
Added:
- Introduced special handling for blocks that start with a dot (
.
) in the script.- Blocks starting with a dot will always execute, regardless of other conditions.
- This feature ensures that commands within dot-prefixed blocks are always processed and executed.
Example:
::ASYNC
.init{
+ echo "Hello"
}
dev {
+ echo Hello World > test.txt && cat test.txt
}
dev2 {
+ echo Hello World1 > test1.txt && cat test1.txt
}
.test {
+ echo "Hello test"
}
In this example, .init and .test blocks will always be executed.
## Fixed:
Improved handling of block definitions to ensure correct processing of commands.
**Full Changelog**: https://github.com/marcuwynu23/Auto/compare/v2.0.0...v2.0.1