Skip to content

Releases: marcuwynu23/Auto

v2.0.1

21 Dec 13:39
Compare
Choose a tag to compare

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

21 Dec 13:21
a3e733f
Compare
Choose a tag to compare

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.

v1.0.0

21 Apr 03:32
Compare
Choose a tag to compare

Full Changelog: v0.1.2...v1.0.0

v0.3.0

06 Mar 04:06
Compare
Choose a tag to compare
Merge branch 'main' of github.com:marcuwynu23/AutoCLI

auto-v0.2.0

01 Mar 01:34
52071df
Compare
Choose a tag to compare
Update README.md

v1.0.0

21 Apr 03:24
Compare
Choose a tag to compare

Added: Comment Handler Feature

Full Changelog: v1.0.0...v0.1.2

MSI Windows Installer

09 Jul 14:00
e394e47
Compare
Choose a tag to compare
MSI Windows Installer Pre-release
Pre-release

MSI Windows Installer and automatic setup environment variable path

Initial Released

24 May 07:14
e394e47
Compare
Choose a tag to compare
Initial Released Pre-release
Pre-release

Initial Released