From 6dc0cb145732fbdc026ca2abb09b6a957f509b24 Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Fri, 19 Jul 2024 14:20:00 +0400 Subject: [PATCH] chore: cleanup; add logo draft --- .gitattributes | 1 + README.md | 9 +++++++-- box.json.dist | 2 +- resources/logo.svg | 26 ++++++++++++++++++++++++++ src/Command/Get.php | 1 - 5 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 resources/logo.svg diff --git a/.gitattributes b/.gitattributes index ffc41f0..56f46df 100644 --- a/.gitattributes +++ b/.gitattributes @@ -17,6 +17,7 @@ psalm.* export-ignore psalm-baseline.xml export-ignore infection.* export-ignore codecov.* export-ignore +resources/mock export-ignore *.http binary *.gpg binary diff --git a/README.md b/README.md index ff0b802..39a4e72 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ -

DLoad

-

Simplify any binaries downloading

+
+ +![DLoad](./resources/logo.svg) + +
+ +

Download artifacts easily

diff --git a/box.json.dist b/box.json.dist index 276f610..7e28511 100644 --- a/box.json.dist +++ b/box.json.dist @@ -7,11 +7,11 @@ "compression": "GZ", "git": "git", "directories": [ - "resources", "src", "vendor" ], "files": [ + "resources/version.json", "bin/dload", "LICENSE.md", "composer.json", diff --git a/resources/logo.svg b/resources/logo.svg new file mode 100644 index 0000000..47a8cc5 --- /dev/null +++ b/resources/logo.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Command/Get.php b/src/Command/Get.php index fc4689d..adc7641 100644 --- a/src/Command/Get.php +++ b/src/Command/Get.php @@ -40,7 +40,6 @@ public function configure(): void { $this->addArgument('binary', InputArgument::REQUIRED, 'Binary name, e.g. "rr", "dolt", "temporal" etc.'); $this->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to store the binary, e.g. "./bin"', "."); - $this->addOption('rename', null, InputOption::VALUE_OPTIONAL, 'Rename the binary, e.g. "rr"'); $this->addOption('arch', null, InputOption::VALUE_OPTIONAL, 'Architecture, e.g. "amd64", "arm64" etc.'); $this->addOption('os', null, InputOption::VALUE_OPTIONAL, 'Operating system, e.g. "linux", "darwin" etc.'); $this->addOption('stability', null, InputOption::VALUE_OPTIONAL, 'Stability, e.g. "stable", "beta" etc.');