Commit: b04a93b49943720edb935feda8a080a157cd4559 Parent: af20ae1a06217e8e8e4e23d28ffd05122a337792 Author: Vi Grey Date: 2016-06-10 07:56 UTC Summary: Added maintainer info to README.md CHANGELOG.md | 6 ++++++ LICENSE | 2 +- README.md | 2 +- docs/ignis.1.gz | Bin 1421 -> 1418 bytes ignis/ignis | 6 +++--- setup.py | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed3c60..53c9131 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## 1.0.3.2 - 2016-06-10 +### Changed +- "Dev Brush Technology" credits to "Vi Grey" credits in all files +- Modified website and email in files +- Added 2016 to credits + ## 1.0.3.1 - 2015-04-09 ### Added - program_name variable to setup.py diff --git a/LICENSE b/LICENSE index dd5f4de..9b344b0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2015, Dev Brush Technology +Copyright (C) 2015-2016, Vi Grey All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 58c5f1d..68edd2a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ignis -**_ignis is created by Dev Brush Technology (http://devbrush.com) and is licensed under the BSD 2-Clause License. Read LICENSE for more license text._** +**_ignis is created by Vi Grey (https://vigrey.com) and is licensed under the BSD 2-Clause License. Read LICENSE for more license text._** #### Platforms: - BSD diff --git a/docs/ignis.1.gz b/docs/ignis.1.gz index 23b71ed..0a60936 100644 Binary files a/docs/ignis.1.gz and b/docs/ignis.1.gz differ diff --git a/ignis/ignis b/ignis/ignis index 11e5842..598be7f 100755 --- a/ignis/ignis +++ b/ignis/ignis @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2015, Dev Brush Technology +# Copyright (C) 2015-2016, Vi Grey # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -34,8 +34,8 @@ import termios import threading import tty -VERSION = "1.0.3.1" -AUTHOR = "Dev Brush Technology (http://devbrush.com)" +VERSION = "1.0.3.2" +AUTHOR = "Vi Grey (https://vigrey.com)" HOST = "127.0.0.1" PORT = 9999 INPUT_PATH = "." diff --git a/setup.py b/setup.py index f546e4a..5dc27cd 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="ignis", description="Console-based website building program", author=ignis.AUTHOR, - author_email="feedback@devbrush.com", + author_email="vi@vigrey.com", license="BSD", version=ignis.VERSION, url="https://github.com/DevBrush/ignis",