From d9e6cb4930cf53843575db71002fb59866aca1b1 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 15 Apr 2019 10:41:57 -0400 Subject: Release 1.4 --- Makefile | 2 +- RELEASES.md | 14 ++++++++++++++ bfs.h | 2 +- bftw.c | 2 +- eval.c | 2 +- mtab.c | 2 +- mtab.h | 2 +- opt.c | 2 +- printf.c | 2 +- stat.c | 2 +- 10 files changed, 23 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index db41067..a9859a4 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.3.3 +VERSION := 1.4 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 5749fab..982bd5b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,20 @@ === +1.4 +--- + +**April 15, 2019** + +- New `-unique` option that filters out duplicate files (https://github.com/tavianator/bfs/issues/40) +- Optimized the file coloring implementation +- Fixed the coloring implementation to match GNU ls more closely in many corner cases + - Implemented escape sequence parsing for `LS_COLORS` + - Implemented `ln=target` for coloring links like their targets + - Fixed the order of fallbacks used when some color keys are unset +- Add a workaround for incorrect file types for bind-mounted files on Linux (https://github.com/tavianator/bfs/issues/37) + + 1.3.3 ----- diff --git a/bfs.h b/bfs.h index cc24e51..d96600c 100644 --- a/bfs.h +++ b/bfs.h @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.3.3" +# define BFS_VERSION "1.4" #endif #ifndef BFS_HOMEPAGE diff --git a/bftw.c b/bftw.c index 4f94a55..106bd41 100644 --- a/bftw.c +++ b/bftw.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2018 Tavian Barnes * + * Copyright (C) 2015-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/eval.c b/eval.c index 341b289..283b778 100644 --- a/eval.c +++ b/eval.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2018 Tavian Barnes * + * Copyright (C) 2015-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/mtab.c b/mtab.c index 50de0c7..ed80030 100644 --- a/mtab.c +++ b/mtab.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017-2018 Tavian Barnes * + * Copyright (C) 2017-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/mtab.h b/mtab.h index a80deb2..a12fbaa 100644 --- a/mtab.h +++ b/mtab.h @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017-2018 Tavian Barnes * + * Copyright (C) 2017-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/opt.c b/opt.c index 1ece9be..019a136 100644 --- a/opt.c +++ b/opt.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017-2018 Tavian Barnes * + * Copyright (C) 2017-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/printf.c b/printf.c index 164717c..0b4b0c8 100644 --- a/printf.c +++ b/printf.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017-2018 Tavian Barnes * + * Copyright (C) 2017-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * diff --git a/stat.c b/stat.c index d94ddb0..14a4f8e 100644 --- a/stat.c +++ b/stat.c @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2018 Tavian Barnes * + * Copyright (C) 2018-2019 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * -- cgit v1.2.3