diff --git a/COPYING b/COPYING index e99f00f..09a50d1 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2007-2019 Yoran Heling +Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/ChangeLog b/ChangeLog index d81e7c7..c47c52e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1.14.2 - 2020-02-10 + - Fix compilation with GCC 10 (-fno-common) + - Fix minor display issue when scanning 10M+ files + - Slightly reduce memory usage for hard link detection + 1.14.1 - 2019-08-05 - Fix occasional early exit on OS X - Fix --exclude-caches diff --git a/README b/README index 9385f8a..ce6dd48 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -ncdu 1.14.1 +ncdu 1.14.2 =========== DESCRIPTION @@ -33,7 +33,7 @@ INSTALL COPYING - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/configure.ac b/configure.ac index d6b98ce..a648f04 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_INIT(ncdu, 1.14.1, projects@yorhel.nl) +AC_INIT(ncdu, 1.14.2, projects@yorhel.nl) AC_CONFIG_SRCDIR([src/global.h]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/src/browser.c b/src/browser.c index 2cba8e7..6a4ce1a 100644 --- a/src/browser.c +++ b/src/browser.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/browser.h b/src/browser.h index e748cd2..9f1579c 100644 --- a/src/browser.h +++ b/src/browser.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/delete.c b/src/delete.c index 95d25e2..66cdd8e 100644 --- a/src/delete.c +++ b/src/delete.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/delete.h b/src/delete.h index 4b7a9cc..6abb431 100644 --- a/src/delete.h +++ b/src/delete.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir.h b/src/dir.h index 3221c45..83f9dff 100644 --- a/src/dir.h +++ b/src/dir.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir_common.c b/src/dir_common.c index 284a981..ee8157f 100644 --- a/src/dir_common.c +++ b/src/dir_common.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir_export.c b/src/dir_export.c index b0e7b15..56e4155 100644 --- a/src/dir_export.c +++ b/src/dir_export.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir_import.c b/src/dir_import.c index 01b987d..c216cde 100644 --- a/src/dir_import.c +++ b/src/dir_import.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir_mem.c b/src/dir_mem.c index bffcdd0..6854683 100644 --- a/src/dir_mem.c +++ b/src/dir_mem.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dir_scan.c b/src/dir_scan.c index 9271c5a..f071646 100644 --- a/src/dir_scan.c +++ b/src/dir_scan.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dirlist.c b/src/dirlist.c index 86cf4fe..7234346 100644 --- a/src/dirlist.c +++ b/src/dirlist.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/dirlist.h b/src/dirlist.h index c4ebf2b..e833b01 100644 --- a/src/dirlist.h +++ b/src/dirlist.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/exclude.c b/src/exclude.c index 460543a..266d19e 100644 --- a/src/exclude.c +++ b/src/exclude.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/exclude.h b/src/exclude.h index 7d95dda..e577541 100644 --- a/src/exclude.h +++ b/src/exclude.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/global.h b/src/global.h index b544ea7..cc48144 100644 --- a/src/global.h +++ b/src/global.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/help.c b/src/help.c index 56be261..b41d7bd 100644 --- a/src/help.c +++ b/src/help.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/help.h b/src/help.h index 905b7fe..867a8ba 100644 --- a/src/help.h +++ b/src/help.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/main.c b/src/main.c index 982e337..4f12e63 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/path.c b/src/path.c index 0a5f637..8ccdfa9 100644 --- a/src/path.c +++ b/src/path.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/path.h b/src/path.h index e9d91cc..b7ee6d8 100644 --- a/src/path.h +++ b/src/path.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/quit.c b/src/quit.c index 1fac223..154e319 100644 --- a/src/quit.c +++ b/src/quit.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2015-2019 Yoran Heling + Copyright (c) 2015-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/quit.h b/src/quit.h index 1930a82..6c50d5e 100644 --- a/src/quit.h +++ b/src/quit.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2015-2019 Yoran Heling + Copyright (c) 2015-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/shell.c b/src/shell.c index 6c74f57..75c28dc 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Shell support: Copyright (c) 2014 Thomas Jarosch Permission is hereby granted, free of charge, to any person obtaining diff --git a/src/shell.h b/src/shell.h index 7965a88..bd71776 100644 --- a/src/shell.h +++ b/src/shell.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Shell support: Copyright (c) 2014 Thomas Jarosch Permission is hereby granted, free of charge, to any person obtaining diff --git a/src/util.c b/src/util.c index c62e9bd..911dd87 100644 --- a/src/util.c +++ b/src/util.c @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/src/util.h b/src/util.h index f3c6925..8ffe2b0 100644 --- a/src/util.h +++ b/src/util.h @@ -1,6 +1,6 @@ /* ncdu - NCurses Disk Usage - Copyright (c) 2007-2019 Yoran Heling + Copyright (c) 2007-2020 Yoran Heling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the