2019-03-28 21:57:56 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
|
|
|
<metadata>
|
|
|
|
<id>boxes.portable</id>
|
|
|
|
<title>boxes (Portable)</title>
|
2024-10-03 10:47:35 +02:00
|
|
|
<version>2.3.1</version>
|
2023-03-26 21:32:08 +02:00
|
|
|
<authors>Thomas Jensen and the boxes contributors</authors>
|
2019-03-28 21:57:56 +01:00
|
|
|
<summary>Command Line ASCII Boxes Unlimited!</summary>
|
|
|
|
<description><![CDATA[*Boxes* is a command line program that draws a box around its input text. It can remove
|
|
|
|
and repair those boxes, too. You can easily make your own box designs if you wish, but many designs are
|
2023-12-31 14:23:40 +01:00
|
|
|
already provided. *Boxes* integrates well with text editors and IDEs as a general text filter.
|
2019-03-28 21:57:56 +01:00
|
|
|
|
|
|
|
*Boxes* is a portable application (hence the `.portable` suffix in the choco package ID). It is installed into
|
2019-04-05 15:46:48 +02:00
|
|
|
the package directory `%ChocolateyInstall%\lib\boxes.portable`. Chocolatey makes *boxes* available to you on the `PATH`
|
2019-03-28 21:57:56 +01:00
|
|
|
via its `%ChocolateyInstall%\bin` directory. This is the only official *boxes* choco package.
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
After *boxes* is installed, try calling it like this:
|
|
|
|
|
|
|
|
`C:\>echo Hello World | boxes`
|
|
|
|
```
|
|
|
|
/***************/
|
|
|
|
/* Hello World */
|
|
|
|
/***************/
|
|
|
|
```
|
|
|
|
|
|
|
|
or like this:
|
|
|
|
|
|
|
|
`C:\>echo Hello World! | boxes -d unicornsay`
|
|
|
|
```
|
|
|
|
_______________
|
|
|
|
/ \
|
|
|
|
| Hello World! |
|
|
|
|
\_________ __'\
|
|
|
|
|/ \\
|
|
|
|
\ \\ .
|
|
|
|
|\\/|
|
|
|
|
/ " '\
|
|
|
|
. . .
|
|
|
|
/ ) |
|
|
|
|
' _.' |
|
|
|
|
'-'/ \
|
|
|
|
```
|
|
|
|
|
2021-06-16 21:08:56 +02:00
|
|
|
### Modifying boxes.cfg
|
|
|
|
|
|
|
|
At some point, you may wish to modify existing box designs or even add your own.
|
|
|
|
In that case, we recommend that you don't change the central boxes.cfg in `%ChocolateyInstall%\lib\boxes.portable\tools`
|
|
|
|
directly, because that one may get updated in subsequent releases. Instead, create a new boxes.cfg in your `%HOME%`
|
|
|
|
directory, and place a line in it saying
|
2019-03-28 21:57:56 +01:00
|
|
|
|
|
|
|
```
|
2021-06-16 21:08:56 +02:00
|
|
|
parent :global:
|
2019-03-28 21:57:56 +01:00
|
|
|
```
|
|
|
|
|
2021-06-16 21:08:56 +02:00
|
|
|
This will make it inherit the global config. You can add any new or modified designs in your new personal config.
|
2019-03-28 21:57:56 +01:00
|
|
|
|
2021-06-16 21:08:56 +02:00
|
|
|
Details on where boxes looks for configuration files can be found
|
2024-10-03 10:47:35 +02:00
|
|
|
[here](https://boxes.thomasjensen.com/v2.3.1/boxes-man-1.html#CONFIGURATION%20FILE).
|
2019-03-28 21:57:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
]]></description>
|
|
|
|
<projectUrl>https://boxes.thomasjensen.com/</projectUrl>
|
2021-06-16 21:08:56 +02:00
|
|
|
<tags>ascii ascii-art box boxes command-line cli</tags>
|
2019-03-28 21:57:56 +01:00
|
|
|
<iconUrl>https://boxes.thomasjensen.com/images/boxes-sq-256.png</iconUrl>
|
2022-09-18 14:56:30 +02:00
|
|
|
<!-- <license type="expression">GPL-3.0-only</license> -->
|
2024-10-03 10:47:35 +02:00
|
|
|
<licenseUrl>https://raw.githubusercontent.com/ascii-boxes/boxes/v2.3.1/LICENSE</licenseUrl>
|
2019-03-28 21:57:56 +01:00
|
|
|
<language>en</language>
|
|
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
2024-10-03 10:47:35 +02:00
|
|
|
<releaseNotes>https://boxes.thomasjensen.com/2024/10/boxes-v2.3.1-released.html</releaseNotes>
|
2019-03-28 21:57:56 +01:00
|
|
|
<projectSourceUrl>https://github.com/ascii-boxes/boxes</projectSourceUrl>
|
2019-03-29 12:55:24 +01:00
|
|
|
<packageSourceUrl>https://github.com/ascii-boxes/boxes/blob/master/boxes.portable.nuspec</packageSourceUrl>
|
2021-06-16 21:08:56 +02:00
|
|
|
<docsUrl>https://boxes.thomasjensen.com/</docsUrl>
|
2019-03-28 21:57:56 +01:00
|
|
|
<bugTrackerUrl>https://github.com/ascii-boxes/boxes/issues</bugTrackerUrl>
|
|
|
|
</metadata>
|
|
|
|
<files>
|
|
|
|
<file src="tools\**" target="tools" />
|
|
|
|
</files>
|
|
|
|
</package>
|