Skip to content

Releases: rayanlevert/command-line-interface

v3.0.4

01 Jul 08:57
97f0c0b
Compare
Choose a tag to compare

.gitattributes : fix missing 'export-ignore'

v2.3.3

01 Jul 08:56
Compare
Choose a tag to compare

.gitattributes : fix missing 'export-ignore'

v3.0.3

06 Jun 13:46
6824cac
Compare
Choose a tag to compare

.gitattributes : fix certain names of files and directories

v3.0.2

06 Jun 13:36
40037b1
Compare
Choose a tag to compare

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

v2.3.2

06 Jun 13:45
Compare
Choose a tag to compare

.gitattributes : fix certain names of files and directories

v2.3.1

06 Jun 13:35
Compare
Choose a tag to compare

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

v3.0.1

04 Apr 05:05
Compare
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
Compare
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
Compare
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.

v2.3.0

27 Sep 04:39
Compare
Choose a tag to compare

Modified

  • Extension mbstring is not needed anymore
  • Functions substr and strpos are called if the extension is not installed, else their mb_ versions are used