2015-02-12 12:16:25 -03:00
|
|
|
// Aseprite
|
2016-02-23 16:10:54 -03:00
|
|
|
// Copyright (C) 2001-2016 David Capello
|
2015-02-12 12:16:25 -03:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
|
|
// published by the Free Software Foundation.
|
2007-09-18 23:57:02 +00:00
|
|
|
|
|
|
|
#ifdef __ASE_CONFIG_H
|
2010-04-22 19:00:22 -03:00
|
|
|
#error You cannot use config.h two times
|
2007-09-18 23:57:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __ASE_CONFIG_H
|
2012-04-07 13:12:01 -03:00
|
|
|
|
|
|
|
// In MSVC
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
// Avoid warnings about insecure standard C++ functions
|
2016-03-03 19:22:52 -03:00
|
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
2012-04-07 13:12:01 -03:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
2016-03-03 19:22:52 -03:00
|
|
|
#endif
|
2012-04-07 13:12:01 -03:00
|
|
|
|
|
|
|
// Disable warning C4355 in MSVC: 'this' used in base member initializer list
|
|
|
|
#pragma warning(disable:4355)
|
|
|
|
#endif
|
2007-09-18 23:57:02 +00:00
|
|
|
|
2010-04-22 19:00:22 -03:00
|
|
|
// General information
|
2015-08-31 13:27:40 -03:00
|
|
|
#define PACKAGE "Aseprite"
|
2016-02-29 22:11:00 -03:00
|
|
|
#define VERSION "1.1.3-dev"
|
2015-08-31 13:27:40 -03:00
|
|
|
|
2014-06-02 21:31:44 -03:00
|
|
|
#ifdef CUSTOM_WEBSITE_URL
|
|
|
|
#define WEBSITE CUSTOM_WEBSITE_URL // To test web server
|
|
|
|
#else
|
2014-05-05 21:28:58 -03:00
|
|
|
#define WEBSITE "http://www.aseprite.org/"
|
2014-06-02 21:31:44 -03:00
|
|
|
#endif
|
2014-04-10 00:33:28 -03:00
|
|
|
#define WEBSITE_DOWNLOAD WEBSITE "download/"
|
2014-04-12 12:28:34 -03:00
|
|
|
#define WEBSITE_CONTRIBUTORS WEBSITE "contributors/"
|
2015-03-02 19:54:24 -03:00
|
|
|
#define WEBSITE_NEWS_RSS "http://blog.aseprite.org/rss"
|
2014-06-02 21:31:44 -03:00
|
|
|
#define UPDATE_URL WEBSITE "update/?xml=1"
|
2016-02-23 16:10:54 -03:00
|
|
|
#define COPYRIGHT "Copyright (C) 2001-2016 David Capello"
|
2007-09-18 23:57:02 +00:00
|
|
|
|
2015-02-12 10:55:58 -03:00
|
|
|
#include "base/base.h"
|
2014-09-20 23:51:56 -03:00
|
|
|
#include "base/debug.h"
|
2015-12-21 12:36:44 -03:00
|
|
|
#include "base/log.h"
|