Update version numbers in the plugin docs
This commit is contained in:
parent
35ddb514ab
commit
5e23d42c69
|
@ -1005,7 +1005,7 @@ A newly allocated string or NULL for failure. You must free this string with xch
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_set_str"> xchat_pluginpref_set_str() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_set_str"> xchat_pluginpref_set_str() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_set_str (xchat_plugin *ph, const char *var, const char *value);
|
<b>Prototype:</b> int xchat_pluginpref_set_str (xchat_plugin *ph, const char *var, const char *value);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Saves a plugin-specific setting with string value to a plugin-specific config file.
|
<br><b>Description:</b> Saves a plugin-specific setting with string value to a plugin-specific config file.
|
||||||
|
@ -1044,7 +1044,7 @@ myvar2 = This is important, too.</pre>
|
||||||
You should never need to edit this file manually.
|
You should never need to edit this file manually.
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_get_str"> xchat_pluginpref_get_str() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_get_str"> xchat_pluginpref_get_str() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_get_str (xchat_plugin *ph, const char *var, char *dest);
|
<b>Prototype:</b> int xchat_pluginpref_get_str (xchat_plugin *ph, const char *var, char *dest);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Loads a plugin-specific setting with string value from a plugin-specific config file.
|
<br><b>Description:</b> Loads a plugin-specific setting with string value from a plugin-specific config file.
|
||||||
|
@ -1058,7 +1058,7 @@ You should never need to edit this file manually.
|
||||||
<b>Returns:</b> 1 for success, 0 for failure.
|
<b>Returns:</b> 1 for success, 0 for failure.
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_set_int"> xchat_pluginpref_set_int() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_set_int"> xchat_pluginpref_set_int() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_set_int (xchat_plugin *ph, const char *var, int value);
|
<b>Prototype:</b> int xchat_pluginpref_set_int (xchat_plugin *ph, const char *var, int value);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Saves a plugin-specific setting with decimal value to a plugin-specific config file.
|
<br><b>Description:</b> Saves a plugin-specific setting with decimal value to a plugin-specific config file.
|
||||||
|
@ -1098,7 +1098,7 @@ You should never need to edit this file manually.
|
||||||
You only need these kind of complex checks if you're saving user input, which can be non-numeric.
|
You only need these kind of complex checks if you're saving user input, which can be non-numeric.
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_get_int"> xchat_pluginpref_get_int() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_get_int"> xchat_pluginpref_get_int() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_get_int (xchat_plugin *ph, const char *var);
|
<b>Prototype:</b> int xchat_pluginpref_get_int (xchat_plugin *ph, const char *var);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Loads a plugin-specific setting with decimal value from a plugin-specific config file.
|
<br><b>Description:</b> Loads a plugin-specific setting with decimal value from a plugin-specific config file.
|
||||||
|
@ -1111,7 +1111,7 @@ You only need these kind of complex checks if you're saving user input, which ca
|
||||||
<b>Returns:</b> The decimal value of the requested setting upon success, -1 for failure.
|
<b>Returns:</b> The decimal value of the requested setting upon success, -1 for failure.
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_delete"> xchat_pluginpref_delete() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_delete"> xchat_pluginpref_delete() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_delete (xchat_plugin *ph, const char *var);
|
<b>Prototype:</b> int xchat_pluginpref_delete (xchat_plugin *ph, const char *var);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Deletes a plugin-specific setting from a plugin-specific config file.
|
<br><b>Description:</b> Deletes a plugin-specific setting from a plugin-specific config file.
|
||||||
|
@ -1124,7 +1124,7 @@ You only need these kind of complex checks if you're saving user input, which ca
|
||||||
<b>Returns:</b> 1 for success, 0 for failure. If the given setting didn't exist, it also returns 1, so 1 only indicates that the setting won't exist after the call.
|
<b>Returns:</b> 1 for success, 0 for failure. If the given setting didn't exist, it also returns 1, so 1 only indicates that the setting won't exist after the call.
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
||||||
<h3><a class=cmd name="xchat_pluginpref_list"> xchat_pluginpref_list() </a><small>(new for 2.8.10)</small></h3>
|
<h3><a class=cmd name="xchat_pluginpref_list"> xchat_pluginpref_list() </a><small>(new for 2.9.0)</small></h3>
|
||||||
<b>Prototype:</b> int xchat_pluginpref_list (xchat_plugin *ph, char *dest);
|
<b>Prototype:</b> int xchat_pluginpref_list (xchat_plugin *ph, char *dest);
|
||||||
<br>
|
<br>
|
||||||
<br><b>Description:</b> Builds a comma-separated list of the currently saved settings from a plugin-specific config file.
|
<br><b>Description:</b> Builds a comma-separated list of the currently saved settings from a plugin-specific config file.
|
||||||
|
|
Loading…
Reference in New Issue