From d697dc5138fe93ed9d0316ddf41de6c12b05683d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=B6hler?= Date: Sun, 7 Feb 2016 15:10:52 +0100 Subject: [PATCH] version bump --- Makefile | 2 +- include/bitops.h | 2 +- include/common.h | 2 +- include/cstack.h | 2 +- include/cstring.h | 2 +- include/main.h | 4 ++-- include/markdown.h | 2 +- include/parser.h | 2 +- include/url.h | 2 +- include/viewer.h | 2 +- mdp.1 | 4 ++-- sample.md | 2 +- src/Makefile | 2 +- src/cstack.c | 2 +- src/cstring.c | 2 +- src/main.c | 4 ++-- src/markdown.c | 2 +- src/parser.c | 2 +- src/url.c | 2 +- src/viewer.c | 2 +- 20 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Makefile b/Makefile index 1d6f3ef..15fd54c 100644 --- 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. # diff --git a/include/bitops.h b/include/bitops.h index 0d18aec..5314804 100644 --- a/include/bitops.h +++ b/include/bitops.h @@ -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. * diff --git a/include/common.h b/include/common.h index 5f22246..2a0379a 100644 --- a/include/common.h +++ b/include/common.h @@ -3,7 +3,7 @@ /* * Common macros. - * Copyright (C) 2015 Michael Goehler + * Copyright (C) 2016 Michael Goehler * * This file is part of mdp. * diff --git a/include/cstack.h b/include/cstack.h index a876ddb..831e1d8 100644 --- a/include/cstack.h +++ b/include/cstack.h @@ -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. * diff --git a/include/cstring.h b/include/cstring.h index 506b52c..8fa72c3 100644 --- a/include/cstring.h +++ b/include/cstring.h @@ -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. * diff --git a/include/main.h b/include/main.h index 0ec4fa8..edf4679 100644 --- a/include/main.h +++ b/include/main.h @@ -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 ) diff --git a/include/markdown.h b/include/markdown.h index 3a85947..07268dc 100644 --- a/include/markdown.h +++ b/include/markdown.h @@ -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. * diff --git a/include/parser.h b/include/parser.h index 7a18377..e8ad380 100644 --- a/include/parser.h +++ b/include/parser.h @@ -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. * diff --git a/include/url.h b/include/url.h index 254ca6d..ed13ad6 100644 --- a/include/url.h +++ b/include/url.h @@ -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. * diff --git a/include/viewer.h b/include/viewer.h index eef6869..94578b3 100644 --- a/include/viewer.h +++ b/include/viewer.h @@ -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 --- 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. diff --git a/sample.md b/sample.md index 44bd450..4e304c6 100644 --- 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 <- ========= diff --git a/src/Makefile b/src/Makefile index 70b5af5..fda0972 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ # # Makefile -# Copyright (C) 2015 Michael Goehler +# Copyright (C) 2016 Michael Goehler # # This file is part of mdp. # diff --git a/src/cstack.c b/src/cstack.c index 610483e..0209edf 100644 --- a/src/cstack.c +++ b/src/cstack.c @@ -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. * diff --git a/src/cstring.c b/src/cstring.c index 7184d2f..27ddaed 100644 --- a/src/cstring.c +++ b/src/cstring.c @@ -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. * diff --git a/src/main.c b/src/main.c index 00ef6d8..3165a00 100644 --- a/src/main.c +++ b/src/main.c @@ -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 .\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"); diff --git a/src/markdown.c b/src/markdown.c index 32e8c31..9adfeef 100644 --- a/src/markdown.c +++ b/src/markdown.c @@ -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. * diff --git a/src/parser.c b/src/parser.c index c2ccb0a..eb50016 100644 --- a/src/parser.c +++ b/src/parser.c @@ -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. * diff --git a/src/url.c b/src/url.c index 18b7397..0e49b49 100644 --- 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. * diff --git a/src/viewer.c b/src/viewer.c index 43a0733..c23dc40 100644 --- a/src/viewer.c +++ b/src/viewer.c @@ -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. * -- 2.20.1