2015-02-12 12:16:25 -03:00
|
|
|
// Aseprite
|
2019-01-03 09:09:00 -03:00
|
|
|
// Copyright (C) 2018-2019 Igara Studio S.A.
|
2018-02-09 14:52:28 -03:00
|
|
|
// Copyright (C) 2001-2018 David Capello
|
2015-02-12 12:16:25 -03:00
|
|
|
//
|
2016-08-26 17:02:58 -03:00
|
|
|
// This program is distributed under the terms of
|
|
|
|
// the End-User License Agreement for Aseprite.
|
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)
|
2017-09-19 13:41:28 -03:00
|
|
|
|
|
|
|
// Disable warning C4710 in MSVC: function not inlined (generated by MSVC header files)
|
|
|
|
// https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-4-c4710
|
|
|
|
#pragma warning(disable:4710)
|
2012-04-07 13:12:01 -03:00
|
|
|
#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"
|
2017-09-26 09:33:17 -03:00
|
|
|
#define VERSION "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"
|
2019-01-03 09:09:00 -03:00
|
|
|
#define COPYRIGHT "Copyright (C) 2001-2019 Igara Studio S.A."
|
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"
|