mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 15:37:23 +00:00
47 lines
1.7 KiB
C
47 lines
1.7 KiB
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
// information
|
|
#define NAME "Awesome Widgets"
|
|
#define VERSION "@PROJECT_VERSION@"
|
|
#define AUTHOR "@PROJECT_AUTHOR@"
|
|
#define TRANSLATORS "Ernesto Aviles Vzqz (Spanish), Mermouy (French), underr (Brazillian Portuguese), Viktor Slobodyan (Ukrainian), Lemueler (Chinese), Heimen Stoffels (Dutch)"
|
|
#define EMAIL "@PROJECT_CONTACT@"
|
|
#define LICENSE "@PROJECT_LICENSE@"
|
|
#define TRDPARTY_LICENSE "tasks,BSD,https://github.com/mhogomchungu/tasks"
|
|
|
|
// configuraion
|
|
// graphical items api version
|
|
#define AWGIAPI 2
|
|
// extquotes api version
|
|
#define AWEQAPI 2
|
|
// extscript api version
|
|
#define AWESAPI 3
|
|
// extupgrade api version
|
|
#define AWEUAPI 3
|
|
// extweather api version
|
|
#define AWEWAPI 2
|
|
// available time keys
|
|
#define TIME_KEYS "dddd,ddd,dd,d,MMMM,MMM,MM,M,yyyy,yy,hh,h,HH,H,mm,m,ss,s,t,ap,a,AP,A"
|
|
|
|
// links
|
|
#define HOMEPAGE "https://arcanis.name/projects/awesome-widgets/"
|
|
#define REPOSITORY "https://github.com/arcan1s/awesome-widgets"
|
|
#define RELEASES "https://github.com/arcan1s/awesome-widgets/releases/tag/V."
|
|
#define VERSION_API "https://api.github.com/repos/arcan1s/awesome-widgets/releases"
|
|
#define BUGTRACKER "https://github.com/arcan1s/awesome-widgets/issues"
|
|
#define TRANSLATION "https://github.com/arcan1s/awesome-widgets/issues/14"
|
|
#define AUR_PACKAGES "https://aur.archlinux.org/packages/kdeplasma-applets-awesome-widgets/"
|
|
#define OPENSUSE_PACKAGES "http://software.opensuse.org/package/awesome-widgets"
|
|
|
|
// build information
|
|
#define BUILD_DATE "@CURRENT_DATE@"
|
|
#define DATE "2013-@CURRENT_YEAR@"
|
|
|
|
// cmake properties
|
|
#define CMAKE_BUILD_TYPE "@CMAKE_BUILD_TYPE@"
|
|
#define CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
#define BUILD_PLASMOIDS "@BUILD_PLASMOIDS@"
|
|
|
|
#endif /* VERSION_H */
|