new name after fork

This commit is contained in:
2026-01-05 23:12:38 -07:00
parent ca43595430
commit 4683ef705b
316 changed files with 5422 additions and 6141 deletions

View File

@@ -4,7 +4,7 @@
<extends>io.github.Hexchat</extends>
<name>@NAME@ Plugin</name>
<summary>@SUMMARY@</summary>
<url type="homepage">https://hexchat.github.io/</url>
<url type="homepage">https://zoitechat.github.io/</url>
<project_license>@LICENSE@</project_license>
<metadata_license>CC0-1.0</metadata_license>
<update_contact>tingping_AT_fedoraproject.org</update_contact>

View File

@@ -1,8 +1,8 @@
[Desktop Entry]
Name=HexChat Theme Manager
Comment=A simple theme manager for HexChat
Name=ZoiteChat Theme Manager
Comment=A simple theme manager for ZoiteChat
Exec=thememan %f
Icon=hexchat
Icon=zoitechat
Terminal=false
Type=Application
MimeType=application/x-hct;

View File

@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="application/x-hct">
<comment>HexChat theme archives</comment>
<icon name="hexchat" />
<comment>ZoiteChat theme archives</comment>
<icon name="zoitechat" />
<glob pattern="*.hct" weight="100" />
</mime-type>
</mime-info>

View File

@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>io.github.Hexchat</id>
<name>HexChat</name>
<name>ZoiteChat</name>
<launchable type="desktop-id">io.github.Hexchat.desktop</launchable>
<developer_name>HexChat</developer_name>
<developer_name>ZoiteChat</developer_name>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<translation type="gettext">hexchat</translation>
<translation type="gettext">zoitechat</translation>
<summary>IRC Client</summary>
<description>
<p>HexChat 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>HexChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts.</p>
<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 supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts.</p>
</description>
<url type="homepage">http://hexchat.github.io</url>
<url type="bugtracker">https://github.com/hexchat/hexchat</url>
<url type="homepage">http://zoitechat.github.io</url>
<url type="bugtracker">https://github.com/zoitechat/zoitechat</url>
<url type="donation">https://goo.gl/jESZvU</url>
<url type="help">https://hexchat.readthedocs.io/en/latest/</url>
<url type="help">https://zoitechat.readthedocs.io/en/latest/</url>
<screenshots>
<screenshot type="default">
<image>http://i.imgur.com/tLMguQz.png</image>
@@ -24,7 +24,7 @@
</screenshots>
<provides>
<!-- Renamed from this -->
<id>hexchat.desktop</id>
<id>zoitechat.desktop</id>
</provides>
<releases>
<release date="2024-02-07" version="2.16.2">

View File

@@ -1,5 +1,5 @@
[Desktop Entry]
Name=HexChat
Name=ZoiteChat
GenericName=IRC Client
Comment=Chat with other people online
Keywords=IM;Chat;
@@ -16,4 +16,4 @@ Actions=SafeMode;
[Desktop Action SafeMode]
Name=Open Safe Mode
Exec=hexchat --no-auto --no-plugins
Exec=zoitechat --no-auto --no-plugins

View File

@@ -4,7 +4,7 @@ desktop_utils = find_program('desktop-file-validate', required: false)
if get_option('gtk-frontend')
if get_option('install-appdata')
hexchat_appdata = i18n.merge_file(
zoitechat_appdata = i18n.merge_file(
input: 'io.github.Hexchat.appdata.xml.in',
output: 'io.github.Hexchat.appdata.xml',
po_dir: '../../po',
@@ -15,16 +15,16 @@ 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,
args: ['validate-relax', hexchat_appdata]
args: ['validate-relax', zoitechat_appdata]
)
endif
endif
desktop_conf = configuration_data()
if dbus_glib_dep.found()
desktop_conf.set('exec_command', 'hexchat --existing %U')
desktop_conf.set('exec_command', 'zoitechat --existing %U')
else
desktop_conf.set('exec_command', 'hexchat %U')
desktop_conf.set('exec_command', 'zoitechat %U')
endif
desktop_file = configure_file(
@@ -33,7 +33,7 @@ if get_option('gtk-frontend')
configuration: desktop_conf
)
hexchat_desktop = i18n.merge_file(
zoitechat_desktop = i18n.merge_file(
input: desktop_file,
output: 'io.github.Hexchat.desktop',
po_dir: '../../po',
@@ -44,7 +44,7 @@ if get_option('gtk-frontend')
if desktop_utils.found()
test('Validate io.github.Hexchat.desktop', desktop_utils,
args: [hexchat_desktop]
args: [zoitechat_desktop]
)
endif
endif