Skip to content

Releases: rayanlevert/command-line-interface

v3.0.5

20 Dec 05:59
ec9e451

Choose a tag to compare

Merge request related #33

Removing phpcs from dev package

v3.0.4

01 Jul 08:57
97f0c0b

Choose a tag to compare

.gitattributes : fix missing 'export-ignore'

v2.3.3

01 Jul 08:56

Choose a tag to compare

.gitattributes : fix missing 'export-ignore'

v3.0.3

06 Jun 13:46
6824cac

Choose a tag to compare

.gitattributes : fix certain names of files and directories

v3.0.2

06 Jun 13:36
40037b1

Choose a tag to compare

.gitattributes : adding all files and directories to exclude when installing the library

v2.3.2

06 Jun 13:45

Choose a tag to compare

.gitattributes : fix certain names of files and directories

v2.3.1

06 Jun 13:35

Choose a tag to compare

.gitattributes : adding all files and directories to exclude when installing the library

v3.0.1

04 Apr 05:05

Choose a tag to compare

I've added functionality to properly handle percentage signs in the ProgressBar class's property title.

This enhancement ensures that when a title contains percentage signs, they are correctly escaped to prevent issues with the sprintf function.

Modified

  • #26 : Modified the advance() method in ProgressBar.php:
    • Added code to escape percentage signs in the title before using it in sprintf
      • Used str_replace('%', '%%', $this->title) to double all percentage signs

v2.2.1

04 Apr 05:18
78dd2ab

Choose a tag to compare

I've added functionality to properly handle percentage signs in the ProgressBar class's property title.

This enhancement ensures that when a title contains percentage signs, they are correctly escaped to prevent issues with the sprintf function.

Modified

  • #26 : Modified the advance() method in ProgressBar.php:
    • Added code to escape percentage signs in the title before using it in sprintf
      • Used str_replace('%', '%%', $this->title) to double all percentage signs

v3.0.0

01 Jan 19:57

Choose a tag to compare

Adding php8.4 as required and all brand new features

For php8.1, 8.2 and 8.3 users, version 2.x is still maintained, please keep using this version.