feat: Revert to 'irssi' branding and add installer script

This single commit performs two major actions:

1.  Reverts all instances of the 'irssip' custom branding back to the original 'irssi' naming. This includes a comprehensive and precise update of the binary name, default home directory, configuration files, documentation, tests, and all internal #include paths. The 'irssiproxy' module name is intentionally left unchanged.

2.  Introduces 'configure.sh', a portable shell script that guides the user through the installation process, offering side-by-side installation to prevent conflicts.

This approach ensures a clean, atomic change that prepares the branch for both upstream pull requests and user-friendly installation.
This commit is contained in:
kofany 2025-08-26 01:24:13 +02:00
commit 68214e5f20
298 changed files with 2123 additions and 2996 deletions

View file

@ -19,15 +19,15 @@
*/
#include "module.h"
#include <irssip/src/core/modules.h>
#include <irssip/src/fe-common/core/module-formats.h>
#include <irssip/src/core/commands.h>
#include <irssip/src/core/levels.h>
#include <irssip/src/lib-config/iconfig.h>
#include <irssip/src/core/settings.h>
#include <irssip/src/fe-common/core/printtext.h>
#include <irssip/src/fe-common/core/formats.h>
#include <irssip/src/core/recode.h>
#include <irssi/src/core/modules.h>
#include <irssi/src/fe-common/core/module-formats.h>
#include <irssi/src/core/commands.h>
#include <irssi/src/core/levels.h>
#include <irssi/src/lib-config/iconfig.h>
#include <irssi/src/core/settings.h>
#include <irssi/src/fe-common/core/printtext.h>
#include <irssi/src/fe-common/core/formats.h>
#include <irssi/src/core/recode.h>
static char *recode_fallback = NULL;
static char *recode_out_default = NULL;