summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2018-01-29 11:48:49 +0100
committerYorhel <git@yorhel.nl>2018-01-29 11:58:14 +0100
commit14afd92ba25b4b3d4164ab6845dc49beb3f20b9b (patch)
treee242dc6bf920df03bce2a43911a39ff88ad75a23
parent7ba0f15f807e40e4113acbf8df0d80f3bd7f5812 (diff)
Year + version bump for 1.13v1.13
-rw-r--r--COPYING2
-rw-r--r--ChangeLog9
-rw-r--r--README6
-rw-r--r--configure.ac2
-rw-r--r--src/browser.c2
-rw-r--r--src/browser.h2
-rw-r--r--src/delete.c2
-rw-r--r--src/delete.h2
-rw-r--r--src/dir.h2
-rw-r--r--src/dir_common.c2
-rw-r--r--src/dir_export.c2
-rw-r--r--src/dir_import.c2
-rw-r--r--src/dir_mem.c2
-rw-r--r--src/dir_scan.c2
-rw-r--r--src/dirlist.c2
-rw-r--r--src/dirlist.h2
-rw-r--r--src/exclude.c2
-rw-r--r--src/exclude.h2
-rw-r--r--src/global.h2
-rw-r--r--src/help.c2
-rw-r--r--src/help.h2
-rw-r--r--src/main.c2
-rw-r--r--src/path.c2
-rw-r--r--src/path.h2
-rw-r--r--src/quit.c2
-rw-r--r--src/quit.h2
-rw-r--r--src/shell.c2
-rw-r--r--src/shell.h2
-rw-r--r--src/util.c2
-rw-r--r--src/util.h2
30 files changed, 40 insertions, 31 deletions
diff --git a/COPYING b/COPYING
index 914db91..8b75d49 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2007-2016 Yoran Heling
+Copyright (c) 2007-2018 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 7db6875..3a80774 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1.13 - 2018-01-29
+ - Add "extended information" mode and -e flag
+ - Add file mode, modification time and uid/gid to info window with -e
+ - Add experimental color support and --color flag
+ - Add -rr option to disable shell spawning
+ - Remove directory nesting limit on file import
+ - Fix handling of interrupts during file import
+ - Fix undefined behavior that triggered crash on OS X
+
1.12 - 2016-08-24
- Add NCDU_SHELL environment variable
- Add --confirm-quit flag
diff --git a/README b/README
index ec5c232..b4219c9 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-ncdu 1.12g
-==========
+ncdu 1.13
+=========
DESCRIPTION
@@ -33,7 +33,7 @@ INSTALL
COPYING
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 5086f92..7586da7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT(ncdu, 1.12g, projects@yorhel.nl)
+AC_INIT(ncdu, 1.13, 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 d9a7d5e..2ca739d 100644
--- a/src/browser.c
+++ b/src/browser.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 1f4e35e..eb7f8df 100644
--- a/src/browser.h
+++ b/src/browser.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 4fc4d13..82e5e99 100644
--- a/src/delete.c
+++ b/src/delete.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 162ad03..822cdd7 100644
--- a/src/delete.h
+++ b/src/delete.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 956ae4c..3be4a1c 100644
--- a/src/dir.h
+++ b/src/dir.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 031433e..5eb2a20 100644
--- a/src/dir_common.c
+++ b/src/dir_common.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 eadccf7..d50f61e 100644
--- a/src/dir_export.c
+++ b/src/dir_export.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 31e9613..a9d1b22 100644
--- a/src/dir_import.c
+++ b/src/dir_import.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 f3bb2fd..6930b2b 100644
--- a/src/dir_mem.c
+++ b/src/dir_mem.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 4b7b174..2b0f85e 100644
--- a/src/dir_scan.c
+++ b/src/dir_scan.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 65c97d5..5cfe52a 100644
--- a/src/dirlist.c
+++ b/src/dirlist.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 94805be..6e19e4f 100644
--- a/src/dirlist.h
+++ b/src/dirlist.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 d75ba0b..173cc72 100644
--- a/src/exclude.c
+++ b/src/exclude.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 fde71fe..86134d7 100644
--- a/src/exclude.h
+++ b/src/exclude.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 92b6eb7..33865ea 100644
--- a/src/global.h
+++ b/src/global.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 2876274..ab6697a 100644
--- a/src/help.c
+++ b/src/help.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 8415f6e..42eec72 100644
--- a/src/help.h
+++ b/src/help.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 9edf486..bfc5233 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 1fa4f88..824d644 100644
--- a/src/path.c
+++ b/src/path.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 1b1a731..74dbc12 100644
--- a/src/path.h
+++ b/src/path.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 2738d17..fba021e 100644
--- a/src/quit.c
+++ b/src/quit.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2015-2016 Yoran Heling
+ Copyright (c) 2015-2018 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 29706fd..375f825 100644
--- a/src/quit.h
+++ b/src/quit.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2015-2016 Yoran Heling
+ Copyright (c) 2015-2018 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 287fe67..360ac75 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 6c8419a..cb33bde 100644
--- a/src/shell.h
+++ b/src/shell.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 fbf6e9d..5f3dbd3 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 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 5ac47cc..0af8e77 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,6 +1,6 @@
/* ncdu - NCurses Disk Usage
- Copyright (c) 2007-2016 Yoran Heling
+ Copyright (c) 2007-2018 Yoran Heling
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the