summaryrefslogtreecommitdiff
path: root/libpurple/version.h.in
Commit message (Collapse)AuthorAgeFilesLines
* Clean up a bunch of stuff in internal.hGary Kramlich2022-09-121-0/+2
| | | | | | | Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/1763/
* Remove unnecessary gtk-doc comments and move them where possible from ↵Gary Kramlich2021-12-111-10/+0
| | | | | | | | | libpurple/[q-z]*.h Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/1177/
* A bunch of documentation cleanupsGary Kramlich2020-11-051-3/+6
| | | | | | | Testing Done: Build the docs, verified via libpurple-undocumented.txt Reviewed at https://reviews.imfreedom.org/r/195/
* Make it so only libpurple can directly include libpurple header files.Gary Kramlich2020-06-211-0/+4
| | | | | | | | | | | This is part of our on going effort to make it easier to develop against libpurple as well as making our filenames not part of our api. Make it so only libpurple can directly include libpurple header files. Testing Done: Just a normal compile to make sure everything builds again. Reviewed at https://reviews.imfreedom.org/r/8/
* Add PURPLE_VERSION and PURPLE_EXTRA_VERSION to libpurple/version.h and clean ↵Gary Kramlich2019-11-171-3/+31
| | | | up some other related stuff
* Fix libpurple header guards using reserved names.Elliott Sales de Andrade2019-07-031-4/+3
|
* Use G_BEGIN_DECLS and G_END_DECLS instead of raw extern "C"Mike Ruprecht2018-12-141-6/+2
| | | | | This patch replaces direct usage of 'extern "C"', guarded with _cplusplus, with GLib's G_BEGIN_DECLS and G_END_DECLS.
* Move section blocks inside inclusion guards -- otherwise g-ir-scanner yellsAnkit Vani2014-02-071-3/+3
|
* Swap @title and @short_description rolesAnkit Vani2014-02-031-2/+2
|
* Add section block for *.h.inAnkit Vani2014-02-031-3/+8
|
* Move changes from soc.2013.gobjectification.gtkdoc to this branchAnkit Vani2014-01-311-8/+28
|
* Initial replacements for gtk-doc style commentsAnkit Vani2014-01-311-4/+4
|
* Clean the API documentation in preparation for 3.0.0 by removing all the old ↵Andrew Victor2011-09-251-6/+0
| | | | @since tags.
* Document the PURPLE_MAJOR_VERSION, PURPLE_MINOR_VERSION, andEtan Reisner2009-02-181-0/+3
| | | | | PURPLE_MICRO_VERSION defines and the PurplePrefType enums to silence some more doxygen complaining.
* Export purple_*_version in version.h.Will Thompson2007-12-221-0/+28
|
* disapproval of revision '79f82dfe7e7a3cd7101b43825212e802a1d32412'Will Thompson2007-12-211-27/+0
|
* Add purple_version_get_{major,minor,micro} functions to get the runningWill Thompson2007-12-211-0/+27
| | | | libpurple's version. Fixes #4408.
* The FSF changed its address a while ago; our files were out of date.John Bailey2007-09-081-1/+1
| | | | This is a quick update done with a for loop, find, and sed.
* I don't know why I thought these were necessary here.Stu Tomlinson2007-05-031-4/+0
|
* soname versioning of libpurple. Should help resolve debian bug 421282Stu Tomlinson2007-04-281-0/+61
All version control is within configure.ac now Adjust the define for purple_version_suffix as appropriate: [devel] - normal development periods [betaN] - for beta releases [] - for releases Follow the instructions in configure.ac to set the version number depending on how the API has changed (ie. following our normal version numbering!) version.h is auto-generated now Added purple_version_check(), purple_major_version, purple_minor_version, & purple_micro_version for run-time version comparisons in addition to the existing compile time macros. libpurple Plugins moved again, this time to: $(libdir)/purple-$PURPLE_MAJOR_VERSION This will allow parallel installations of different major libpurple versions in the future should someone wish to.