Zoitechat naming fixes.

This commit is contained in:
2026-01-07 20:33:55 -07:00
parent 7ab9301276
commit a1ed2b1bed
68 changed files with 840 additions and 803 deletions

View File

@@ -1,11 +1,11 @@
icondir = join_paths(get_option('datadir'), 'icons/hicolor')
install_data(
'zoitechat.png',
rename: 'io.github.Hexchat.png',
rename: 'io.github.Zoitechat.png',
install_dir: join_paths(icondir, '48x48/apps')
)
install_data(
'zoitechat.svg',
rename: 'io.github.Hexchat.svg',
rename: 'io.github.Zoitechat.svg',
install_dir: join_paths(icondir, 'scalable/apps')
)

View File

@@ -1,4 +1,4 @@
.TH HEXCHAT "1" "April 2013" "ZoiteChat @VERSION@" "User Commands"
.TH ZOITECHAT "1" "April 2013" "ZoiteChat @VERSION@" "User Commands"
.SH NAME
ZoiteChat \- IRC Client
.SH DESCRIPTION

View File

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="addon">
<id>io.github.Hexchat.Plugin.@NAME@</id>
<extends>io.github.Hexchat</extends>
<id>io.github.Zoitechat.Plugin.@NAME@</id>
<extends>io.github.Zoitechat</extends>
<name>@NAME@ Plugin</name>
<summary>@SUMMARY@</summary>
<url type="homepage">https://zoitechat.github.io/</url>
<url type="homepage">https://zoitechat.zoite.net/</url>
<project_license>@LICENSE@</project_license>
<metadata_license>CC0-1.0</metadata_license>
<update_contact>tingping_AT_fedoraproject.org</update_contact>

View File

@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>io.github.Hexchat</id>
<id>io.github.Zoitechat</id>
<name>ZoiteChat</name>
<launchable type="desktop-id">io.github.Hexchat.desktop</launchable>
<launchable type="desktop-id">io.github.Zoitechat.desktop</launchable>
<developer_name>ZoiteChat</developer_name>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<translation type="gettext">zoitechat</translation>
<summary>IRC Client</summary>
<description>
<p>ZoiteChat is an easy to use yet extensible IRC Client. It allows you to securely join multiple networks and talk to users privately or in channels using a customizable interface. You can even transfer files.</p>
<p>ZoiteChat is an easy to use yet extensible IRC Client based on Hexchat. It allows you to securely join multiple networks and talk to users privately or in channels using a customizable interface. You can even transfer files.</p>
<p>ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts.</p>
</description>
<url type="homepage">http://zoitechat.github.io</url>
<url type="homepage">http://zoitechat.zoite.net</url>
<url type="bugtracker">https://github.com/zoitechat/zoitechat</url>
<url type="donation">https://goo.gl/jESZvU</url>
<url type="help">https://zoitechat.readthedocs.io/en/latest/</url>
<url type="help">https://zoitechat.zoite.net/docs/en/latest/</url>
<screenshots>
<screenshot type="default">
<image>http://i.imgur.com/tLMguQz.png</image>
@@ -23,10 +22,18 @@
</screenshot>
</screenshots>
<provides>
<!-- Renamed from this -->
<id>zoitechat.desktop</id>
</provides>
<releases>
<release date="2026-01-06" version="2.17.0">
<description>
<p>This is a minor release with small improvements and fixes:</p>
<ul>
<li>Start of Zoitechat code base. Forked from Hexchat.</li>
<li>Fixed flatpak python plugin causing freezing.</li>
</ul>
</description>
</release>
<release date="2024-02-07" version="2.16.2">
<description>
<p>This is a minor release with small improvements and fixes:</p>
@@ -104,7 +111,7 @@
<description>
<p>This is largely a bug fix release though it has some large behind the scenes changes:</p>
<ul>
<li>Rename data files to use *io.github.Hexchat* name</li>
<li>Rename data files to use *io.github.Zoitechat* name</li>
<li>Add option (irc_reconnect_rejoin) to disable auto-rejoin on reconnect</li>
<li>Add ability to set custom tray icon separate of app icon</li>
<li>Fix Enchant 2.0+ support</li>

View File

@@ -4,12 +4,12 @@ GenericName=IRC Client
Comment=Chat with other people online
Keywords=IM;Chat;
Exec=@exec_command@
Icon=io.github.Hexchat
Icon=io.github.Zoitechat
Terminal=false
Type=Application
Categories=GTK;Network;IRCClient;
StartupNotify=true
StartupWMClass=Hexchat
StartupWMClass=Zoitechat
X-GNOME-UsesNotifications=true
MimeType=x-scheme-handler/irc;x-scheme-handler/ircs;
Actions=SafeMode;

View File

@@ -5,8 +5,8 @@ desktop_utils = find_program('desktop-file-validate', required: false)
if get_option('gtk-frontend')
if get_option('install-appdata')
zoitechat_appdata = i18n.merge_file(
input: 'io.github.Hexchat.appdata.xml.in',
output: 'io.github.Hexchat.appdata.xml',
input: 'io.github.Zoitechat.appdata.xml.in',
output: 'io.github.Zoitechat.appdata.xml',
po_dir: '../../po',
install: true,
install_dir: metainfodir
@@ -14,7 +14,7 @@ if get_option('gtk-frontend')
appstream_util = find_program('appstream-util', required: false)
if appstream_util.found()
test('Validate io.github.Hexchat.appdata.xml', appstream_util,
test('Validate io.github.Zoitechat.appdata.xml', appstream_util,
args: ['validate-relax', zoitechat_appdata]
)
endif
@@ -28,14 +28,14 @@ if get_option('gtk-frontend')
endif
desktop_file = configure_file(
input: 'io.github.Hexchat.desktop.in.in',
output: 'io.github.Hexchat.desktop.in',
input: 'io.github.Zoitechat.desktop.in.in',
output: 'io.github.Zoitechat.desktop.in',
configuration: desktop_conf
)
zoitechat_desktop = i18n.merge_file(
input: desktop_file,
output: 'io.github.Hexchat.desktop',
output: 'io.github.Zoitechat.desktop',
po_dir: '../../po',
type: 'desktop',
install: true,
@@ -43,7 +43,7 @@ if get_option('gtk-frontend')
)
if desktop_utils.found()
test('Validate io.github.Hexchat.desktop', desktop_utils,
test('Validate io.github.Zoitechat.desktop', desktop_utils,
args: [zoitechat_desktop]
)
endif
@@ -51,8 +51,8 @@ endif
if get_option('theme-manager')
htm_desktop = i18n.merge_file(
input: 'io.github.Hexchat.ThemeManager.desktop.in',
output: 'io.github.Hexchat.ThemeManager.desktop',
input: 'io.github.Zoitechat.ThemeManager.desktop.in',
output: 'io.github.Zoitechat.ThemeManager.desktop',
po_dir: '../../po',
type: 'desktop',
install: true,
@@ -60,12 +60,12 @@ if get_option('theme-manager')
)
if desktop_utils.found()
test('Validate io.github.Hexchat.ThemeManager.desktop', desktop_utils,
test('Validate io.github.Zoitechat.ThemeManager.desktop', desktop_utils,
args: [htm_desktop]
)
endif
install_data('io.github.Hexchat.ThemeManager.xml',
install_data('io.github.Zoitechat.ThemeManager.xml',
install_dir: join_paths(get_option('datadir'), 'mime/packages')
)
endif
@@ -118,8 +118,8 @@ if get_option('plugin')
conf.set('LICENSE', metainfo[2])
configure_file(
input: 'io.github.Hexchat.Plugin.metainfo.xml.in',
output: 'io.github.Hexchat.Plugin.@0@.metainfo.xml'.format(name),
input: 'io.github.Zoitechat.Plugin.metainfo.xml.in',
output: 'io.github.Zoitechat.Plugin.@0@.metainfo.xml'.format(name),
configuration: conf,
install_dir: get_option('install-plugin-metainfo') ? metainfodir : '',
)