version bump
authorMichael Göhler <github@nixhub.de>
Mon, 23 Jul 2018 20:28:06 +0000 (22:28 +0200)
committerMichael Göhler <github@nixhub.de>
Mon, 23 Jul 2018 20:28:06 +0000 (22:28 +0200)
19 files changed:
Makefile
include/bitops.h
include/common.h
include/cstack.h
include/cstring.h
include/main.h
include/markdown.h
include/parser.h
include/url.h
include/viewer.h
mdp.1
src/Makefile
src/cstack.c
src/cstring.c
src/main.c
src/markdown.c
src/parser.c
src/url.c
src/viewer.c

index 564466f..0db1ec6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2016 Michael Goehler
+# Copyright (C) 2018 Michael Goehler
 #
 # This file is part of mdp.
 #
index 5314804..1f9d7d6 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Macros to do bit operations on integer variables.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 2a0379a..a67a0be 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Common macros.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 831e1d8..e762c90 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 8fa72c3..1940596 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index df192b7..9359952 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,6 +25,6 @@
 
 #define MDP_VER_MAJOR 1
 #define MDP_VER_MINOR 0
-#define MDP_VER_REVISION 12
+#define MDP_VER_REVISION 13
 
 #endif // !defined( MAIN_H )
index e5f3ca5..7a435a8 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index b2ecc21..afc736e 100644 (file)
@@ -5,7 +5,7 @@
  * Functions necessary to parse a file and transform its content into
  * a deck of slides containing lines. All based on markdown formating
  * rules.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index ed13ad6..330e4be 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An object to store all urls of a slide.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index c980f1d..1405e07 100644 (file)
@@ -5,7 +5,7 @@
  * Functions necessary to display a deck of slides in different color modes
  * using ncurses. Only white, red, and blue are supported, as they can be
  * faded in 256 color mode.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
diff --git a/mdp.1 b/mdp.1
index 01523af..700eb32 100644 (file)
--- a/mdp.1
+++ b/mdp.1
@@ -163,7 +163,7 @@ Exit
 Written by Michael Goehler and others, see
 .IR https://github.com/visit1985/mdp/blob/master/AUTHORS "."
 .SH COPYRIGHT
-Copyright (C) 2016 Michael Goehler
+Copyright (C) 2018 Michael Goehler
 .PP
 This is free software; see the source for copying conditions. There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
index fda0972..a294df0 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2016 Michael Goehler
+# Copyright (C) 2018 Michael Goehler
 #
 # This file is part of mdp.
 #
index 0209edf..0906ea5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 27ddaed..cf5756f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 5aefd75..f9d554f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ void usage() {
 
 void version() {
     printf("mdp %d.%d.%d\n", MDP_VER_MAJOR, MDP_VER_MINOR, MDP_VER_REVISION);
-    printf("Copyright (C) 2016 Michael Goehler\n");
+    printf("Copyright (C) 2018 Michael Goehler\n");
     printf("License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n");
     printf("This is free software: you are free to change and redistribute it.\n");
     printf("There is NO WARRANTY, to the extent permitted by law.\n");
index 9adfeef..c03d307 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index 906cb45..0898b60 100644 (file)
@@ -2,7 +2,7 @@
  * Functions necessary to parse a file and transform its content into
  * a deck of slides containing lines. All based on markdown formating
  * rules.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index da21a57..90b011d 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -1,6 +1,6 @@
 /*
  * Functions necessary to handle pandoc URLs.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *
index f0a1d99..d23ed73 100644 (file)
@@ -2,7 +2,7 @@
  * Functions necessary to display a deck of slides in different color modes
  * using ncurses. Only white, red, and blue are supported, as they can be
  * faded in 256 color mode.
- * Copyright (C) 2016 Michael Goehler
+ * Copyright (C) 2018 Michael Goehler
  *
  * This file is part of mdp.
  *