瀏覽代碼

Merge pull request #3 from thekbb/rename-gay-filter-to-rainbow

Change name of gay filter to rainbow.
pull/1/merge
Sam Hocevar 9 年之前
父節點
當前提交
2c99c8ef1b
共有 3 個文件被更改,包括 14 次插入10 次删除
  1. +4
    -4
      doc/toilet.1.in
  2. +3
    -3
      src/filter.c
  3. +7
    -3
      src/main.c

+ 4
- 4
doc/toilet.1.in 查看文件

@@ -93,17 +93,17 @@ Set the output width to the terminal width.
.TP
.B \-F, \-\-filter list
.TP
.B \-\-gay, \-\-metal
.B \-\-rainbow, \-\-metal
.PD
Specify a list of filters to be applied to the output.
.I <filters>
is a colon-separated list of filters such as
.I crop:rotate:gay
.I crop:rotate:rainbow
and the special argument
.I list
outputs a list of available filters.

.B \-\-gay
.B \-\-rainbow
and
.B \-\-metal
are shortcuts to commonly used filters that are guaranteed to exist. Several
@@ -153,7 +153,7 @@ toilet Hello World

toilet Hello | toilet

tail -f /var/log/messages | toilet -f term --gay
tail -f /var/log/messages | toilet -f term --rainbow
.RI
.SH BUGS
.B FIGlet


+ 3
- 3
src/filter.c 查看文件

@@ -28,7 +28,7 @@
#include "filter.h"

static void filter_crop(context_t *);
static void filter_gay(context_t *);
static void filter_rainbow(context_t *);
static void filter_metal(context_t *);
static void filter_flip(context_t *);
static void filter_flop(context_t *);
@@ -46,7 +46,7 @@ struct
const lookup[] =
{
{ "crop", filter_crop, "crop unused blanks" },
{ "gay", filter_gay, "add a rainbow colour effect" },
{ "rainbow", filter_rainbow, "add a rainbow colour effect" },
{ "metal", filter_metal, "add a metallic colour effect" },
{ "flip", filter_flip, "flip horizontally" },
{ "flop", filter_flop, "flip vertically" },
@@ -185,7 +185,7 @@ static void filter_metal(context_t *cx)
}
}

static void filter_gay(context_t *cx)
static void filter_rainbow(context_t *cx)
{
static unsigned char const rainbow[] =
{


+ 7
- 3
src/main.c 查看文件

@@ -67,6 +67,7 @@ int main(int argc, char *argv[])
{ "filter", 1, NULL, 'F' },
{ "gay", 0, NULL, 130 },
{ "metal", 0, NULL, 131 },
{ "rainbow", 0, NULL, 132 },
{ "export", 1, NULL, 'E' },
{ "irc", 0, NULL, 140 },
{ "html", 0, NULL, 141 },
@@ -104,12 +105,15 @@ int main(int argc, char *argv[])
if(filter_add(cx, caca_optarg) < 0)
return -1;
break;
case 130: /* --gay */
filter_add(cx, "gay");
case 130: /* --gay (alias to rainbow)*/
filter_add(cx, "rainbow");
break;
case 131: /* --metal */
filter_add(cx, "metal");
break;
case 132: /* --rainbow */
filter_add(cx, "rainbow");
break;
case 'w': /* --width */
cx->term_width = atoi(caca_optarg);
break;
@@ -213,7 +217,7 @@ int main(int argc, char *argv[])
" -t, --termwidth adapt to terminal's width\n" \
" -F, --filter <filters> apply one or several filters to the text\n" \
" -F, --filter list list available filters\n" \
" --gay rainbow filter (same as -F gay)\n" \
" --rainbow rainbow filter (same as -F rainbow)\n" \
" --metal metal filter (same as -F metal)\n" \
" -E, --export <format> select export format\n" \
" -E, --export list list available export formats\n" \


Loading…
取消
儲存