mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 17:22:18 -05:00
more branding changes
This commit is contained in:
parent
0d87087fce
commit
f535702903
@ -97,9 +97,9 @@ void SavePrefs(int iDlg)
|
|||||||
|
|
||||||
// ok this one is really ugly
|
// ok this one is really ugly
|
||||||
// it checks to see if the file exists in two locations
|
// it checks to see if the file exists in two locations
|
||||||
// X-Chat default config dir, if that fails it trys xchat\plugins\config
|
// HexChat default config dir, if that fails it tries xchat\plugins\config
|
||||||
// if neither one exists it tries to create it in
|
// if neither one exists it tries to create it in
|
||||||
// X-Chat default config dir, if that fails it trys xchat\plugins\config
|
// HexChat default config dir, if that fails it tries xchat\plugins\config
|
||||||
// In either case it writes \xFF\xFE to the file ( on creation )
|
// In either case it writes \xFF\xFE to the file ( on creation )
|
||||||
// so that we can save unicode away messages WritePrivateProfile doesn't
|
// so that we can save unicode away messages WritePrivateProfile doesn't
|
||||||
// do this for us, though I think it really should
|
// do this for us, though I think it really should
|
||||||
|
@ -144,7 +144,7 @@ perl_auto_load (void *unused)
|
|||||||
if (!xdir) /* xchatdirfs is new for 2.0.9, will fail on older */
|
if (!xdir) /* xchatdirfs is new for 2.0.9, will fail on older */
|
||||||
xdir = xchat_get_info (ph, "xchatdir");
|
xdir = xchat_get_info (ph, "xchatdir");
|
||||||
|
|
||||||
/* autoload from ~/.xchat2/ or ${APPDATA}\X-Chat 2\ on win32 */
|
/* autoload from ~/.xchat2/ or ${APPDATA}\HexChat\ on win32 */
|
||||||
perl_auto_load_from_path (xdir);
|
perl_auto_load_from_path (xdir);
|
||||||
|
|
||||||
sub_dir = malloc (strlen (xdir) + 9);
|
sub_dir = malloc (strlen (xdir) + 9);
|
||||||
|
@ -389,7 +389,7 @@ Util_Autoload()
|
|||||||
char *sub_dir;
|
char *sub_dir;
|
||||||
/* we need local filesystem encoding for chdir, opendir etc */
|
/* we need local filesystem encoding for chdir, opendir etc */
|
||||||
|
|
||||||
/* auto-load from ~/.xchat2/ or %APPDATA%\X-Chat 2\ */
|
/* auto-load from ~/.xchat2/ or %APPDATA%\HexChat\ */
|
||||||
xdir = xchat_get_info(ph, "xchatdirfs");
|
xdir = xchat_get_info(ph, "xchatdirfs");
|
||||||
Util_Autoload_from(xchat_get_info(ph, "xchatdirfs"));
|
Util_Autoload_from(xchat_get_info(ph, "xchatdirfs"));
|
||||||
|
|
||||||
|
@ -2203,7 +2203,7 @@ static void Tcl_Plugin_DeInit()
|
|||||||
|
|
||||||
static void banner()
|
static void banner()
|
||||||
{
|
{
|
||||||
xchat_printf(ph, "Tcl plugin for XChat - Version %s\n", VERSION);
|
xchat_printf(ph, "Tcl plugin for HexChat - Version %s\n", VERSION);
|
||||||
xchat_print(ph, "Copyright 2002-2005 Daniel P. Stasinski\n");
|
xchat_print(ph, "Copyright 2002-2005 Daniel P. Stasinski\n");
|
||||||
xchat_print(ph, "http://www.scriptkitties.com/tclplugin/\n");
|
xchat_print(ph, "http://www.scriptkitties.com/tclplugin/\n");
|
||||||
}
|
}
|
||||||
@ -2282,7 +2282,7 @@ void xchat_plugin_get_info(char **name, char **desc, char **version, void **rese
|
|||||||
{
|
{
|
||||||
strncpy(VERSION, &RCSID[19], 5);
|
strncpy(VERSION, &RCSID[19], 5);
|
||||||
*name = "tclplugin";
|
*name = "tclplugin";
|
||||||
*desc = "Tcl plugin for XChat";
|
*desc = "Tcl plugin for HexChat";
|
||||||
*version = VERSION;
|
*version = VERSION;
|
||||||
if (reserved)
|
if (reserved)
|
||||||
*reserved = NULL;
|
*reserved = NULL;
|
||||||
|
@ -131,7 +131,7 @@ void wmpaCommands(void)
|
|||||||
xchat_printf(ph, "WMPA: /play : Play the current song");
|
xchat_printf(ph, "WMPA: /play : Play the current song");
|
||||||
xchat_printf(ph, "WMPA: /pause : Pause the current song");
|
xchat_printf(ph, "WMPA: /pause : Pause the current song");
|
||||||
xchat_printf(ph, "WMPA: /prev : Play the previous song");
|
xchat_printf(ph, "WMPA: /prev : Play the previous song");
|
||||||
xchat_printf(ph, "WMPA: /song : Announce the current song from Windows Media Player in xchat");
|
xchat_printf(ph, "WMPA: /song : Announce the current song from Windows Media Player in HexChat");
|
||||||
xchat_printf(ph, "WMPA: /stop : Stop the current song");
|
xchat_printf(ph, "WMPA: /stop : Stop the current song");
|
||||||
xchat_printf(ph, "WMPA: /volume [volume] : Set the volume (0 to 100) or display the current volume");
|
xchat_printf(ph, "WMPA: /volume [volume] : Set the volume (0 to 100) or display the current volume");
|
||||||
xchat_printf(ph, "WMPA: /wmpahelp : Display this help.");
|
xchat_printf(ph, "WMPA: /wmpahelp : Display this help.");
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* XChat Theme Manager
|
/* HexChat Theme Manager
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Patrick Griffs
|
* Copyright (C) 2012 Patrick Griffs
|
||||||
* Copyright (C) 2012 Berke Viktor
|
* Copyright (C) 2012 Berke Viktor
|
||||||
|
@ -6,8 +6,8 @@ using System.Resources;
|
|||||||
// General Information about an assembly is controlled through the following
|
// General Information about an assembly is controlled through the following
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("XChat Theme Manager")]
|
[assembly: AssemblyTitle("HexChat Theme Manager")]
|
||||||
[assembly: AssemblyDescription("Manages XChat Themes.")]
|
[assembly: AssemblyDescription("Manages HexChat Themes.")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("thememan")]
|
[assembly: AssemblyProduct("thememan")]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
xchat-theme-manager
|
HexChat-theme-manager
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
- Shows previews of and can load/save themes
|
- Shows previews of and can load/save themes
|
||||||
|
Loading…
Reference in New Issue
Block a user