version bump
authorMichael Göhler <github@nixhub.de>
Sun, 7 Feb 2016 14:10:52 +0000 (15:10 +0100)
committerMichael Göhler <github@nixhub.de>
Sun, 7 Feb 2016 14:10:52 +0000 (15:10 +0100)
20 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
sample.md
src/Makefile
src/cstack.c
src/cstring.c
src/main.c
src/markdown.c
src/parser.c
src/url.c
src/viewer.c

index 1d6f3ef..15fd54c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2015 Michael Goehler
+# Copyright (C) 2016 Michael Goehler
 #
 # This file is part of mdp.
 #
index 0d18aec..5314804 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Macros to do bit operations on integer variables.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 5f22246..2a0379a 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Common macros.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index a876ddb..831e1d8 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 506b52c..8fa72c3 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 0ec4fa8..edf4679 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 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 4
+#define MDP_VER_REVISION 5
 
 #endif // !defined( MAIN_H )
index 3a85947..07268dc 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 7a18377..e8ad380 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) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 254ca6d..ed13ad6 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An object to store all urls of a slide.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index eef6869..94578b3 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) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
diff --git a/mdp.1 b/mdp.1
index 599f9a2..6179d61 100644 (file)
--- a/mdp.1
+++ b/mdp.1
@@ -5,7 +5,7 @@
 .\"
 .
 .
-.TH MDP 1 "2015-04-10" "User Commands"
+.TH MDP 1 "2016-02-07" "User Commands"
 .SH NAME
 mdp \- A command-line based
 markdown presentation tool
@@ -140,7 +140,7 @@ Exit
 Written by Michael Goehler and others, see
 .IR https://github.com/visit1985/mdp/blob/master/AUTHORS "."
 .SH COPYRIGHT
-Copyright (C) 2015 Michael Goehler
+Copyright (C) 2016 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 44bd450..4e304c6 100644 (file)
--- a/sample.md
+++ b/sample.md
@@ -1,6 +1,6 @@
 %title: mdp - Sample Presentation
 %author: visit1985
-%date: 2014-09-22
+%date: 2016-02-07
 
 -> mdp <-
 =========
index 70b5af5..fda0972 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2015 Michael Goehler
+# Copyright (C) 2016 Michael Goehler
 #
 # This file is part of mdp.
 #
index 610483e..0209edf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 7184d2f..27ddaed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 00ef6d8..3165a00 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 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
@@ -44,7 +44,7 @@ void usage() {
 
 void version() {
     printf("mdp %d.%d.%d\n", MDP_VER_MAJOR, MDP_VER_MINOR, MDP_VER_REVISION);
-    printf("Copyright (C) 2015 Michael Goehler\n");
+    printf("Copyright (C) 2016 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 32e8c31..9adfeef 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index c2ccb0a..eb50016 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) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 18b7397..0e49b49 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -1,6 +1,6 @@
 /*
  * Functions necessary to handle pandoc URLs.
- * Copyright (C) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *
index 43a0733..c23dc40 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) 2015 Michael Goehler
+ * Copyright (C) 2016 Michael Goehler
  *
  * This file is part of mdp.
  *