From 850bb07907f72c9a0710dbe455385812c714834e Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Tue, 16 Aug 2016 08:06:31 +0200 Subject: rename github account --- LICENSE | 2 +- README.markdown | 6 ------ mandelbrot.c | 4 ++-- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/LICENSE b/LICENSE index 94ecb68..0e58f1e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2010 Kevin Chabowski(kevin@kch42.de) +Copyright (c) 2010 Laria Carolin Chabowski(laria@laria.me) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.markdown b/README.markdown index c61acf2..9e82bd0 100644 --- a/README.markdown +++ b/README.markdown @@ -4,12 +4,6 @@ Another mandelbrot viewer A Allegro-based, multithreaded (using OpenMP), graphical mandelbrot viewer with a changeable color palette (with a integrated palette editor). -Leaving a comment ------------------ - -If you like / dislike this program, leave a comment at: -http://kch42.de/hp/en/programming/11/mandelbrot-viewer - How to compile -------------- diff --git a/mandelbrot.c b/mandelbrot.c index e71c5bc..233ba79 100644 --- a/mandelbrot.c +++ b/mandelbrot.c @@ -131,7 +131,7 @@ void introtext(BITMAP* canvas) textprintf_centre_ex(canvas, font, (int) canvas->w/2, 10, 0xffffffff, -1, "simple mandelbrot viewer by"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 22, 0xffffffff, -1, - "Kevin Chabowski (kevin@kch42.de)"); + "Laria Carolin Chabowski (laria@laria.me)"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 34, 0xffffffff, -1, "v 0.5"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 46, 0xffffffff, -1, @@ -426,7 +426,7 @@ int main() textprintf_ex(buffer, font, 2, SCREEN_H - 12, 0xffffffff, -1, "X = %lf Y = %lf", x1 + mouse_x * dppx, y1 + mouse_y * dppx); textprintf_right_ex(buffer, font, SCREEN_W - 2, SCREEN_H - 12, - 0xffffffff, -1, "(c) 2010 by Kevin Chabowski"); + 0xffffffff, -1, "(c) 2010 by Laria Carolin Chabowski"); if(update_fract) textprintf_centre_ex(buffer, font, (int)(SCREEN_W/2), -- cgit v1.2.3-54-g00ecf