2012-07-13 22:27:12 +02:00
|
|
|
/* HexChat
|
|
|
|
* Copyright (c) 2010-2012 Berke Viktor.
|
2011-02-28 18:59:32 +01:00
|
|
|
*
|
2011-11-29 02:04:08 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2011-08-11 08:12:35 +02:00
|
|
|
*
|
2011-11-29 02:04:08 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
2011-02-28 18:59:32 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
#include <winsparkle.h>
|
2012-11-04 04:22:22 +01:00
|
|
|
|
2012-10-24 21:33:02 +02:00
|
|
|
#include "hexchat-plugin.h"
|
2011-02-28 18:59:32 +01:00
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
#define APPCAST_URL "https://dl.hexchat.net/appcast.xml"
|
2012-10-26 13:00:09 +02:00
|
|
|
|
2012-10-30 08:42:48 +01:00
|
|
|
static hexchat_plugin *ph; /* plugin handle */
|
2012-10-26 13:00:09 +02:00
|
|
|
static char name[] = "Update Checker";
|
|
|
|
static char desc[] = "Check for HexChat updates automatically";
|
2014-07-30 00:48:56 +02:00
|
|
|
static char version[] = "5.0";
|
|
|
|
static const char upd_help[] = "Update Checker Usage:\n /UPDCHK, check for HexChat updates\n";
|
2011-11-25 21:44:08 +01:00
|
|
|
|
2012-10-26 13:00:09 +02:00
|
|
|
static int
|
2014-07-30 00:48:56 +02:00
|
|
|
check_cmd (char *word[], char *word_eol[], void *userdata)
|
2012-10-26 13:00:09 +02:00
|
|
|
{
|
2014-07-30 00:48:56 +02:00
|
|
|
win_sparkle_check_update_with_ui ();
|
2012-10-26 13:00:09 +02:00
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
return HEXCHAT_EAT_ALL;
|
2012-10-26 13:00:09 +02:00
|
|
|
}
|
|
|
|
|
2011-02-28 18:59:32 +01:00
|
|
|
int
|
2012-10-30 08:42:48 +01:00
|
|
|
hexchat_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg)
|
2011-02-28 18:59:32 +01:00
|
|
|
{
|
|
|
|
ph = plugin_handle;
|
|
|
|
|
2011-12-02 01:05:59 +01:00
|
|
|
*plugin_name = name;
|
|
|
|
*plugin_desc = desc;
|
|
|
|
*plugin_version = version;
|
2011-02-28 18:59:32 +01:00
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
win_sparkle_set_appcast_url (APPCAST_URL);
|
|
|
|
win_sparkle_init ();
|
2012-10-26 13:32:08 +02:00
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
hexchat_hook_command (ph, "UPDCHK", HEXCHAT_PRI_NORM, check_cmd, upd_help, NULL);
|
2013-04-14 10:14:17 +02:00
|
|
|
hexchat_command (ph, "MENU -ishare\\download.png ADD \"Help/Check for Updates\" \"UPDCHK\"");
|
2012-10-30 08:42:48 +01:00
|
|
|
hexchat_printf (ph, "%s plugin loaded\n", name);
|
2012-10-26 13:00:09 +02:00
|
|
|
|
2014-07-30 00:48:56 +02:00
|
|
|
return 1;
|
2011-02-28 18:59:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-10-30 08:42:48 +01:00
|
|
|
hexchat_plugin_deinit (void)
|
2011-02-28 18:59:32 +01:00
|
|
|
{
|
2014-07-30 00:48:56 +02:00
|
|
|
win_sparkle_cleanup ();
|
|
|
|
|
2012-10-30 08:42:48 +01:00
|
|
|
hexchat_command (ph, "MENU DEL \"Help/Check for updates\"");
|
|
|
|
hexchat_printf (ph, "%s plugin unloaded\n", name);
|
2011-02-28 18:59:32 +01:00
|
|
|
return 1;
|
|
|
|
}
|