mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-09-23 08:07:10 +00:00
Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
424cf9d706 | ||
|
|
db32e3f38d | ||
|
|
7731bfa4e0 | ||
|
|
e72546aaec | ||
|
|
d6d648f0f4 |
@@ -35,7 +35,7 @@ jobs:
|
|||||||
libxkbcommon0 \
|
libxkbcommon0 \
|
||||||
libgtk-3-bin libglib2.0-bin shared-mime-info gsettings-desktop-schemas \
|
libgtk-3-bin libglib2.0-bin shared-mime-info gsettings-desktop-schemas \
|
||||||
liblua5.4-dev libpci-dev libperl-dev libssl-dev libayatana-appindicator3-dev \
|
liblua5.4-dev libpci-dev libperl-dev libssl-dev libayatana-appindicator3-dev \
|
||||||
perl python3 python3-minimal python3-dev python3-cffi mono-devel desktop-file-utils \
|
perl python3 python3-minimal python3-dev python3-cffi python3-sphinx mono-devel desktop-file-utils \
|
||||||
fonts-noto-color-emoji breeze-gtk-theme \
|
fonts-noto-color-emoji breeze-gtk-theme \
|
||||||
patchelf file curl
|
patchelf file curl
|
||||||
|
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install cffi
|
python -m pip install cffi
|
||||||
python -m pip install zstandard
|
python -m pip install zstandard
|
||||||
|
python -m pip install sphinx
|
||||||
|
|
||||||
$ProgressPreference = 'SilentlyContinue'
|
$ProgressPreference = 'SilentlyContinue'
|
||||||
function Download-WithRetry {
|
function Download-WithRetry {
|
||||||
|
|||||||
@@ -0,0 +1,42 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
if len(sys.argv) != 4:
|
||||||
|
raise SystemExit("usage: build-docs.py SOURCE_DIR OUTPUT_DIR STAMP_FILE")
|
||||||
|
|
||||||
|
source_dir = os.path.abspath(sys.argv[1])
|
||||||
|
output_dir = os.path.abspath(sys.argv[2])
|
||||||
|
stamp_file = os.path.abspath(sys.argv[3])
|
||||||
|
doctree_dir = output_dir + ".doctrees"
|
||||||
|
|
||||||
|
shutil.rmtree(output_dir, ignore_errors=True)
|
||||||
|
shutil.rmtree(doctree_dir, ignore_errors=True)
|
||||||
|
os.makedirs(output_dir, exist_ok=True)
|
||||||
|
|
||||||
|
subprocess.run(
|
||||||
|
[
|
||||||
|
sys.executable,
|
||||||
|
"-m",
|
||||||
|
"sphinx",
|
||||||
|
"-b",
|
||||||
|
"html",
|
||||||
|
"-d",
|
||||||
|
doctree_dir,
|
||||||
|
source_dir,
|
||||||
|
output_dir,
|
||||||
|
],
|
||||||
|
check=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
with open(stamp_file, "w", encoding="utf-8") as stamp:
|
||||||
|
stamp.write("built\n")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
if len(sys.argv) != 4:
|
||||||
|
raise SystemExit("usage: install-docs.py STAMP_FILE SOURCE_DIR DATADIR")
|
||||||
|
|
||||||
|
_, source_dir, datadir = sys.argv[1:]
|
||||||
|
source_dir = os.path.abspath(source_dir)
|
||||||
|
|
||||||
|
if not os.path.isfile(sys.argv[1]):
|
||||||
|
raise SystemExit("documentation build did not produce its stamp file")
|
||||||
|
if not os.path.isfile(os.path.join(source_dir, "index.html")):
|
||||||
|
raise SystemExit("documentation build did not produce index.html")
|
||||||
|
|
||||||
|
if os.path.isabs(datadir):
|
||||||
|
destdir = os.environ.get("DESTDIR", "")
|
||||||
|
if destdir:
|
||||||
|
data_root = os.path.join(destdir, datadir.lstrip("/\\"))
|
||||||
|
else:
|
||||||
|
data_root = datadir
|
||||||
|
else:
|
||||||
|
data_root = os.path.join(os.environ["MESON_INSTALL_DESTDIR_PREFIX"], datadir)
|
||||||
|
|
||||||
|
destination = os.path.join(data_root, "doc", "zoitechat", "html")
|
||||||
|
shutil.rmtree(destination, ignore_errors=True)
|
||||||
|
os.makedirs(os.path.dirname(destination), exist_ok=True)
|
||||||
|
shutil.copytree(source_dir, destination)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
@@ -54,6 +54,7 @@
|
|||||||
"buildsystem": "meson",
|
"buildsystem": "meson",
|
||||||
"config-opts": [
|
"config-opts": [
|
||||||
"-Ddbus-service-use-appid=true",
|
"-Ddbus-service-use-appid=true",
|
||||||
|
"-Dinstall-docs=false",
|
||||||
"-Dwith-perl=perl",
|
"-Dwith-perl=perl",
|
||||||
"-Dwith-python=python3",
|
"-Dwith-python=python3",
|
||||||
"-Dwith-lua=lua"
|
"-Dwith-lua=lua"
|
||||||
|
|||||||
+38
@@ -35,6 +35,9 @@ config_h.set_quoted('PACKAGE_NAME', meson.project_name())
|
|||||||
config_h.set_quoted('GETTEXT_PACKAGE', 'zoitechat')
|
config_h.set_quoted('GETTEXT_PACKAGE', 'zoitechat')
|
||||||
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'),
|
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'),
|
||||||
get_option('datadir'), 'locale'))
|
get_option('datadir'), 'locale'))
|
||||||
|
config_h.set_quoted('ZOITECHAT_DOCDIR',
|
||||||
|
join_paths(get_option('prefix'), get_option('datadir'), 'doc', 'zoitechat', 'html')
|
||||||
|
)
|
||||||
config_h.set10('ENABLE_NLS', true)
|
config_h.set10('ENABLE_NLS', true)
|
||||||
|
|
||||||
# Optional features
|
# Optional features
|
||||||
@@ -160,6 +163,41 @@ foreach ldflag : test_ldflags
|
|||||||
endforeach
|
endforeach
|
||||||
add_project_link_arguments(global_ldflags, language: 'c')
|
add_project_link_arguments(global_ldflags, language: 'c')
|
||||||
|
|
||||||
|
if get_option('install-docs')
|
||||||
|
docs_python = find_program('python3', 'python')
|
||||||
|
docs_sphinx = run_command(docs_python, '-c', 'import sphinx', check: false)
|
||||||
|
if docs_sphinx.returncode() != 0
|
||||||
|
error('Sphinx is required to build the local HTML documentation. Install Sphinx or configure with -Dinstall-docs=false.')
|
||||||
|
endif
|
||||||
|
|
||||||
|
docs_source_dir = join_paths(meson.source_root(), 'docs')
|
||||||
|
docs_output_dir = join_paths(meson.build_root(), 'docs-html')
|
||||||
|
docs_build_script = join_paths(docs_source_dir, 'build-docs.py')
|
||||||
|
docs_install_script = join_paths(docs_source_dir, 'install-docs.py')
|
||||||
|
|
||||||
|
docs_target = custom_target(
|
||||||
|
'html-documentation',
|
||||||
|
output: 'html-documentation.stamp',
|
||||||
|
command: [
|
||||||
|
docs_python,
|
||||||
|
docs_build_script,
|
||||||
|
docs_source_dir,
|
||||||
|
docs_output_dir,
|
||||||
|
'@OUTPUT@',
|
||||||
|
],
|
||||||
|
build_by_default: true,
|
||||||
|
build_always_stale: true,
|
||||||
|
)
|
||||||
|
|
||||||
|
meson.add_install_script(
|
||||||
|
docs_python,
|
||||||
|
docs_install_script,
|
||||||
|
docs_target,
|
||||||
|
docs_output_dir,
|
||||||
|
get_option('datadir'),
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
subdir('src')
|
subdir('src')
|
||||||
if get_option('plugin')
|
if get_option('plugin')
|
||||||
subdir('plugins')
|
subdir('plugins')
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ option('install-appdata', type: 'boolean',
|
|||||||
option('install-plugin-metainfo', type: 'boolean', value: false,
|
option('install-plugin-metainfo', type: 'boolean', value: false,
|
||||||
description: 'Installs metainfo files for enabled plugins, useful when distros create split packages'
|
description: 'Installs metainfo files for enabled plugins, useful when distros create split packages'
|
||||||
)
|
)
|
||||||
|
option('install-docs', type: 'boolean', value: true,
|
||||||
|
description: 'Build and install the local HTML documentation'
|
||||||
|
)
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
option('with-checksum', type: 'boolean',
|
option('with-checksum', type: 'boolean',
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ BuildRequires: perl
|
|||||||
BuildRequires: perl-devel
|
BuildRequires: perl-devel
|
||||||
BuildRequires: python3
|
BuildRequires: python3
|
||||||
BuildRequires: python3-cffi
|
BuildRequires: python3-cffi
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
BuildRequires: publicsuffix-list
|
BuildRequires: publicsuffix-list
|
||||||
BuildRequires: xwayland-run
|
BuildRequires: xwayland-run
|
||||||
BuildRequires: weston
|
BuildRequires: weston
|
||||||
@@ -87,6 +88,7 @@ xwfb-run -- /usr/bin/meson test -C %{_vpath_builddir} --num-processes %{_smp_bui
|
|||||||
%{_datadir}/icons/hicolor/scalable/apps/net.zoite.Zoitechat.svg
|
%{_datadir}/icons/hicolor/scalable/apps/net.zoite.Zoitechat.svg
|
||||||
%{_datadir}/metainfo/net.zoite.Zoitechat.appdata.xml
|
%{_datadir}/metainfo/net.zoite.Zoitechat.appdata.xml
|
||||||
%{_datadir}/metainfo/net.zoite.Zoitechat*.metainfo.xml
|
%{_datadir}/metainfo/net.zoite.Zoitechat*.metainfo.xml
|
||||||
|
%{_datadir}/doc/zoitechat/html/
|
||||||
%dir %{_libdir}/zoitechat
|
%dir %{_libdir}/zoitechat
|
||||||
%dir %{_libdir}/zoitechat/plugins
|
%dir %{_libdir}/zoitechat/plugins
|
||||||
%dir %{_libdir}/zoitechat/python
|
%dir %{_libdir}/zoitechat/python
|
||||||
|
|||||||
@@ -591,6 +591,7 @@ const struct prefs vars[] =
|
|||||||
{"text_replay", P_OFFINT (hex_text_replay), TYPE_BOOL},
|
{"text_replay", P_OFFINT (hex_text_replay), TYPE_BOOL},
|
||||||
{"text_search_case_match", P_OFFINT (hex_text_search_case_match), TYPE_BOOL},
|
{"text_search_case_match", P_OFFINT (hex_text_search_case_match), TYPE_BOOL},
|
||||||
{"text_search_highlight_all", P_OFFINT (hex_text_search_highlight_all), TYPE_BOOL},
|
{"text_search_highlight_all", P_OFFINT (hex_text_search_highlight_all), TYPE_BOOL},
|
||||||
|
{"text_search_keep_position", P_OFFINT (hex_text_search_keep_position), TYPE_BOOL},
|
||||||
{"text_search_follow", P_OFFINT (hex_text_search_follow), TYPE_BOOL},
|
{"text_search_follow", P_OFFINT (hex_text_search_follow), TYPE_BOOL},
|
||||||
{"text_search_regexp", P_OFFINT (hex_text_search_regexp), TYPE_BOOL},
|
{"text_search_regexp", P_OFFINT (hex_text_search_regexp), TYPE_BOOL},
|
||||||
{"text_show_marker", P_OFFINT (hex_text_show_marker), TYPE_BOOL},
|
{"text_show_marker", P_OFFINT (hex_text_show_marker), TYPE_BOOL},
|
||||||
|
|||||||
@@ -217,6 +217,7 @@ struct zoitechatprefs
|
|||||||
unsigned int hex_text_replay;
|
unsigned int hex_text_replay;
|
||||||
unsigned int hex_text_search_case_match;
|
unsigned int hex_text_search_case_match;
|
||||||
unsigned int hex_text_search_highlight_all;
|
unsigned int hex_text_search_highlight_all;
|
||||||
|
unsigned int hex_text_search_keep_position;
|
||||||
unsigned int hex_text_search_follow;
|
unsigned int hex_text_search_follow;
|
||||||
unsigned int hex_text_search_regexp;
|
unsigned int hex_text_search_regexp;
|
||||||
unsigned int hex_text_show_marker;
|
unsigned int hex_text_show_marker;
|
||||||
|
|||||||
+15
-2
@@ -4688,7 +4688,11 @@ mg_search_toggle(session *sess)
|
|||||||
{
|
{
|
||||||
gtk_widget_hide(sess->gui->shbox);
|
gtk_widget_hide(sess->gui->shbox);
|
||||||
gtk_widget_grab_focus(sess->gui->input_box);
|
gtk_widget_grab_focus(sess->gui->input_box);
|
||||||
|
if (prefs.hex_text_search_keep_position)
|
||||||
|
g_signal_handler_block (sess->gui->shentry, sess->gui->search_changed_signal);
|
||||||
gtk_entry_set_text(GTK_ENTRY(sess->gui->shentry), "");
|
gtk_entry_set_text(GTK_ENTRY(sess->gui->shentry), "");
|
||||||
|
if (prefs.hex_text_search_keep_position)
|
||||||
|
g_signal_handler_unblock (sess->gui->shentry, sess->gui->search_changed_signal);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -4702,10 +4706,19 @@ mg_search_toggle(session *sess)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
search_handle_esc (GtkWidget *win, GdkEventKey *key, session *sess)
|
search_handle_keypress (GtkWidget *win, GdkEventKey *key, session *sess)
|
||||||
{
|
{
|
||||||
if (key->keyval == GDK_KEY_Escape)
|
if (key->keyval == GDK_KEY_Escape)
|
||||||
|
{
|
||||||
mg_search_toggle(sess);
|
mg_search_toggle(sess);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (((key->keyval == GDK_KEY_Page_Up || key->keyval == GDK_KEY_Page_Down) &&
|
||||||
|
!(key->state & gtk_accelerator_get_default_mod_mask ())) ||
|
||||||
|
((key->keyval == GDK_KEY_Up || key->keyval == GDK_KEY_Down) &&
|
||||||
|
(key->state & gtk_accelerator_get_default_mod_mask ()) == GDK_SHIFT_MASK))
|
||||||
|
return key_handle_key_press (sess->gui->input_box, key, sess);
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@@ -4735,7 +4748,7 @@ mg_create_search(session *sess, GtkWidget *box)
|
|||||||
mg_apply_emoji_fallback_widget (entry);
|
mg_apply_emoji_fallback_widget (entry);
|
||||||
mg_apply_entry_scroll_artifact_fix (entry);
|
mg_apply_entry_scroll_artifact_fix (entry);
|
||||||
gui->search_changed_signal = g_signal_connect(G_OBJECT(entry), "changed", G_CALLBACK(search_handle_change), sess);
|
gui->search_changed_signal = g_signal_connect(G_OBJECT(entry), "changed", G_CALLBACK(search_handle_change), sess);
|
||||||
g_signal_connect (G_OBJECT (entry), "key-press-event", G_CALLBACK (search_handle_esc), sess);
|
g_signal_connect (G_OBJECT (entry), "key-press-event", G_CALLBACK (search_handle_keypress), sess);
|
||||||
g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(mg_search_handle_next), sess);
|
g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(mg_search_handle_next), sess);
|
||||||
gtk_entry_set_icon_activatable (GTK_ENTRY (entry), GTK_ENTRY_ICON_SECONDARY, FALSE);
|
gtk_entry_set_icon_activatable (GTK_ENTRY (entry), GTK_ENTRY_ICON_SECONDARY, FALSE);
|
||||||
gtk_entry_set_icon_tooltip_text (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, _("Search hit end or not found."));
|
gtk_entry_set_icon_tooltip_text (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, _("Search hit end or not found."));
|
||||||
|
|||||||
@@ -1740,9 +1740,50 @@ menu_ctcpguiopen (void)
|
|||||||
editlist_gui_open (NULL, NULL, ctcp_list, buf, "ctcpreply", "ctcpreply.conf", ctcp_help);
|
editlist_gui_open (NULL, NULL, ctcp_list, buf, "ctcpreply", "ctcpreply.conf", ctcp_help);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char *
|
||||||
|
menu_find_local_docs (void)
|
||||||
|
{
|
||||||
|
char *path;
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
char *base_path;
|
||||||
|
|
||||||
|
base_path = g_win32_get_package_installation_directory_of_module (NULL);
|
||||||
|
if (!base_path)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
path = g_build_filename (base_path, "share", "doc", "zoitechat", "html", "index.html", NULL);
|
||||||
|
g_free (base_path);
|
||||||
|
#else
|
||||||
|
const char *appdir;
|
||||||
|
|
||||||
|
appdir = g_getenv ("APPDIR");
|
||||||
|
if (appdir && *appdir)
|
||||||
|
path = g_build_filename (appdir, "usr", "share", "doc", "zoitechat", "html", "index.html", NULL);
|
||||||
|
else
|
||||||
|
path = g_build_filename (ZOITECHAT_DOCDIR, "index.html", NULL);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (g_file_test (path, G_FILE_TEST_IS_REGULAR))
|
||||||
|
return path;
|
||||||
|
|
||||||
|
g_free (path);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
menu_docs (GtkWidget *wid, gpointer none)
|
menu_docs (GtkWidget *wid, gpointer none)
|
||||||
{
|
{
|
||||||
|
char *path;
|
||||||
|
|
||||||
|
path = menu_find_local_docs ();
|
||||||
|
if (path)
|
||||||
|
{
|
||||||
|
fe_open_url (path);
|
||||||
|
g_free (path);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
fe_open_url ("https://docs.zoitechat.org/en/latest/");
|
fe_open_url ("https://docs.zoitechat.org/en/latest/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ static const setting appearance_settings[] =
|
|||||||
{ST_TOGGLE, N_("Colored nick names"), P_OFFINTNL(hex_text_color_nicks), N_("Give each person on IRC a different color"),0,0},
|
{ST_TOGGLE, N_("Colored nick names"), P_OFFINTNL(hex_text_color_nicks), N_("Give each person on IRC a different color"),0,0},
|
||||||
{ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(hex_text_indent), N_("Make nick names right-justified"),0,0},
|
{ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(hex_text_indent), N_("Make nick names right-justified"),0,0},
|
||||||
{ST_TOGGLE, N_ ("Show marker line"), P_OFFINTNL (hex_text_show_marker), N_ ("Insert a red line after the last read text."), 0, 0},
|
{ST_TOGGLE, N_ ("Show marker line"), P_OFFINTNL (hex_text_show_marker), N_ ("Insert a red line after the last read text."), 0, 0},
|
||||||
|
{ST_TOGGLE, N_("Keep search position when closing"), P_OFFINTNL(hex_text_search_keep_position), 0, 0, 0},
|
||||||
|
|
||||||
{ST_HEADER, N_("Timestamps"),0,0,0},
|
{ST_HEADER, N_("Timestamps"),0,0,0},
|
||||||
{ST_TOGGLE, N_("Enable timestamps"), P_OFFINTNL(hex_stamp_text),0,0,1},
|
{ST_TOGGLE, N_("Enable timestamps"), P_OFFINTNL(hex_stamp_text),0,0,1},
|
||||||
|
|||||||
@@ -30,6 +30,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<Target Name="Build">
|
<Target Name="Build">
|
||||||
|
<Exec Command=""$(Python3Path)\python.exe" "$(SolutionDir)..\docs\build-docs.py" "$(SolutionDir)..\docs" "$(ZoiteChatBuild)\$(ZoiteChatPlatform)\docs-html" "$(ZoiteChatBuild)\$(ZoiteChatPlatform)\html-documentation.stamp"" />
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="$(DepsRoot)\bin\*atk-1.0-0.dll" />
|
<None Include="$(DepsRoot)\bin\*atk-1.0-0.dll" />
|
||||||
<None Include="$(DepsRoot)\bin\*cairo*.dll" />
|
<None Include="$(DepsRoot)\bin\*cairo*.dll" />
|
||||||
@@ -82,6 +84,7 @@
|
|||||||
<GdkPixbufLoaderCache Include="$(DepsRoot)\lib\gdk-pixbuf-2.0\**\loaders.cache" />
|
<GdkPixbufLoaderCache Include="$(DepsRoot)\lib\gdk-pixbuf-2.0\**\loaders.cache" />
|
||||||
|
|
||||||
<FontConfig Include="$(DepsRoot)\etc\fonts\*" />
|
<FontConfig Include="$(DepsRoot)\etc\fonts\*" />
|
||||||
|
<Docs Include="$(ZoiteChatBuild)\$(ZoiteChatPlatform)\docs-html\**\*" />
|
||||||
<Share Include="share\**\*" />
|
<Share Include="share\**\*" />
|
||||||
<Locale Include="$(ZoiteChatBin)locale\**\*;$(DepsRoot)\share\locale\**\*" />
|
<Locale Include="$(ZoiteChatBin)locale\**\*;$(DepsRoot)\share\locale\**\*" />
|
||||||
<MSWindowsTheme Include="$(DepsRoot)\share\themes\MS-Windows\**\*" />
|
<MSWindowsTheme Include="$(DepsRoot)\share\themes\MS-Windows\**\*" />
|
||||||
@@ -97,6 +100,7 @@
|
|||||||
<Copy SourceFiles="@(GdkPixbufLoaderCache)" DestinationFiles="@(GdkPixbufLoaderCache->'$(ZoiteChatRel)\lib\gdk-pixbuf-2.0\%(RecursiveDir)%(Filename)%(Extension)')" />
|
<Copy SourceFiles="@(GdkPixbufLoaderCache)" DestinationFiles="@(GdkPixbufLoaderCache->'$(ZoiteChatRel)\lib\gdk-pixbuf-2.0\%(RecursiveDir)%(Filename)%(Extension)')" />
|
||||||
<Copy SourceFiles="@(GSettingsSchemas)" DestinationFiles="@(GSettingsSchemas->'$(ZoiteChatRel)\share\glib-2.0\schemas\%(Filename)%(Extension)')" />
|
<Copy SourceFiles="@(GSettingsSchemas)" DestinationFiles="@(GSettingsSchemas->'$(ZoiteChatRel)\share\glib-2.0\schemas\%(Filename)%(Extension)')" />
|
||||||
<Copy SourceFiles="@(Share)" DestinationFiles="@(Share->'$(ZoiteChatRel)\share\%(RecursiveDir)%(Filename)%(Extension)')" />
|
<Copy SourceFiles="@(Share)" DestinationFiles="@(Share->'$(ZoiteChatRel)\share\%(RecursiveDir)%(Filename)%(Extension)')" />
|
||||||
|
<Copy SourceFiles="@(Docs)" DestinationFiles="@(Docs->'$(ZoiteChatRel)\share\doc\zoitechat\html\%(RecursiveDir)%(Filename)%(Extension)')" />
|
||||||
<Copy SourceFiles="..\..\COPYING" DestinationFolder="$(ZoiteChatRel)\share\doc\zoitechat" />
|
<Copy SourceFiles="..\..\COPYING" DestinationFolder="$(ZoiteChatRel)\share\doc\zoitechat" />
|
||||||
<Copy SourceFiles="$(WinSparklePath)\COPYING" DestinationFolder="$(ZoiteChatRel)\share\doc\WinSparkle" />
|
<Copy SourceFiles="$(WinSparklePath)\COPYING" DestinationFolder="$(ZoiteChatRel)\share\doc\WinSparkle" />
|
||||||
<Copy SourceFiles="@(EnchantProviders)" DestinationFolder="$(ZoiteChatRel)\lib\enchant-2" />
|
<Copy SourceFiles="@(EnchantProviders)" DestinationFolder="$(ZoiteChatRel)\lib\enchant-2" />
|
||||||
|
|||||||
Reference in New Issue
Block a user