← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2975: add changelog entry and fix plugindefs comment

 

------------------------------------------------------------
revno: 2975
committer: cologic <ne5@xxxxxxxxxxx>
branch nick: dcpp2
timestamp: Sun 2012-07-01 15:31:19 -0400
message:
  add changelog entry and fix plugindefs comment
modified:
  changelog.txt
  dcpp/PluginDefs.h


--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'changelog.txt'
--- changelog.txt	2012-06-28 17:27:42 +0000
+++ changelog.txt	2012-07-01 19:31:19 +0000
@@ -22,6 +22,7 @@
 * [L#249159] Improve performance when selecting lots of lines in lists (poy)
 * [L#1016907] Exclude temporary downloads from queue dupe check (emtee)
 * Greatly improve user command removal time when closing a hub
+* Add plugin API (Crise, iceman50)
 
 -- 0.799 2012-05-05 --
 * Add icons (iceman50)

=== modified file 'dcpp/PluginDefs.h'
--- dcpp/PluginDefs.h	2012-07-01 18:41:13 +0000
+++ dcpp/PluginDefs.h	2012-07-01 19:31:19 +0000
@@ -112,7 +112,7 @@
 	CFG_TYPE_REMOVE,											/* Config value will be removed */
 	CFG_TYPE_STRING,											/* Config value is string */
 	CFG_TYPE_INT,												/* Config value is 32bit integer */
-	CFG_TYPE_BOOL,											/* Config value is unsigned char (either 1 or 0) */
+	CFG_TYPE_BOOL,												/* Config value is unsigned int (either 1 or 0) */
 	CFG_TYPE_INT64												/* Config value is 64bit integer */
 } ConfigType;