summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2016-12-30 12:53:03 +0100
committerYorhel <git@yorhel.nl>2016-12-30 12:53:03 +0100
commit51f4763095e62f4f0957f7c2bb1b6a8c5c7543b7 (patch)
treed2b066ab6b2c1f6703dfc333ea28e1b54821e90f
parent54580db35d9366cd544abd28829a63b2070454d3 (diff)
Version & date bump + Changelog update for 1.201.20
-rw-r--r--COPYING2
-rw-r--r--ChangeLog10
-rw-r--r--README4
-rw-r--r--configure.ac2
-rw-r--r--doc/gendoc.c2
-rw-r--r--src/bloom.c2
-rw-r--r--src/cc.c2
-rw-r--r--src/commands.c2
-rw-r--r--src/db.c2
-rw-r--r--src/dl.c2
-rw-r--r--src/dlfile.c2
-rw-r--r--src/doc.h2
-rw-r--r--src/fl_load.c2
-rw-r--r--src/fl_local.c2
-rw-r--r--src/fl_save.c2
-rw-r--r--src/fl_util.c2
-rw-r--r--src/geoip.c2
-rw-r--r--src/hub.c2
-rw-r--r--src/listen.c2
-rw-r--r--src/main.c2
-rw-r--r--src/ncdc.h2
-rw-r--r--src/net.c2
-rw-r--r--src/proto.c2
-rw-r--r--src/search.c2
-rw-r--r--src/strutil.c2
-rw-r--r--src/tth.c2
-rw-r--r--src/ui.c2
-rw-r--r--src/ui_colors.c2
-rw-r--r--src/ui_listing.c2
-rw-r--r--src/ui_logwindow.c2
-rw-r--r--src/ui_textinput.c2
-rw-r--r--src/uit_conn.c2
-rw-r--r--src/uit_dl.c2
-rw-r--r--src/uit_fl.c2
-rw-r--r--src/uit_hub.c2
-rw-r--r--src/uit_main.c2
-rw-r--r--src/uit_msg.c2
-rw-r--r--src/uit_search.c2
-rw-r--r--src/uit_userlist.c2
-rw-r--r--src/util.c2
-rw-r--r--src/vars.c2
41 files changed, 51 insertions, 41 deletions
diff --git a/COPYING b/COPYING
index e574e72..e272641 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2014 Yoran Heling
+Copyright (c) 2011-2016 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 ca41515..92fee7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+1.20 - 2016-12-30
+ - Support bracketed paste mode in input handling (cologic)
+ - Add 'geoip_cc4' and 'geoip_cc6' settings
+ - Add 'log_hubchat' setting
+ - Add 'local' option to 'active_ip' setting
+ - Add support for multistream bzip2 filelists
+ - Disable RC4 ciphers by default from tls_priority
+ - Fix potential null pointer deference
+ - Fix chmod of destination directories (Johannes Beisswenger)
+
1.19.1 - 2014-04-23
- Fix remote null pointer dereference
- Searching now works in the search results list
diff --git a/README b/README
index e9308f7..45a7d1d 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-ncdc 1.19.1
-===========
+ncdc 1.20
+=========
DESCRIPTION
diff --git a/configure.ac b/configure.ac
index 435a213..6511efc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT([ncdc], [1.19.1], [projects@yorhel.nl])
+AC_INIT([ncdc], [1.20], [projects@yorhel.nl])
AC_CONFIG_SRCDIR([src/ncdc.h])
AC_CONFIG_HEADER([config.h])
m4_include([deps/lean.m4])
diff --git a/doc/gendoc.c b/doc/gendoc.c
index 0d5f41d..efa3617 100644
--- a/doc/gendoc.c
+++ b/doc/gendoc.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/bloom.c b/src/bloom.c
index e70bf4e..03e658d 100644
--- a/src/bloom.c
+++ b/src/bloom.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/cc.c b/src/cc.c
index 2ed09e8..da9f163 100644
--- a/src/cc.c
+++ b/src/cc.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/commands.c b/src/commands.c
index 6c83267..feeffcc 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/db.c b/src/db.c
index 17941ae..11a6a10 100644
--- a/src/db.c
+++ b/src/db.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/dl.c b/src/dl.c
index e546462..d754e31 100644
--- a/src/dl.c
+++ b/src/dl.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/dlfile.c b/src/dlfile.c
index d402ccf..0db483f 100644
--- a/src/dlfile.c
+++ b/src/dlfile.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/doc.h b/src/doc.h
index c9c7fa4..0d90718 100644
--- a/src/doc.h
+++ b/src/doc.h
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/fl_load.c b/src/fl_load.c
index 92ec862..e41a776 100644
--- a/src/fl_load.c
+++ b/src/fl_load.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/fl_local.c b/src/fl_local.c
index bb36047..76d8d13 100644
--- a/src/fl_local.c
+++ b/src/fl_local.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/fl_save.c b/src/fl_save.c
index 1bbb4ed..8376db6 100644
--- a/src/fl_save.c
+++ b/src/fl_save.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/fl_util.c b/src/fl_util.c
index b03261e..39f12dc 100644
--- a/src/fl_util.c
+++ b/src/fl_util.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/geoip.c b/src/geoip.c
index e5aaa71..af3fb90 100644
--- a/src/geoip.c
+++ b/src/geoip.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/hub.c b/src/hub.c
index 36aec55..ebc1422 100644
--- a/src/hub.c
+++ b/src/hub.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/listen.c b/src/listen.c
index 285fce9..eace11f 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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 0ba6a21..6220238 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ncdc.h b/src/ncdc.h
index 944d04f..ecec12e 100644
--- a/src/ncdc.h
+++ b/src/ncdc.h
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/net.c b/src/net.c
index 02bb121..af5cf73 100644
--- a/src/net.c
+++ b/src/net.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/proto.c b/src/proto.c
index 2a8b3d2..43a582b 100644
--- a/src/proto.c
+++ b/src/proto.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/search.c b/src/search.c
index 5c77473..c7b000c 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/strutil.c b/src/strutil.c
index 2be37cc..cf61d70 100644
--- a/src/strutil.c
+++ b/src/strutil.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/tth.c b/src/tth.c
index 36d9c5b..f65003b 100644
--- a/src/tth.c
+++ b/src/tth.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ui.c b/src/ui.c
index 312ccd4..e967a24 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ui_colors.c b/src/ui_colors.c
index 081942e..8687305 100644
--- a/src/ui_colors.c
+++ b/src/ui_colors.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ui_listing.c b/src/ui_listing.c
index f36583d..769c852 100644
--- a/src/ui_listing.c
+++ b/src/ui_listing.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ui_logwindow.c b/src/ui_logwindow.c
index 13f00b3..eab0bcf 100644
--- a/src/ui_logwindow.c
+++ b/src/ui_logwindow.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/ui_textinput.c b/src/ui_textinput.c
index 206921e..a822892 100644
--- a/src/ui_textinput.c
+++ b/src/ui_textinput.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_conn.c b/src/uit_conn.c
index 4137971..4f53512 100644
--- a/src/uit_conn.c
+++ b/src/uit_conn.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_dl.c b/src/uit_dl.c
index 5c09e98..d5f04af 100644
--- a/src/uit_dl.c
+++ b/src/uit_dl.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_fl.c b/src/uit_fl.c
index 3e7eb11..4dbd3cd 100644
--- a/src/uit_fl.c
+++ b/src/uit_fl.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_hub.c b/src/uit_hub.c
index 8cda11e..17a5f84 100644
--- a/src/uit_hub.c
+++ b/src/uit_hub.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_main.c b/src/uit_main.c
index 33bc0bb..90d0161 100644
--- a/src/uit_main.c
+++ b/src/uit_main.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_msg.c b/src/uit_msg.c
index 4018391..517acd7 100644
--- a/src/uit_msg.c
+++ b/src/uit_msg.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_search.c b/src/uit_search.c
index fbb91e9..87afc97 100644
--- a/src/uit_search.c
+++ b/src/uit_search.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/uit_userlist.c b/src/uit_userlist.c
index 4a0c96b..0e4e537 100644
--- a/src/uit_userlist.c
+++ b/src/uit_userlist.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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.c b/src/util.c
index 9ed3bf2..2ca6828 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 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/vars.c b/src/vars.c
index dd2d5bb..f89d535 100644
--- a/src/vars.c
+++ b/src/vars.c
@@ -1,6 +1,6 @@
/* ncdc - NCurses Direct Connect client
- Copyright (c) 2011-2014 Yoran Heling
+ Copyright (c) 2011-2016 Yoran Heling
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the