i think it's time for version 1.0
authorMichael Göhler <somebody.here@gmx.de>
Fri, 27 Mar 2015 22:48:40 +0000 (23:48 +0100)
committerMichael Göhler <somebody.here@gmx.de>
Fri, 27 Mar 2015 22:48:40 +0000 (23:48 +0100)
18 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
src/Makefile
src/cstack.c
src/cstring.c
src/main.c
src/markdown.c
src/parser.c
src/url.c
src/viewer.c

index c1f8658..cfb80fe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2014 Michael Goehler
+# Copyright (C) 2015 Michael Goehler
 #
 # This file is part of mdp.
 #
index df24067..0d18aec 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Macros to do bit operations on integer variables.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 6ac756a..5f22246 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * Common macros.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 230fcdd..a876ddb 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index f9225be..506b52c 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 41c4d7f..5b7be6c 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 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
@@ -23,8 +23,8 @@
 #include "parser.h"
 #include "viewer.h"
 
-#define MDP_VER_MAJOR 0
-#define MDP_VER_MINOR 93
+#define MDP_VER_MAJOR 1
+#define MDP_VER_MINOR 0
 #define MDP_VER_REVISION 0
 
 #endif // !defined( MAIN_H )
index da8805e..b338154 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 67d15d4..4140389 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) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index c2c386f..254ca6d 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
  * An object to store all urls of a slide.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 81f23ec..7c02462 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) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 8b75f8f..70b5af5 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2014 Michael Goehler
+# Copyright (C) 2015 Michael Goehler
 #
 # This file is part of mdp.
 #
index df27ff4..610483e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of a char stack in heap memory.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index c200572..7184d2f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of expandable c strings in heap memory.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index e762fbb..3d63052 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * mdp -- A command-line based markdown presentation tool.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 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
@@ -41,7 +41,7 @@ void usage() {
 
 void version() {
     printf("mdp %d.%d.%d\n", MDP_VER_MAJOR, MDP_VER_MINOR, MDP_VER_REVISION);
-    printf("Copyright (C) 2014 Michael Goehler\n");
+    printf("Copyright (C) 2015 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 dd1ea48..32e8c31 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * An implementation of markdown objects.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 5ca7ea2..f5ab7ff 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) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 25c60c3..18b7397 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -1,6 +1,6 @@
 /*
  * Functions necessary to handle pandoc URLs.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
index 97e62df..91633e8 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) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *