Releases: marcuwynu23/Auto
Releases · marcuwynu23/Auto
v2.0.1
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
v2.0.0
Full Changelog: v1.0.0...v2.0.0
v2.0.0 Changes:
-
Block Structure Introduced: Implemented a block-based structure in the script parsing system. Commands are now grouped under specific blocks for better organization and easier management.
- Each block is processed individually based on the defined block name, enabling more modular execution of tasks.
-
Improved Command Handling:
- Minimized and background execution options are provided for certain commands.
-
File Handling Enhancements:
- The script now checks if the specified block exists in the provided file before attempting to execute any commands.
- Added support to read from
.autofile
by default if no file is provided.
-
Bug Fixes:
- Fixed issues related to handling command strings with spaces and special characters.
- Improved error handling when a block is not found or when invalid commands are detected in the file.
-
New Features:
- The script now accepts a
-f
flag to specify a custom file, and defaults to.autofile
if no file is provided. - Enhanced user experience by automatically selecting the
.autofile
script when no file argument is provided.
- The script now accepts a
v1.0.0
Full Changelog: v0.1.2...v1.0.0
v0.3.0
Merge branch 'main' of github.com:marcuwynu23/AutoCLI
auto-v0.2.0
Update README.md
v1.0.0
Added: Comment Handler Feature
Full Changelog: v1.0.0...v0.1.2
MSI Windows Installer
MSI Windows Installer and automatic setup environment variable path
Initial Released
Initial Released