Download raw body.
update editors/TeXmacs 2.1.5
Here is an inline diff for editors/TeXmacs 2.1.5.
changelog:
https://www.texmacs.org/tmweb/about/changes.en.html
port-wise it does the following:
- removes the subversion versioning suffix from WRKDIST
- adds security/gnutls to WANTLIB and LIB_DEPENDS for the new online
collaboration feature
- fixes common lisp plugin by replacing #!/bin/bash with #!/bin/sh like
in x11/remmina
- garbage collects patches
- QTMPipeLink.cpp uses wordexp which is not on openbsd. instead patch it
out and fall through to the #else and use QProcess::splitCommand
instead
- new patch to avoid including malloc.h
- regens socket_notifier.cpp patch
- removes R from README because it is broken
I tested the other plugins and they work other than R. I tested the
online collaboration feature described in Help > Manual > Remote
tools. I tested both remote files and live documents between two
accounts.
This diff was getting long so I left off adding RUN_DEPENDS for
textproc/{hunspell,aspell} for a future discussion once this update
lands.
Feedback and tests are welcome. OK?
Index: Makefile
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/Makefile,v
diff -u -p -r1.36 Makefile
--- Makefile 3 Dec 2025 12:43:32 -0000 1.36
+++ Makefile 14 Aug 2026 11:22:27 -0000
@@ -1,8 +1,10 @@
COMMENT= wysiwyw (what you see is what you want) editing platform
-DISTNAME= TeXmacs-2.1.2-src
+V= 2.1.5
+SVNREV= 15315
+DISTNAME= TeXmacs-${V}-src
PKGNAME= ${DISTNAME:S/-src//}
-REVISION= 5
+WRKDIST= ${WRKDIR}/${DISTNAME:S/-src/.${SVNREV}/}
CATEGORIES= editors print x11
@@ -16,7 +18,7 @@ SITES= http://texmacs.org/Download/ftp/
PERMIT_PACKAGE= Yes
WANTLIB += ${COMPILER_LIBCXX} Qt5Core Qt5Gui Qt5PrintSupport Qt5Svg
-WANTLIB += Qt5Widgets c execinfo freetype gmp guile jpeg ltdl
+WANTLIB += Qt5Widgets c execinfo freetype gmp gnutls guile jpeg ltdl
WANTLIB += m png sqlite3 util z
# needs c++ and python
@@ -38,6 +40,7 @@ LIB_DEPENDS= databases/sqlite3 \
graphics/jpeg \
graphics/png \
lang/guile \
+ security/gnutls \
x11/qt5/qtsvg,-main
MODCMAKE_LDFLAGS = -L${LOCALBASE}/lib
@@ -53,5 +56,6 @@ post-extract:
post-install:
${MODPY_COMPILEALL} ${PREFIX}/share/TeXmacs/plugins/tmpy
+ sed -i '1s,/bash,/sh,' ${PREFIX}/share/TeXmacs/plugins/lisp/bin/tm_lisp
.include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/distinfo,v
diff -u -p -r1.7 distinfo
--- distinfo 6 Feb 2023 22:33:45 -0000 1.7
+++ distinfo 14 Aug 2026 11:22:27 -0000
@@ -1,2 +1,2 @@
-SHA256 (TeXmacs-2.1.2-src.tar.gz) = Ds9gxOwMYSttEWrawgxLHGxHyMBvt8WmyPIwBP2g/CM=
-SIZE (TeXmacs-2.1.2-src.tar.gz) = 36224939
+SHA256 (TeXmacs-2.1.5-src.tar.gz) = s6EnvbqOeQELI5KRQVy+NDEzNSHiRHeoFLWG4bQCc2A=
+SIZE (TeXmacs-2.1.5-src.tar.gz) = 95945496
Index: patches/patch-CMakeLists_txt
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/patches/patch-CMakeLists_txt,v
diff -u -p -r1.6 patch-CMakeLists_txt
--- patches/patch-CMakeLists_txt 11 Mar 2022 18:58:26 -0000 1.6
+++ patches/patch-CMakeLists_txt 14 Aug 2026 11:22:27 -0000
@@ -1,7 +1,7 @@
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
-@@ -644,7 +644,7 @@ if (TEXMACS_GUI MATCHES "Qt.*")
+@@ -682,7 +682,7 @@ if (TEXMACS_GUI MATCHES "Qt.*")
set (TeXmacs_All_SRCS ${TeXmacs_All_SRCS} ${TeXmacs_Qt_SRCS} ${TeXmacs_Qt_Moc_HDRS})
set (TeXmacs_Include_Dirs ${TeXmacs_Include_Dirs} ${QT_INCLUDES})
Index: patches/patch-src_Kernel_Containers_hashtree_cpp
===================================================================
RCS file: patches/patch-src_Kernel_Containers_hashtree_cpp
diff -N patches/patch-src_Kernel_Containers_hashtree_cpp
--- patches/patch-src_Kernel_Containers_hashtree_cpp 5 Feb 2025 05:06:32 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-https://svn.savannah.gnu.org/viewvc/texmacs/trunk/src/src/Kernel/Containers/hashtree.cpp?r1=2717&r2=14566&diff_format=u
-
-Index: src/Kernel/Containers/hashtree.cpp
---- src/Kernel/Containers/hashtree.cpp.orig
-+++ src/Kernel/Containers/hashtree.cpp
-@@ -94,7 +94,7 @@ hashtree<K,V>::operator-> (void) {
-
- template<class K, class V> inline hashtree<K,V>
- hashtree<K,V>::operator[] (K key) {
-- if (*this->contains (key)) return *this->children (key);
-+ if ((*this)->contains (key)) return (*this)->children (key);
- else FAILED ("read-access to non-existent node requested");
- }
-
Index: patches/patch-src_Plugins_Qt_QTMPipeLink_cpp
===================================================================
RCS file: patches/patch-src_Plugins_Qt_QTMPipeLink_cpp
diff -N patches/patch-src_Plugins_Qt_QTMPipeLink_cpp
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-src_Plugins_Qt_QTMPipeLink_cpp 14 Aug 2026 11:22:27 -0000
@@ -0,0 +1,23 @@
+remove wordexp and use QProcess::splitCommand instead
+
+Index: src/Plugins/Qt/QTMPipeLink.cpp
+--- src/Plugins/Qt/QTMPipeLink.cpp.orig
++++ src/Plugins/Qt/QTMPipeLink.cpp
+@@ -17,7 +17,7 @@
+
+ #ifdef OS_MINGW
+ #include <windows.h>
+-#elif !defined(OS_ANDROID)
++#elif !defined(OS_ANDROID) && !defined(__OpenBSD__)
+ #include <wordexp.h>
+ #endif
+
+@@ -75,7 +75,7 @@ QTMPipeLink::launchCmd () {
+
+ LocalFree(argv);
+
+-#elif !defined(OS_ANDROID)
++#elif !defined(OS_ANDROID) && !defined(__OpenBSD__)
+ wordexp_t exp;
+ memset(&exp, 0, sizeof(exp));
+
Index: patches/patch-src_Plugins_Qt_QTMSockets_cpp
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/patches/patch-src_Plugins_Qt_QTMSockets_cpp,v
diff -u -p -r1.3 patch-src_Plugins_Qt_QTMSockets_cpp
--- patches/patch-src_Plugins_Qt_QTMSockets_cpp 6 Feb 2023 22:33:45 -0000 1.3
+++ patches/patch-src_Plugins_Qt_QTMSockets_cpp 14 Aug 2026 11:22:27 -0000
@@ -1,7 +1,7 @@
Index: src/Plugins/Qt/QTMSockets.cpp
--- src/Plugins/Qt/QTMSockets.cpp.orig
+++ src/Plugins/Qt/QTMSockets.cpp
-@@ -20,6 +20,7 @@
+@@ -31,6 +31,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
Index: patches/patch-src_Plugins_Qt_qt_gui_cpp
===================================================================
RCS file: patches/patch-src_Plugins_Qt_qt_gui_cpp
diff -N patches/patch-src_Plugins_Qt_qt_gui_cpp
--- patches/patch-src_Plugins_Qt_qt_gui_cpp 11 Mar 2022 18:58:26 -0000 1.7
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,12 +0,0 @@
-Index: src/Plugins/Qt/qt_gui.cpp
---- src/Plugins/Qt/qt_gui.cpp.orig
-+++ src/Plugins/Qt/qt_gui.cpp
-@@ -878,7 +878,7 @@ qt_gui_rep::update () {
-
- time_t delay = delayed_commands.lapse - texmacs_time();
- if (needing_update) delay = 0;
-- else delay = max (0, min (std_delay, delay));
-+ else delay = max (static_cast<time_t>(0), min (static_cast<time_t>(std_delay), delay));
- if (postpone_treatment) delay= 9; // NOTE: force occasional display
-
- updatetimer->start (delay);
Index: patches/patch-src_System_Link_cmdline_link_cpp
===================================================================
RCS file: patches/patch-src_System_Link_cmdline_link_cpp
diff -N patches/patch-src_System_Link_cmdline_link_cpp
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-src_System_Link_cmdline_link_cpp 14 Aug 2026 11:22:27 -0000
@@ -0,0 +1,12 @@
+Index: src/System/Link/cmdline_link.cpp
+--- src/System/Link/cmdline_link.cpp.orig
++++ src/System/Link/cmdline_link.cpp
+@@ -36,7 +36,7 @@ namespace wsoc {
+ #define TM_FD_SET(fd, set) FD_SET((u_int) fd, set)
+ #endif // OS_MINGW
+
+-#if !defined(__APPLE__) && !defined(__FreeBSD__)
++#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
+ #include <malloc.h>
+ #endif
+
Index: patches/patch-src_System_Link_socket_notifier_cpp
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/patches/patch-src_System_Link_socket_notifier_cpp,v
diff -u -p -r1.3 patch-src_System_Link_socket_notifier_cpp
--- patches/patch-src_System_Link_socket_notifier_cpp 11 Mar 2022 18:58:26 -0000 1.3
+++ patches/patch-src_System_Link_socket_notifier_cpp 14 Aug 2026 11:22:27 -0000
@@ -1,16 +1,7 @@
---- src/System/Link/socket_notifier.cpp.orig Mon Jun 15 10:44:50 2015
-+++ src/System/Link/socket_notifier.cpp Sun Sep 11 11:14:49 2016
-@@ -8,7 +8,8 @@
- * It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
- * in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
- ******************************************************************************/
--#ifndef QTTEXMACS
-+#if defined (QTTEXMACS) && defined (QTPIPES)
-+#else
-
- #include "config.h"
-
-@@ -16,6 +17,7 @@
+Index: src/System/Link/socket_notifier.cpp
+--- src/System/Link/socket_notifier.cpp.orig
++++ src/System/Link/socket_notifier.cpp
+@@ -21,6 +21,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/wait.h>
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/pkg/PLIST,v
diff -u -p -r1.14 PLIST
--- pkg/PLIST 23 Oct 2025 13:19:53 -0000 1.14
+++ pkg/PLIST 14 Aug 2026 11:22:27 -0000
@@ -13,9 +13,7 @@ share/TeXmacs/COPYING
share/TeXmacs/INSTALL
share/TeXmacs/LICENSE
share/TeXmacs/README
-share/TeXmacs/SVNREV
share/TeXmacs/TEX_FONTS
-share/TeXmacs/bin/
share/TeXmacs/doc/
share/TeXmacs/doc/about/
share/TeXmacs/doc/about/about-summary.de.tm
@@ -286,7 +284,7 @@ share/TeXmacs/doc/about/welcome/welcome.
share/TeXmacs/doc/about/welcome/welcome.es.tm
share/TeXmacs/doc/about/welcome/welcome.fr.tm
share/TeXmacs/doc/about/welcome/welcome.it.tm
-share/TeXmacs/doc/about/welcome/welcome.zh.tmml
+share/TeXmacs/doc/about/welcome/welcome.zh.tm
share/TeXmacs/doc/devel/
share/TeXmacs/doc/devel/format/
share/TeXmacs/doc/devel/format/basics/
@@ -752,6 +750,7 @@ share/TeXmacs/doc/main/convert/man-conve
share/TeXmacs/doc/main/convert/man-convert.es.tm
share/TeXmacs/doc/main/convert/man-convert.fr.tm
share/TeXmacs/doc/main/convert/man-convert.it.tm
+share/TeXmacs/doc/main/convert/man-graphics-export.en.tm
share/TeXmacs/doc/main/convert/new/
share/TeXmacs/doc/main/convert/new/man-newconv.de.tm
share/TeXmacs/doc/main/convert/new/man-newconv.en.tm
@@ -834,6 +833,7 @@ share/TeXmacs/doc/main/interface/man-itf
share/TeXmacs/doc/main/interface/man-itf.fr.tm
share/TeXmacs/doc/main/interface/man-itf.it.tm
share/TeXmacs/doc/main/interface/man-itf.pt.tm
+share/TeXmacs/doc/main/interface/man-itf.zh.tm
share/TeXmacs/doc/main/interface/man-remote-plugins.en.tm
share/TeXmacs/doc/main/interface/man-scripting-language.en.tm
share/TeXmacs/doc/main/interface/man-session-basic.de.tm
@@ -891,6 +891,7 @@ share/TeXmacs/doc/main/links/man-bibliog
share/TeXmacs/doc/main/links/man-bibliography.it.tm
share/TeXmacs/doc/main/links/man-bibliography.pl.tm
share/TeXmacs/doc/main/links/man-bibliography.pt.tm
+share/TeXmacs/doc/main/links/man-bibliography.zh.tm
share/TeXmacs/doc/main/links/man-create-links.de.tm
share/TeXmacs/doc/main/links/man-create-links.en.tm
share/TeXmacs/doc/main/links/man-create-links.es.tm
@@ -937,6 +938,7 @@ share/TeXmacs/doc/main/links/man-multifi
share/TeXmacs/doc/main/links/man-multifile.it.tm
share/TeXmacs/doc/main/links/man-multifile.pl.tm
share/TeXmacs/doc/main/links/man-multifile.pt.tm
+share/TeXmacs/doc/main/links/man-multifile.zh.tm
share/TeXmacs/doc/main/links/man-multiple-extractions.en.tm
share/TeXmacs/doc/main/links/man-toc.de.tm
share/TeXmacs/doc/main/links/man-toc.en.tm
@@ -953,7 +955,7 @@ share/TeXmacs/doc/main/man-manual.fr.tm
share/TeXmacs/doc/main/man-manual.it.tm
share/TeXmacs/doc/main/man-manual.pl.tm
share/TeXmacs/doc/main/man-manual.pt.tm
-share/TeXmacs/doc/main/man-manual.zh.tmml
+share/TeXmacs/doc/main/man-manual.zh.tm
share/TeXmacs/doc/main/man-reference.de.tm
share/TeXmacs/doc/main/man-reference.en.tm
share/TeXmacs/doc/main/man-reference.zh.tm
@@ -1026,6 +1028,60 @@ share/TeXmacs/doc/main/math/semantics/ma
share/TeXmacs/doc/main/math/semantics/man-semantics.zh.tm
share/TeXmacs/doc/main/math/semantics/man-syntax-correction.en.tm
share/TeXmacs/doc/main/math/semantics/man-syntax-correction.zh.tm
+share/TeXmacs/doc/main/remote/
+share/TeXmacs/doc/main/remote/client/
+share/TeXmacs/doc/main/remote/client/chat/
+share/TeXmacs/doc/main/remote/client/chat/man-creating.en.tm
+share/TeXmacs/doc/main/remote/client/chat/man-joining.en.tm
+share/TeXmacs/doc/main/remote/client/connect/
+share/TeXmacs/doc/main/remote/client/connect/man-accounts.en.tm
+share/TeXmacs/doc/main/remote/client/man-chat.en.tm
+share/TeXmacs/doc/main/remote/client/man-connect.en.tm
+share/TeXmacs/doc/main/remote/client/man-permissions.en.tm
+share/TeXmacs/doc/main/remote/client/man-remote-notes.en.tm
+share/TeXmacs/doc/main/remote/client/man-share.en.tm
+share/TeXmacs/doc/main/remote/client/notes/
+share/TeXmacs/doc/main/remote/client/notes/man-security-privacy.en.tm
+share/TeXmacs/doc/main/remote/client/notes/man-troubleshooting.en.tm
+share/TeXmacs/doc/main/remote/client/notes/man-versioning-vs-live.en.tm
+share/TeXmacs/doc/main/remote/client/permissions/
+share/TeXmacs/doc/main/remote/client/permissions/man-best-practices.en.tm
+share/TeXmacs/doc/main/remote/client/permissions/man-defaults.en.tm
+share/TeXmacs/doc/main/remote/client/permissions/man-managing.en.tm
+share/TeXmacs/doc/main/remote/client/permissions/man-public-private.en.tm
+share/TeXmacs/doc/main/remote/client/permissions/man-sharing.en.tm
+share/TeXmacs/doc/main/remote/client/share/
+share/TeXmacs/doc/main/remote/client/share/man-live-documents.en.tm
+share/TeXmacs/doc/main/remote/client/share/man-remote-dirs.en.tm
+share/TeXmacs/doc/main/remote/client/share/man-remote-files.en.tm
+share/TeXmacs/doc/main/remote/man-collaborative.en.tm
+share/TeXmacs/doc/main/remote/man-server.en.tm
+share/TeXmacs/doc/main/remote/server/
+share/TeXmacs/doc/main/remote/server/admin/
+share/TeXmacs/doc/main/remote/server/admin/man-admin-prefs.en.tm
+share/TeXmacs/doc/main/remote/server/admin/man-admin-users.en.tm
+share/TeXmacs/doc/main/remote/server/certificates/
+share/TeXmacs/doc/main/remote/server/certificates/man-ca-signed.en.tm
+share/TeXmacs/doc/main/remote/server/certificates/man-self-signed.en.tm
+share/TeXmacs/doc/main/remote/server/man-admin.en.tm
+share/TeXmacs/doc/main/remote/server/man-certificates.en.tm
+share/TeXmacs/doc/main/remote/server/man-email.en.tm
+share/TeXmacs/doc/main/remote/server/man-notes.en.tm
+share/TeXmacs/doc/main/remote/server/man-preferences.en.tm
+share/TeXmacs/doc/main/remote/server/man-start.en.tm
+share/TeXmacs/doc/main/remote/server/notes/
+share/TeXmacs/doc/main/remote/server/notes/man-data-location.en.tm
+share/TeXmacs/doc/main/remote/server/notes/man-logging.en.tm
+share/TeXmacs/doc/main/remote/server/notes/man-security-tips.en.tm
+share/TeXmacs/doc/main/remote/server/notes/man-troubleshooting.en.tm
+share/TeXmacs/doc/main/remote/server/preferences/
+share/TeXmacs/doc/main/remote/server/preferences/man-license.en.tm
+share/TeXmacs/doc/main/remote/server/preferences/man-mail-command.en.tm
+share/TeXmacs/doc/main/remote/server/preferences/man-mail-templates.en.tm
+share/TeXmacs/doc/main/remote/server/start/
+share/TeXmacs/doc/main/remote/server/start/man-default-admin.en.tm
+share/TeXmacs/doc/main/remote/server/start/man-starting.en.tm
+share/TeXmacs/doc/main/remote/server/start/man-stopping.en.tm
share/TeXmacs/doc/main/scheme/
share/TeXmacs/doc/main/scheme/man-custom-keyboard.de.tm
share/TeXmacs/doc/main/scheme/man-custom-keyboard.en.tm
@@ -1074,7 +1130,7 @@ share/TeXmacs/doc/main/start/man-convent
share/TeXmacs/doc/main/start/man-conventions.it.tm
share/TeXmacs/doc/main/start/man-conventions.pl.tm
share/TeXmacs/doc/main/start/man-conventions.pt.tm
-share/TeXmacs/doc/main/start/man-conventions.zh.tmml
+share/TeXmacs/doc/main/start/man-conventions.zh.tm
share/TeXmacs/doc/main/start/man-file-ops.de.tm
share/TeXmacs/doc/main/start/man-file-ops.en.tm
share/TeXmacs/doc/main/start/man-file-ops.es.tm
@@ -1082,7 +1138,7 @@ share/TeXmacs/doc/main/start/man-file-op
share/TeXmacs/doc/main/start/man-file-ops.it.tm
share/TeXmacs/doc/main/start/man-file-ops.pl.tm
share/TeXmacs/doc/main/start/man-file-ops.pt.tm
-share/TeXmacs/doc/main/start/man-file-ops.zh.tmml
+share/TeXmacs/doc/main/start/man-file-ops.zh.tm
share/TeXmacs/doc/main/start/man-getting-started.de.tm
share/TeXmacs/doc/main/start/man-getting-started.en.tm
share/TeXmacs/doc/main/start/man-getting-started.es.tm
@@ -1090,7 +1146,7 @@ share/TeXmacs/doc/main/start/man-getting
share/TeXmacs/doc/main/start/man-getting-started.it.tm
share/TeXmacs/doc/main/start/man-getting-started.pl.tm
share/TeXmacs/doc/main/start/man-getting-started.pt.tm
-share/TeXmacs/doc/main/start/man-getting-started.zh.tmml
+share/TeXmacs/doc/main/start/man-getting-started.zh.tm
share/TeXmacs/doc/main/start/man-print.de.tm
share/TeXmacs/doc/main/start/man-print.en.tm
share/TeXmacs/doc/main/start/man-print.es.tm
@@ -1098,7 +1154,7 @@ share/TeXmacs/doc/main/start/man-print.f
share/TeXmacs/doc/main/start/man-print.it.tm
share/TeXmacs/doc/main/start/man-print.pl.tm
share/TeXmacs/doc/main/start/man-print.pt.tm
-share/TeXmacs/doc/main/start/man-print.zh.tmml
+share/TeXmacs/doc/main/start/man-print.zh.tm
share/TeXmacs/doc/main/start/man-setup.de.tm
share/TeXmacs/doc/main/start/man-setup.en.tm
share/TeXmacs/doc/main/start/man-setup.es.tm
@@ -1106,7 +1162,7 @@ share/TeXmacs/doc/main/start/man-setup.f
share/TeXmacs/doc/main/start/man-setup.it.tm
share/TeXmacs/doc/main/start/man-setup.pl.tm
share/TeXmacs/doc/main/start/man-setup.pt.tm
-share/TeXmacs/doc/main/start/man-setup.zh.tmml
+share/TeXmacs/doc/main/start/man-setup.zh.tm
share/TeXmacs/doc/main/styles/
share/TeXmacs/doc/main/styles/env/
share/TeXmacs/doc/main/styles/env/env-base-dtd.de.tm
@@ -1283,7 +1339,7 @@ share/TeXmacs/doc/main/table/man-advance
share/TeXmacs/doc/main/table/man-advanced-features.it.tm
share/TeXmacs/doc/main/table/man-advanced-features.pl.tm
share/TeXmacs/doc/main/table/man-advanced-features.pt.tm
-share/TeXmacs/doc/main/table/man-advanced-features.zh.tmml
+share/TeXmacs/doc/main/table/man-advanced-features.zh.tm
share/TeXmacs/doc/main/table/man-alignment.de.tm
share/TeXmacs/doc/main/table/man-alignment.en.tm
share/TeXmacs/doc/main/table/man-alignment.es.tm
@@ -1291,7 +1347,7 @@ share/TeXmacs/doc/main/table/man-alignme
share/TeXmacs/doc/main/table/man-alignment.it.tm
share/TeXmacs/doc/main/table/man-alignment.pl.tm
share/TeXmacs/doc/main/table/man-alignment.pt.tm
-share/TeXmacs/doc/main/table/man-alignment.zh.tmml
+share/TeXmacs/doc/main/table/man-alignment.zh.tm
share/TeXmacs/doc/main/table/man-create-table.de.tm
share/TeXmacs/doc/main/table/man-create-table.en.tm
share/TeXmacs/doc/main/table/man-create-table.es.tm
@@ -1299,7 +1355,7 @@ share/TeXmacs/doc/main/table/man-create-
share/TeXmacs/doc/main/table/man-create-table.it.tm
share/TeXmacs/doc/main/table/man-create-table.pl.tm
share/TeXmacs/doc/main/table/man-create-table.pt.tm
-share/TeXmacs/doc/main/table/man-create-table.zh.tmml
+share/TeXmacs/doc/main/table/man-create-table.zh.tm
share/TeXmacs/doc/main/table/man-size.de.tm
share/TeXmacs/doc/main/table/man-size.en.tm
share/TeXmacs/doc/main/table/man-size.es.tm
@@ -1307,7 +1363,7 @@ share/TeXmacs/doc/main/table/man-size.fr
share/TeXmacs/doc/main/table/man-size.it.tm
share/TeXmacs/doc/main/table/man-size.pl.tm
share/TeXmacs/doc/main/table/man-size.pt.tm
-share/TeXmacs/doc/main/table/man-size.zh.tmml
+share/TeXmacs/doc/main/table/man-size.zh.tm
share/TeXmacs/doc/main/table/man-table-decorations.de.tm
share/TeXmacs/doc/main/table/man-table-decorations.en.tm
share/TeXmacs/doc/main/table/man-table-decorations.es.tm
@@ -1315,7 +1371,7 @@ share/TeXmacs/doc/main/table/man-table-d
share/TeXmacs/doc/main/table/man-table-decorations.it.tm
share/TeXmacs/doc/main/table/man-table-decorations.pl.tm
share/TeXmacs/doc/main/table/man-table-decorations.pt.tm
-share/TeXmacs/doc/main/table/man-table-decorations.zh.tmml
+share/TeXmacs/doc/main/table/man-table-decorations.zh.tm
share/TeXmacs/doc/main/table/man-table-mode.de.tm
share/TeXmacs/doc/main/table/man-table-mode.en.tm
share/TeXmacs/doc/main/table/man-table-mode.es.tm
@@ -1323,7 +1379,7 @@ share/TeXmacs/doc/main/table/man-table-m
share/TeXmacs/doc/main/table/man-table-mode.it.tm
share/TeXmacs/doc/main/table/man-table-mode.pl.tm
share/TeXmacs/doc/main/table/man-table-mode.pt.tm
-share/TeXmacs/doc/main/table/man-table-mode.zh.tmml
+share/TeXmacs/doc/main/table/man-table-mode.zh.tm
share/TeXmacs/doc/main/table/man-table.de.tm
share/TeXmacs/doc/main/table/man-table.en.tm
share/TeXmacs/doc/main/table/man-table.es.tm
@@ -1331,7 +1387,7 @@ share/TeXmacs/doc/main/table/man-table.f
share/TeXmacs/doc/main/table/man-table.it.tm
share/TeXmacs/doc/main/table/man-table.pl.tm
share/TeXmacs/doc/main/table/man-table.pt.tm
-share/TeXmacs/doc/main/table/man-table.zh.tmml
+share/TeXmacs/doc/main/table/man-table.zh.tm
share/TeXmacs/doc/main/text/
share/TeXmacs/doc/main/text/keyboard/
share/TeXmacs/doc/main/text/keyboard/man-customize.de.tm
@@ -3150,7 +3206,6 @@ share/TeXmacs/langs/natural/miss/english
share/TeXmacs/langs/natural/miss/english-swedish-miss.scm
share/TeXmacs/langs/natural/miss/english-taiwanese-miss.scm
share/TeXmacs/langs/natural/miss/english-ukrainian-miss.scm
-share/TeXmacs/lib/
share/TeXmacs/misc/
share/TeXmacs/misc/bib/
share/TeXmacs/misc/bib/texmacs.bib
@@ -3223,6 +3278,94 @@ share/TeXmacs/misc/images/welcome-help.p
share/TeXmacs/misc/images/welcome-manual.png
share/TeXmacs/misc/images/welcome-promote.png
share/TeXmacs/misc/images/welcome-videos.png
+share/TeXmacs/misc/images/windows/
+share/TeXmacs/misc/images/windows/LargeTile.png
+share/TeXmacs/misc/images/windows/LargeTile.scale-100.png
+share/TeXmacs/misc/images/windows/LargeTile.scale-125.png
+share/TeXmacs/misc/images/windows/LargeTile.scale-150.png
+share/TeXmacs/misc/images/windows/LargeTile.scale-200.png
+share/TeXmacs/misc/images/windows/LargeTile.scale-400.png
+share/TeXmacs/misc/images/windows/SmallTile.png
+share/TeXmacs/misc/images/windows/SmallTile.scale-100.png
+share/TeXmacs/misc/images/windows/SmallTile.scale-125.png
+share/TeXmacs/misc/images/windows/SmallTile.scale-150.png
+share/TeXmacs/misc/images/windows/SmallTile.scale-200.png
+share/TeXmacs/misc/images/windows/SmallTile.scale-400.png
+share/TeXmacs/misc/images/windows/SplashScreen.png
+share/TeXmacs/misc/images/windows/SplashScreen.scale-100.png
+share/TeXmacs/misc/images/windows/SplashScreen.scale-125.png
+share/TeXmacs/misc/images/windows/SplashScreen.scale-150.png
+share/TeXmacs/misc/images/windows/SplashScreen.scale-200.png
+share/TeXmacs/misc/images/windows/SplashScreen.scale-400.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.scale-100.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.scale-125.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.scale-150.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.scale-200.png
+share/TeXmacs/misc/images/windows/Square150x150Logo.scale-400.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.scale-100.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.scale-125.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.scale-150.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.scale-200.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.scale-400.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-16.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-16_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-16_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-20.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-20_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-20_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-24.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-24_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-24_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-256.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-256_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-256_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-30.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-30_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-30_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-32.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-32_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-32_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-36.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-36_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-36_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-40.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-40_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-40_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-44.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-44_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-44_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-48.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-48_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-48_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-60.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-60_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-60_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-64.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-64_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-64_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-72.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-72_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-72_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-80.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-80_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-80_altform-unplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-96.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-96_altform-lightunplated.png
+share/TeXmacs/misc/images/windows/Square44x44Logo.targetsize-96_altform-unplated.png
+share/TeXmacs/misc/images/windows/StoreLogo.png
+share/TeXmacs/misc/images/windows/StoreLogo.scale-100.png
+share/TeXmacs/misc/images/windows/StoreLogo.scale-125.png
+share/TeXmacs/misc/images/windows/StoreLogo.scale-150.png
+share/TeXmacs/misc/images/windows/StoreLogo.scale-200.png
+share/TeXmacs/misc/images/windows/StoreLogo.scale-400.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.scale-100.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.scale-125.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.scale-150.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.scale-200.png
+share/TeXmacs/misc/images/windows/Wide310x150Logo.scale-400.png
share/TeXmacs/misc/latex/
share/TeXmacs/misc/latex/TeXmacs.sty
share/TeXmacs/misc/latex/f2pspost.tex
@@ -3469,6 +3612,7 @@ share/TeXmacs/misc/pictures/gradients/bl
share/TeXmacs/misc/pictures/gradients/black-gradient-frame.jpg
share/TeXmacs/misc/pictures/gradients/corner-gradient.jpg
share/TeXmacs/misc/pictures/gradients/grey-gradient-background.jpg
+share/TeXmacs/misc/pictures/gradients/horizontal-white-black.png
share/TeXmacs/misc/pictures/gradients/vertical-white-black.png
share/TeXmacs/misc/pictures/paper/
share/TeXmacs/misc/pictures/paper/thumbnail-paper-antique-beige.jpg
@@ -3495,6 +3639,658 @@ share/TeXmacs/misc/pixmaps/TeXmacs-old.x
share/TeXmacs/misc/pixmaps/TeXmacs-sigma.xpm
share/TeXmacs/misc/pixmaps/TeXmacs-solid.xpm
share/TeXmacs/misc/pixmaps/TeXmacs.xpm
+share/TeXmacs/misc/pixmaps/dark/
+share/TeXmacs/misc/pixmaps/dark/texmacs.svg
+share/TeXmacs/misc/pixmaps/dark/tm_activate.svg
+share/TeXmacs/misc/pixmaps/dark/tm_acute.svg
+share/TeXmacs/misc/pixmaps/dark/tm_add.svg
+share/TeXmacs/misc/pixmaps/dark/tm_add_2.svg
+share/TeXmacs/misc/pixmaps/dark/tm_alignment.svg
+share/TeXmacs/misc/pixmaps/dark/tm_alternate_both.svg
+share/TeXmacs/misc/pixmaps/dark/tm_alternate_first.svg
+share/TeXmacs/misc/pixmaps/dark/tm_alternate_second.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anchor.svg
+share/TeXmacs/misc/pixmaps/dark/tm_and.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_bump.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_fade_in.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_faded.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_normal.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_reverse.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_reverse_bump.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_reverse_fade_in.svg
+share/TeXmacs/misc/pixmaps/dark/tm_anim_reverse_faded.svg
+share/TeXmacs/misc/pixmaps/dark/tm_animate.svg
+share/TeXmacs/misc/pixmaps/dark/tm_answer.svg
+share/TeXmacs/misc/pixmaps/dark/tm_arc_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_arrow.svg
+share/TeXmacs/misc/pixmaps/dark/tm_assign.svg
+share/TeXmacs/misc/pixmaps/dark/tm_back.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bar.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bbb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bigaround.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bigop.svg
+share/TeXmacs/misc/pixmaps/dark/tm_binop.svg
+share/TeXmacs/misc/pixmaps/dark/tm_binrel.svg
+share/TeXmacs/misc/pixmaps/dark/tm_block.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bold.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_b.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_l.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lr.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lrb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lrt.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lrtb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_lt.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_ltb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_none.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_r.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_rb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_rt.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_rtb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_t.svg
+share/TeXmacs/misc/pixmaps/dark/tm_border_tb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_both_h.svg
+share/TeXmacs/misc/pixmaps/dark/tm_both_hv.svg
+share/TeXmacs/misc/pixmaps/dark/tm_both_none.svg
+share/TeXmacs/misc/pixmaps/dark/tm_both_v.svg
+share/TeXmacs/misc/pixmaps/dark/tm_breve.svg
+share/TeXmacs/misc/pixmaps/dark/tm_british.svg
+share/TeXmacs/misc/pixmaps/dark/tm_build.svg
+share/TeXmacs/misc/pixmaps/dark/tm_bulgarian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cal.svg
+share/TeXmacs/misc/pixmaps/dark/tm_camera.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cancel.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cancel_2.svg
+share/TeXmacs/misc/pixmaps/dark/tm_carc_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_background.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_border.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_center.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_dot.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_join.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_left.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_pos.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_right.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_size.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_size_var.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_special.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_split.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_subtable.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_var_subtable.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cell_wrap.svg
+share/TeXmacs/misc/pixmaps/dark/tm_chapter.svg
+share/TeXmacs/misc/pixmaps/dark/tm_check.svg
+share/TeXmacs/misc/pixmaps/dark/tm_chinese.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cline_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_close_tool.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_admin.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_chat.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_dir.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_download.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_file.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_home.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_live.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_mail.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_mail_new.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_server.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_share.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cloud_upload.svg
+share/TeXmacs/misc/pixmaps/dark/tm_clsession.svg
+share/TeXmacs/misc/pixmaps/dark/tm_color.svg
+share/TeXmacs/misc/pixmaps/dark/tm_compact.svg
+share/TeXmacs/misc/pixmaps/dark/tm_compress_tool.svg
+share/TeXmacs/misc/pixmaps/dark/tm_copy.svg
+share/TeXmacs/misc/pixmaps/dark/tm_copy_after.svg
+share/TeXmacs/misc/pixmaps/dark/tm_copy_before.svg
+share/TeXmacs/misc/pixmaps/dark/tm_copy_both.svg
+share/TeXmacs/misc/pixmaps/dark/tm_croatian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cspline_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_ctrl_flow.svg
+share/TeXmacs/misc/pixmaps/dark/tm_customized.svg
+share/TeXmacs/misc/pixmaps/dark/tm_cut.svg
+share/TeXmacs/misc/pixmaps/dark/tm_czech.svg
+share/TeXmacs/misc/pixmaps/dark/tm_danish.svg
+share/TeXmacs/misc/pixmaps/dark/tm_ddot.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_after.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_before.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_down.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_left.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_right.svg
+share/TeXmacs/misc/pixmaps/dark/tm_delete_up.svg
+share/TeXmacs/misc/pixmaps/dark/tm_document_at.svg
+share/TeXmacs/misc/pixmaps/dark/tm_dot.svg
+share/TeXmacs/misc/pixmaps/dark/tm_down.svg
+share/TeXmacs/misc/pixmaps/dark/tm_dutch.svg
+share/TeXmacs/misc/pixmaps/dark/tm_edit_props.svg
+share/TeXmacs/misc/pixmaps/dark/tm_emphasize.svg
+share/TeXmacs/misc/pixmaps/dark/tm_english.svg
+share/TeXmacs/misc/pixmaps/dark/tm_enter_image.svg
+share/TeXmacs/misc/pixmaps/dark/tm_entry.svg
+share/TeXmacs/misc/pixmaps/dark/tm_entry_add.svg
+share/TeXmacs/misc/pixmaps/dark/tm_entry_confirm.svg
+share/TeXmacs/misc/pixmaps/dark/tm_entry_remove.svg
+share/TeXmacs/misc/pixmaps/dark/tm_equal.svg
+share/TeXmacs/misc/pixmaps/dark/tm_esperanto.svg
+share/TeXmacs/misc/pixmaps/dark/tm_exit_image.svg
+share/TeXmacs/misc/pixmaps/dark/tm_exit_left.svg
+share/TeXmacs/misc/pixmaps/dark/tm_exit_right.svg
+share/TeXmacs/misc/pixmaps/dark/tm_expand_tool.svg
+share/TeXmacs/misc/pixmaps/dark/tm_explain.svg
+share/TeXmacs/misc/pixmaps/dark/tm_filter.svg
+share/TeXmacs/misc/pixmaps/dark/tm_find.svg
+share/TeXmacs/misc/pixmaps/dark/tm_find_next.svg
+share/TeXmacs/misc/pixmaps/dark/tm_finnish.svg
+share/TeXmacs/misc/pixmaps/dark/tm_floatpos.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_delete.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_font.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_help.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_load.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_prefs.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_save.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_search.svg
+share/TeXmacs/misc/pixmaps/dark/tm_focus_style.svg
+share/TeXmacs/misc/pixmaps/dark/tm_forward.svg
+share/TeXmacs/misc/pixmaps/dark/tm_fraction.svg
+share/TeXmacs/misc/pixmaps/dark/tm_frak.svg
+share/TeXmacs/misc/pixmaps/dark/tm_french.svg
+share/TeXmacs/misc/pixmaps/dark/tm_gap.svg
+share/TeXmacs/misc/pixmaps/dark/tm_german.svg
+share/TeXmacs/misc/pixmaps/dark/tm_go.svg
+share/TeXmacs/misc/pixmaps/dark/tm_graphics_geometry.svg
+share/TeXmacs/misc/pixmaps/dark/tm_graphics_grid.svg
+share/TeXmacs/misc/pixmaps/dark/tm_grave.svg
+share/TeXmacs/misc/pixmaps/dark/tm_greek.svg
+share/TeXmacs/misc/pixmaps/dark/tm_greek_char.svg
+share/TeXmacs/misc/pixmaps/dark/tm_group_group.svg
+share/TeXmacs/misc/pixmaps/dark/tm_group_move.svg
+share/TeXmacs/misc/pixmaps/dark/tm_group_rotate.svg
+share/TeXmacs/misc/pixmaps/dark/tm_group_zoom.svg
+share/TeXmacs/misc/pixmaps/dark/tm_gui.svg
+share/TeXmacs/misc/pixmaps/dark/tm_hat.svg
+share/TeXmacs/misc/pixmaps/dark/tm_help.svg
+share/TeXmacs/misc/pixmaps/dark/tm_hungarian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_image.svg
+share/TeXmacs/misc/pixmaps/dark/tm_index.svg
+share/TeXmacs/misc/pixmaps/dark/tm_ink_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_insert_down.svg
+share/TeXmacs/misc/pixmaps/dark/tm_insert_left.svg
+share/TeXmacs/misc/pixmaps/dark/tm_insert_right.svg
+share/TeXmacs/misc/pixmaps/dark/tm_insert_up.svg
+share/TeXmacs/misc/pixmaps/dark/tm_invbreve.svg
+share/TeXmacs/misc/pixmaps/dark/tm_italian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_italic.svg
+share/TeXmacs/misc/pixmaps/dark/tm_japanese.svg
+share/TeXmacs/misc/pixmaps/dark/tm_junior.svg
+share/TeXmacs/misc/pixmaps/dark/tm_korean.svg
+share/TeXmacs/misc/pixmaps/dark/tm_lambda.svg
+share/TeXmacs/misc/pixmaps/dark/tm_landscape.svg
+share/TeXmacs/misc/pixmaps/dark/tm_landscape_1col.svg
+share/TeXmacs/misc/pixmaps/dark/tm_landscape_2col.svg
+share/TeXmacs/misc/pixmaps/dark/tm_language.svg
+share/TeXmacs/misc/pixmaps/dark/tm_large_around.svg
+share/TeXmacs/misc/pixmaps/dark/tm_large_around_2.svg
+share/TeXmacs/misc/pixmaps/dark/tm_larrow.svg
+share/TeXmacs/misc/pixmaps/dark/tm_larrow_bar.svg
+share/TeXmacs/misc/pixmaps/dark/tm_larrow_double.svg
+share/TeXmacs/misc/pixmaps/dark/tm_left.svg
+share/TeXmacs/misc/pixmaps/dark/tm_left_down.svg
+share/TeXmacs/misc/pixmaps/dark/tm_left_up.svg
+share/TeXmacs/misc/pixmaps/dark/tm_like.svg
+share/TeXmacs/misc/pixmaps/dark/tm_line_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_link.svg
+share/TeXmacs/misc/pixmaps/dark/tm_list.svg
+share/TeXmacs/misc/pixmaps/dark/tm_lock_closed.svg
+share/TeXmacs/misc/pixmaps/dark/tm_lock_open.svg
+share/TeXmacs/misc/pixmaps/dark/tm_macro.svg
+share/TeXmacs/misc/pixmaps/dark/tm_math.svg
+share/TeXmacs/misc/pixmaps/dark/tm_math_preferences.svg
+share/TeXmacs/misc/pixmaps/dark/tm_math_style.svg
+share/TeXmacs/misc/pixmaps/dark/tm_math_syntax.svg
+share/TeXmacs/misc/pixmaps/dark/tm_mathbold.svg
+share/TeXmacs/misc/pixmaps/dark/tm_mc.svg
+share/TeXmacs/misc/pixmaps/dark/tm_miscsymb.svg
+share/TeXmacs/misc/pixmaps/dark/tm_name.svg
+share/TeXmacs/misc/pixmaps/dark/tm_name_bis.svg
+share/TeXmacs/misc/pixmaps/dark/tm_new.svg
+share/TeXmacs/misc/pixmaps/dark/tm_numbered.svg
+share/TeXmacs/misc/pixmaps/dark/tm_op.svg
+share/TeXmacs/misc/pixmaps/dark/tm_open.svg
+share/TeXmacs/misc/pixmaps/dark/tm_open_bis.svg
+share/TeXmacs/misc/pixmaps/dark/tm_overlays.svg
+share/TeXmacs/misc/pixmaps/dark/tm_pageins.svg
+share/TeXmacs/misc/pixmaps/dark/tm_parindent.svg
+share/TeXmacs/misc/pixmaps/dark/tm_parstyle.svg
+share/TeXmacs/misc/pixmaps/dark/tm_paste.svg
+share/TeXmacs/misc/pixmaps/dark/tm_pen_gaussian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_pen_motion.svg
+share/TeXmacs/misc/pixmaps/dark/tm_pen_oval.svg
+share/TeXmacs/misc/pixmaps/dark/tm_pen_rectangular.svg
+share/TeXmacs/misc/pixmaps/dark/tm_plugin_input.svg
+share/TeXmacs/misc/pixmaps/dark/tm_plugin_output.svg
+share/TeXmacs/misc/pixmaps/dark/tm_point_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_polish.svg
+share/TeXmacs/misc/pixmaps/dark/tm_portrait.svg
+share/TeXmacs/misc/pixmaps/dark/tm_portrait_1col.svg
+share/TeXmacs/misc/pixmaps/dark/tm_portrait_2col.svg
+share/TeXmacs/misc/pixmaps/dark/tm_portuguese.svg
+share/TeXmacs/misc/pixmaps/dark/tm_position_float.svg
+share/TeXmacs/misc/pixmaps/dark/tm_preferences.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prefs_convert.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prefs_general.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prefs_keyboard.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prefs_other.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prefs_security.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prime.svg
+share/TeXmacs/misc/pixmaps/dark/tm_print.svg
+share/TeXmacs/misc/pixmaps/dark/tm_program.svg
+share/TeXmacs/misc/pixmaps/dark/tm_prominent.svg
+share/TeXmacs/misc/pixmaps/dark/tm_question.svg
+share/TeXmacs/misc/pixmaps/dark/tm_rarrow.svg
+share/TeXmacs/misc/pixmaps/dark/tm_rarrow_bar.svg
+share/TeXmacs/misc/pixmaps/dark/tm_rarrow_double.svg
+share/TeXmacs/misc/pixmaps/dark/tm_redo.svg
+share/TeXmacs/misc/pixmaps/dark/tm_reload.svg
+share/TeXmacs/misc/pixmaps/dark/tm_remove.svg
+share/TeXmacs/misc/pixmaps/dark/tm_replace.svg
+share/TeXmacs/misc/pixmaps/dark/tm_replace_all.svg
+share/TeXmacs/misc/pixmaps/dark/tm_replace_one.svg
+share/TeXmacs/misc/pixmaps/dark/tm_right.svg
+share/TeXmacs/misc/pixmaps/dark/tm_right_down.svg
+share/TeXmacs/misc/pixmaps/dark/tm_right_up.svg
+share/TeXmacs/misc/pixmaps/dark/tm_romanian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_root.svg
+share/TeXmacs/misc/pixmaps/dark/tm_root_index.svg
+share/TeXmacs/misc/pixmaps/dark/tm_russian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_sample.svg
+share/TeXmacs/misc/pixmaps/dark/tm_sansserif.svg
+share/TeXmacs/misc/pixmaps/dark/tm_save.svg
+share/TeXmacs/misc/pixmaps/dark/tm_search_first.svg
+share/TeXmacs/misc/pixmaps/dark/tm_search_last.svg
+share/TeXmacs/misc/pixmaps/dark/tm_search_next.svg
+share/TeXmacs/misc/pixmaps/dark/tm_search_previous.svg
+share/TeXmacs/misc/pixmaps/dark/tm_section.svg
+share/TeXmacs/misc/pixmaps/dark/tm_session_session.svg
+share/TeXmacs/misc/pixmaps/dark/tm_set_properties.svg
+share/TeXmacs/misc/pixmaps/dark/tm_shell.svg
+share/TeXmacs/misc/pixmaps/dark/tm_show_hidden.svg
+share/TeXmacs/misc/pixmaps/dark/tm_similar_first.svg
+share/TeXmacs/misc/pixmaps/dark/tm_similar_last.svg
+share/TeXmacs/misc/pixmaps/dark/tm_similar_next.svg
+share/TeXmacs/misc/pixmaps/dark/tm_similar_previous.svg
+share/TeXmacs/misc/pixmaps/dark/tm_slovak.svg
+share/TeXmacs/misc/pixmaps/dark/tm_slovene.svg
+share/TeXmacs/misc/pixmaps/dark/tm_smallcaps.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_curve.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_curve_deco.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_curve_intersection.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_grid.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_grid_curve.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_grid_intersection.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_midpoint.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_text_border.svg
+share/TeXmacs/misc/pixmaps/dark/tm_snap_text_deco.svg
+share/TeXmacs/misc/pixmaps/dark/tm_spanish.svg
+share/TeXmacs/misc/pixmaps/dark/tm_spell.svg
+share/TeXmacs/misc/pixmaps/dark/tm_spline_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_stateless.svg
+share/TeXmacs/misc/pixmaps/dark/tm_stop.svg
+share/TeXmacs/misc/pixmaps/dark/tm_stretch.svg
+share/TeXmacs/misc/pixmaps/dark/tm_strong.svg
+share/TeXmacs/misc/pixmaps/dark/tm_subsup.svg
+share/TeXmacs/misc/pixmaps/dark/tm_swedish.svg
+share/TeXmacs/misc/pixmaps/dark/tm_switch.svg
+share/TeXmacs/misc/pixmaps/dark/tm_table.svg
+share/TeXmacs/misc/pixmaps/dark/tm_table_parwidth.svg
+share/TeXmacs/misc/pixmaps/dark/tm_taiwanese.svg
+share/TeXmacs/misc/pixmaps/dark/tm_textat_mode.svg
+share/TeXmacs/misc/pixmaps/dark/tm_textual.svg
+share/TeXmacs/misc/pixmaps/dark/tm_theme.svg
+share/TeXmacs/misc/pixmaps/dark/tm_theorem.svg
+share/TeXmacs/misc/pixmaps/dark/tm_three.svg
+share/TeXmacs/misc/pixmaps/dark/tm_tilda.svg
+share/TeXmacs/misc/pixmaps/dark/tm_tmdoc_annotate.svg
+share/TeXmacs/misc/pixmaps/dark/tm_tmdoc_title.svg
+share/TeXmacs/misc/pixmaps/dark/tm_traverse.svg
+share/TeXmacs/misc/pixmaps/dark/tm_tuple.svg
+share/TeXmacs/misc/pixmaps/dark/tm_typewriter.svg
+share/TeXmacs/misc/pixmaps/dark/tm_ukrainian.svg
+share/TeXmacs/misc/pixmaps/dark/tm_undo.svg
+share/TeXmacs/misc/pixmaps/dark/tm_unequal.svg
+share/TeXmacs/misc/pixmaps/dark/tm_up.svg
+share/TeXmacs/misc/pixmaps/dark/tm_var_prominent.svg
+share/TeXmacs/misc/pixmaps/dark/tm_vect.svg
+share/TeXmacs/misc/pixmaps/dark/tm_verbatim.svg
+share/TeXmacs/misc/pixmaps/dark/tm_view.svg
+share/TeXmacs/misc/pixmaps/dark/tm_von.svg
+share/TeXmacs/misc/pixmaps/dark/tm_wide.svg
+share/TeXmacs/misc/pixmaps/dark/tm_wide_float.svg
+share/TeXmacs/misc/pixmaps/dark/tm_wide_under.svg
+share/TeXmacs/misc/pixmaps/light/
+share/TeXmacs/misc/pixmaps/light/texmacs.svg
+share/TeXmacs/misc/pixmaps/light/tm_activate.svg
+share/TeXmacs/misc/pixmaps/light/tm_acute.svg
+share/TeXmacs/misc/pixmaps/light/tm_add.svg
+share/TeXmacs/misc/pixmaps/light/tm_add_2.svg
+share/TeXmacs/misc/pixmaps/light/tm_alignment.svg
+share/TeXmacs/misc/pixmaps/light/tm_alternate_both.svg
+share/TeXmacs/misc/pixmaps/light/tm_alternate_first.svg
+share/TeXmacs/misc/pixmaps/light/tm_alternate_second.svg
+share/TeXmacs/misc/pixmaps/light/tm_anchor.svg
+share/TeXmacs/misc/pixmaps/light/tm_and.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_bump.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_fade_in.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_faded.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_normal.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_reverse.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_reverse_bump.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_reverse_fade_in.svg
+share/TeXmacs/misc/pixmaps/light/tm_anim_reverse_faded.svg
+share/TeXmacs/misc/pixmaps/light/tm_animate.svg
+share/TeXmacs/misc/pixmaps/light/tm_answer.svg
+share/TeXmacs/misc/pixmaps/light/tm_arc_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_arrow.svg
+share/TeXmacs/misc/pixmaps/light/tm_assign.svg
+share/TeXmacs/misc/pixmaps/light/tm_back.svg
+share/TeXmacs/misc/pixmaps/light/tm_bar.svg
+share/TeXmacs/misc/pixmaps/light/tm_bbb.svg
+share/TeXmacs/misc/pixmaps/light/tm_bigaround.svg
+share/TeXmacs/misc/pixmaps/light/tm_bigop.svg
+share/TeXmacs/misc/pixmaps/light/tm_binop.svg
+share/TeXmacs/misc/pixmaps/light/tm_binrel.svg
+share/TeXmacs/misc/pixmaps/light/tm_block.svg
+share/TeXmacs/misc/pixmaps/light/tm_bold.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_b.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_l.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lr.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lrb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lrt.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lrtb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_lt.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_ltb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_none.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_r.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_rb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_rt.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_rtb.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_t.svg
+share/TeXmacs/misc/pixmaps/light/tm_border_tb.svg
+share/TeXmacs/misc/pixmaps/light/tm_both_h.svg
+share/TeXmacs/misc/pixmaps/light/tm_both_hv.svg
+share/TeXmacs/misc/pixmaps/light/tm_both_none.svg
+share/TeXmacs/misc/pixmaps/light/tm_both_v.svg
+share/TeXmacs/misc/pixmaps/light/tm_breve.svg
+share/TeXmacs/misc/pixmaps/light/tm_british.svg
+share/TeXmacs/misc/pixmaps/light/tm_build.svg
+share/TeXmacs/misc/pixmaps/light/tm_bulgarian.svg
+share/TeXmacs/misc/pixmaps/light/tm_cal.svg
+share/TeXmacs/misc/pixmaps/light/tm_camera.svg
+share/TeXmacs/misc/pixmaps/light/tm_cancel.svg
+share/TeXmacs/misc/pixmaps/light/tm_cancel_2.svg
+share/TeXmacs/misc/pixmaps/light/tm_carc_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_background.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_border.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_center.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_dot.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_join.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_left.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_pos.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_right.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_size.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_size_var.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_special.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_split.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_subtable.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_var_subtable.svg
+share/TeXmacs/misc/pixmaps/light/tm_cell_wrap.svg
+share/TeXmacs/misc/pixmaps/light/tm_chapter.svg
+share/TeXmacs/misc/pixmaps/light/tm_check.svg
+share/TeXmacs/misc/pixmaps/light/tm_chinese.svg
+share/TeXmacs/misc/pixmaps/light/tm_cline_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_close_tool.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_admin.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_chat.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_dir.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_download.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_file.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_home.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_live.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_mail.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_mail_new.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_server.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_share.svg
+share/TeXmacs/misc/pixmaps/light/tm_cloud_upload.svg
+share/TeXmacs/misc/pixmaps/light/tm_clsession.svg
+share/TeXmacs/misc/pixmaps/light/tm_color.svg
+share/TeXmacs/misc/pixmaps/light/tm_compact.svg
+share/TeXmacs/misc/pixmaps/light/tm_compress_tool.svg
+share/TeXmacs/misc/pixmaps/light/tm_copy.svg
+share/TeXmacs/misc/pixmaps/light/tm_copy_after.svg
+share/TeXmacs/misc/pixmaps/light/tm_copy_before.svg
+share/TeXmacs/misc/pixmaps/light/tm_copy_both.svg
+share/TeXmacs/misc/pixmaps/light/tm_croatian.svg
+share/TeXmacs/misc/pixmaps/light/tm_cspline_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_ctrl_flow.svg
+share/TeXmacs/misc/pixmaps/light/tm_customized.svg
+share/TeXmacs/misc/pixmaps/light/tm_cut.svg
+share/TeXmacs/misc/pixmaps/light/tm_czech.svg
+share/TeXmacs/misc/pixmaps/light/tm_danish.svg
+share/TeXmacs/misc/pixmaps/light/tm_ddot.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_after.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_before.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_down.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_left.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_right.svg
+share/TeXmacs/misc/pixmaps/light/tm_delete_up.svg
+share/TeXmacs/misc/pixmaps/light/tm_document_at.svg
+share/TeXmacs/misc/pixmaps/light/tm_dot.svg
+share/TeXmacs/misc/pixmaps/light/tm_down.svg
+share/TeXmacs/misc/pixmaps/light/tm_dutch.svg
+share/TeXmacs/misc/pixmaps/light/tm_edit_props.svg
+share/TeXmacs/misc/pixmaps/light/tm_emphasize.svg
+share/TeXmacs/misc/pixmaps/light/tm_english.svg
+share/TeXmacs/misc/pixmaps/light/tm_enter_image.svg
+share/TeXmacs/misc/pixmaps/light/tm_entry.svg
+share/TeXmacs/misc/pixmaps/light/tm_entry_add.svg
+share/TeXmacs/misc/pixmaps/light/tm_entry_confirm.svg
+share/TeXmacs/misc/pixmaps/light/tm_entry_remove.svg
+share/TeXmacs/misc/pixmaps/light/tm_equal.svg
+share/TeXmacs/misc/pixmaps/light/tm_esperanto.svg
+share/TeXmacs/misc/pixmaps/light/tm_exit_image.svg
+share/TeXmacs/misc/pixmaps/light/tm_exit_left.svg
+share/TeXmacs/misc/pixmaps/light/tm_exit_right.svg
+share/TeXmacs/misc/pixmaps/light/tm_expand_tool.svg
+share/TeXmacs/misc/pixmaps/light/tm_explain.svg
+share/TeXmacs/misc/pixmaps/light/tm_filter.svg
+share/TeXmacs/misc/pixmaps/light/tm_find.svg
+share/TeXmacs/misc/pixmaps/light/tm_find_next.svg
+share/TeXmacs/misc/pixmaps/light/tm_finnish.svg
+share/TeXmacs/misc/pixmaps/light/tm_floatpos.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_delete.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_font.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_help.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_load.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_prefs.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_save.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_search.svg
+share/TeXmacs/misc/pixmaps/light/tm_focus_style.svg
+share/TeXmacs/misc/pixmaps/light/tm_forward.svg
+share/TeXmacs/misc/pixmaps/light/tm_fraction.svg
+share/TeXmacs/misc/pixmaps/light/tm_frak.svg
+share/TeXmacs/misc/pixmaps/light/tm_french.svg
+share/TeXmacs/misc/pixmaps/light/tm_gap.svg
+share/TeXmacs/misc/pixmaps/light/tm_german.svg
+share/TeXmacs/misc/pixmaps/light/tm_go.svg
+share/TeXmacs/misc/pixmaps/light/tm_graphics_geometry.svg
+share/TeXmacs/misc/pixmaps/light/tm_graphics_grid.svg
+share/TeXmacs/misc/pixmaps/light/tm_grave.svg
+share/TeXmacs/misc/pixmaps/light/tm_greek.svg
+share/TeXmacs/misc/pixmaps/light/tm_greek_char.svg
+share/TeXmacs/misc/pixmaps/light/tm_group_group.svg
+share/TeXmacs/misc/pixmaps/light/tm_group_move.svg
+share/TeXmacs/misc/pixmaps/light/tm_group_rotate.svg
+share/TeXmacs/misc/pixmaps/light/tm_group_zoom.svg
+share/TeXmacs/misc/pixmaps/light/tm_gui.svg
+share/TeXmacs/misc/pixmaps/light/tm_hat.svg
+share/TeXmacs/misc/pixmaps/light/tm_help.svg
+share/TeXmacs/misc/pixmaps/light/tm_hungarian.svg
+share/TeXmacs/misc/pixmaps/light/tm_image.svg
+share/TeXmacs/misc/pixmaps/light/tm_index.svg
+share/TeXmacs/misc/pixmaps/light/tm_ink_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_insert_down.svg
+share/TeXmacs/misc/pixmaps/light/tm_insert_left.svg
+share/TeXmacs/misc/pixmaps/light/tm_insert_right.svg
+share/TeXmacs/misc/pixmaps/light/tm_insert_up.svg
+share/TeXmacs/misc/pixmaps/light/tm_invbreve.svg
+share/TeXmacs/misc/pixmaps/light/tm_italian.svg
+share/TeXmacs/misc/pixmaps/light/tm_italic.svg
+share/TeXmacs/misc/pixmaps/light/tm_japanese.svg
+share/TeXmacs/misc/pixmaps/light/tm_junior.svg
+share/TeXmacs/misc/pixmaps/light/tm_korean.svg
+share/TeXmacs/misc/pixmaps/light/tm_lambda.svg
+share/TeXmacs/misc/pixmaps/light/tm_landscape.svg
+share/TeXmacs/misc/pixmaps/light/tm_landscape_1col.svg
+share/TeXmacs/misc/pixmaps/light/tm_landscape_2col.svg
+share/TeXmacs/misc/pixmaps/light/tm_language.svg
+share/TeXmacs/misc/pixmaps/light/tm_large_around.svg
+share/TeXmacs/misc/pixmaps/light/tm_large_around_2.svg
+share/TeXmacs/misc/pixmaps/light/tm_larrow.svg
+share/TeXmacs/misc/pixmaps/light/tm_larrow_bar.svg
+share/TeXmacs/misc/pixmaps/light/tm_larrow_double.svg
+share/TeXmacs/misc/pixmaps/light/tm_left.svg
+share/TeXmacs/misc/pixmaps/light/tm_left_down.svg
+share/TeXmacs/misc/pixmaps/light/tm_left_up.svg
+share/TeXmacs/misc/pixmaps/light/tm_like.svg
+share/TeXmacs/misc/pixmaps/light/tm_line_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_link.svg
+share/TeXmacs/misc/pixmaps/light/tm_list.svg
+share/TeXmacs/misc/pixmaps/light/tm_lock_closed.svg
+share/TeXmacs/misc/pixmaps/light/tm_lock_open.svg
+share/TeXmacs/misc/pixmaps/light/tm_macro.svg
+share/TeXmacs/misc/pixmaps/light/tm_math.svg
+share/TeXmacs/misc/pixmaps/light/tm_math_preferences.svg
+share/TeXmacs/misc/pixmaps/light/tm_math_style.svg
+share/TeXmacs/misc/pixmaps/light/tm_math_syntax.svg
+share/TeXmacs/misc/pixmaps/light/tm_mathbold.svg
+share/TeXmacs/misc/pixmaps/light/tm_mc.svg
+share/TeXmacs/misc/pixmaps/light/tm_miscsymb.svg
+share/TeXmacs/misc/pixmaps/light/tm_name.svg
+share/TeXmacs/misc/pixmaps/light/tm_name_bis.svg
+share/TeXmacs/misc/pixmaps/light/tm_new.svg
+share/TeXmacs/misc/pixmaps/light/tm_numbered.svg
+share/TeXmacs/misc/pixmaps/light/tm_op.svg
+share/TeXmacs/misc/pixmaps/light/tm_open.svg
+share/TeXmacs/misc/pixmaps/light/tm_open_bis.svg
+share/TeXmacs/misc/pixmaps/light/tm_overlays.svg
+share/TeXmacs/misc/pixmaps/light/tm_pageins.svg
+share/TeXmacs/misc/pixmaps/light/tm_parindent.svg
+share/TeXmacs/misc/pixmaps/light/tm_parstyle.svg
+share/TeXmacs/misc/pixmaps/light/tm_paste.svg
+share/TeXmacs/misc/pixmaps/light/tm_pen_gaussian.svg
+share/TeXmacs/misc/pixmaps/light/tm_pen_motion.svg
+share/TeXmacs/misc/pixmaps/light/tm_pen_oval.svg
+share/TeXmacs/misc/pixmaps/light/tm_pen_rectangular.svg
+share/TeXmacs/misc/pixmaps/light/tm_plugin_input.svg
+share/TeXmacs/misc/pixmaps/light/tm_plugin_output.svg
+share/TeXmacs/misc/pixmaps/light/tm_point_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_polish.svg
+share/TeXmacs/misc/pixmaps/light/tm_portrait.svg
+share/TeXmacs/misc/pixmaps/light/tm_portrait_1col.svg
+share/TeXmacs/misc/pixmaps/light/tm_portrait_2col.svg
+share/TeXmacs/misc/pixmaps/light/tm_portuguese.svg
+share/TeXmacs/misc/pixmaps/light/tm_position_float.svg
+share/TeXmacs/misc/pixmaps/light/tm_preferences.svg
+share/TeXmacs/misc/pixmaps/light/tm_prefs_convert.svg
+share/TeXmacs/misc/pixmaps/light/tm_prefs_general.svg
+share/TeXmacs/misc/pixmaps/light/tm_prefs_keyboard.svg
+share/TeXmacs/misc/pixmaps/light/tm_prefs_other.svg
+share/TeXmacs/misc/pixmaps/light/tm_prefs_security.svg
+share/TeXmacs/misc/pixmaps/light/tm_prime.svg
+share/TeXmacs/misc/pixmaps/light/tm_print.svg
+share/TeXmacs/misc/pixmaps/light/tm_program.svg
+share/TeXmacs/misc/pixmaps/light/tm_prominent.svg
+share/TeXmacs/misc/pixmaps/light/tm_question.svg
+share/TeXmacs/misc/pixmaps/light/tm_rarrow.svg
+share/TeXmacs/misc/pixmaps/light/tm_rarrow_bar.svg
+share/TeXmacs/misc/pixmaps/light/tm_rarrow_double.svg
+share/TeXmacs/misc/pixmaps/light/tm_redo.svg
+share/TeXmacs/misc/pixmaps/light/tm_reload.svg
+share/TeXmacs/misc/pixmaps/light/tm_remove.svg
+share/TeXmacs/misc/pixmaps/light/tm_replace.svg
+share/TeXmacs/misc/pixmaps/light/tm_replace_all.svg
+share/TeXmacs/misc/pixmaps/light/tm_replace_one.svg
+share/TeXmacs/misc/pixmaps/light/tm_right.svg
+share/TeXmacs/misc/pixmaps/light/tm_right_down.svg
+share/TeXmacs/misc/pixmaps/light/tm_right_up.svg
+share/TeXmacs/misc/pixmaps/light/tm_romanian.svg
+share/TeXmacs/misc/pixmaps/light/tm_root.svg
+share/TeXmacs/misc/pixmaps/light/tm_root_index.svg
+share/TeXmacs/misc/pixmaps/light/tm_russian.svg
+share/TeXmacs/misc/pixmaps/light/tm_sample.svg
+share/TeXmacs/misc/pixmaps/light/tm_sansserif.svg
+share/TeXmacs/misc/pixmaps/light/tm_save.svg
+share/TeXmacs/misc/pixmaps/light/tm_search_first.svg
+share/TeXmacs/misc/pixmaps/light/tm_search_last.svg
+share/TeXmacs/misc/pixmaps/light/tm_search_next.svg
+share/TeXmacs/misc/pixmaps/light/tm_search_previous.svg
+share/TeXmacs/misc/pixmaps/light/tm_section.svg
+share/TeXmacs/misc/pixmaps/light/tm_session_session.svg
+share/TeXmacs/misc/pixmaps/light/tm_set_properties.svg
+share/TeXmacs/misc/pixmaps/light/tm_shell.svg
+share/TeXmacs/misc/pixmaps/light/tm_show_hidden.svg
+share/TeXmacs/misc/pixmaps/light/tm_similar_first.svg
+share/TeXmacs/misc/pixmaps/light/tm_similar_last.svg
+share/TeXmacs/misc/pixmaps/light/tm_similar_next.svg
+share/TeXmacs/misc/pixmaps/light/tm_similar_previous.svg
+share/TeXmacs/misc/pixmaps/light/tm_slovak.svg
+share/TeXmacs/misc/pixmaps/light/tm_slovene.svg
+share/TeXmacs/misc/pixmaps/light/tm_smallcaps.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_curve.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_curve_deco.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_curve_intersection.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_grid.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_grid_curve.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_grid_intersection.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_midpoint.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_text_border.svg
+share/TeXmacs/misc/pixmaps/light/tm_snap_text_deco.svg
+share/TeXmacs/misc/pixmaps/light/tm_spanish.svg
+share/TeXmacs/misc/pixmaps/light/tm_spell.svg
+share/TeXmacs/misc/pixmaps/light/tm_spline_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_stateless.svg
+share/TeXmacs/misc/pixmaps/light/tm_stop.svg
+share/TeXmacs/misc/pixmaps/light/tm_stretch.svg
+share/TeXmacs/misc/pixmaps/light/tm_strong.svg
+share/TeXmacs/misc/pixmaps/light/tm_subsup.svg
+share/TeXmacs/misc/pixmaps/light/tm_swedish.svg
+share/TeXmacs/misc/pixmaps/light/tm_switch.svg
+share/TeXmacs/misc/pixmaps/light/tm_table.svg
+share/TeXmacs/misc/pixmaps/light/tm_table_parwidth.svg
+share/TeXmacs/misc/pixmaps/light/tm_taiwanese.svg
+share/TeXmacs/misc/pixmaps/light/tm_textat_mode.svg
+share/TeXmacs/misc/pixmaps/light/tm_textual.svg
+share/TeXmacs/misc/pixmaps/light/tm_theme.svg
+share/TeXmacs/misc/pixmaps/light/tm_theorem.svg
+share/TeXmacs/misc/pixmaps/light/tm_three.svg
+share/TeXmacs/misc/pixmaps/light/tm_tilda.svg
+share/TeXmacs/misc/pixmaps/light/tm_tmdoc_annotate.svg
+share/TeXmacs/misc/pixmaps/light/tm_tmdoc_title.svg
+share/TeXmacs/misc/pixmaps/light/tm_traverse.svg
+share/TeXmacs/misc/pixmaps/light/tm_tuple.svg
+share/TeXmacs/misc/pixmaps/light/tm_typewriter.svg
+share/TeXmacs/misc/pixmaps/light/tm_ukrainian.svg
+share/TeXmacs/misc/pixmaps/light/tm_undo.svg
+share/TeXmacs/misc/pixmaps/light/tm_unequal.svg
+share/TeXmacs/misc/pixmaps/light/tm_up.svg
+share/TeXmacs/misc/pixmaps/light/tm_var_prominent.svg
+share/TeXmacs/misc/pixmaps/light/tm_vect.svg
+share/TeXmacs/misc/pixmaps/light/tm_verbatim.svg
+share/TeXmacs/misc/pixmaps/light/tm_view.svg
+share/TeXmacs/misc/pixmaps/light/tm_von.svg
+share/TeXmacs/misc/pixmaps/light/tm_wide.svg
+share/TeXmacs/misc/pixmaps/light/tm_wide_float.svg
+share/TeXmacs/misc/pixmaps/light/tm_wide_under.svg
share/TeXmacs/misc/pixmaps/modern/
share/TeXmacs/misc/pixmaps/modern/16x16/
share/TeXmacs/misc/pixmaps/modern/16x16/focus/
@@ -4789,6 +5585,13 @@ share/TeXmacs/misc/pixmaps/modern/24x24/
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud.svg
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud.xpm
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_admin.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_admin.svg
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_admin.xpm
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_chat.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_chat.svg
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_chat_x2.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_chat_x4.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_dir.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_dir.svg
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_dir.xpm
@@ -4809,6 +5612,10 @@ share/TeXmacs/misc/pixmaps/modern/24x24/
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_home.xpm
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_home_x2.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_home_x4.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_live.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_live.svg
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_live_x2.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_live_x4.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail.svg
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail.xpm
@@ -4819,6 +5626,13 @@ share/TeXmacs/misc/pixmaps/modern/24x24/
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail_new_x4.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail_x2.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_mail_x4.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_server.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_server.svg
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_server.xpm
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_share.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_share.svg
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_share_x2.png
+share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_share_x4.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_upload.png
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_upload.svg
share/TeXmacs/misc/pixmaps/modern/24x24/main/tm_cloud_upload.xpm
@@ -5256,6 +6070,8 @@ share/TeXmacs/misc/pixmaps/traditional/-
share/TeXmacs/misc/pixmaps/traditional/--x17/tm_toggle_change_props.xpm
share/TeXmacs/misc/pixmaps/traditional/--x17/tm_unfold.xpm
share/TeXmacs/misc/pixmaps/traditional/--x17/tm_vect.xpm
+share/TeXmacs/misc/pixmaps/unknown.eps
+share/TeXmacs/misc/pixmaps/unknown.pdf
share/TeXmacs/misc/pixmaps/unknown.png
share/TeXmacs/misc/pixmaps/unknown.ps
share/TeXmacs/misc/sounds/
@@ -5462,6 +6278,13 @@ share/TeXmacs/packages/miscellaneous/liv
share/TeXmacs/packages/miscellaneous/macro-editor.ts
share/TeXmacs/packages/miscellaneous/plot-editor.ts
share/TeXmacs/packages/miscellaneous/shortcut-editor.ts
+share/TeXmacs/packages/new-gui/
+share/TeXmacs/packages/new-gui/gui-base.ts
+share/TeXmacs/packages/new-gui/gui-bright.ts
+share/TeXmacs/packages/new-gui/gui-button.ts
+share/TeXmacs/packages/new-gui/gui-dark.ts
+share/TeXmacs/packages/new-gui/gui-keyboard.ts
+share/TeXmacs/packages/new-gui/side-tools.ts
share/TeXmacs/packages/obsolete/
share/TeXmacs/packages/obsolete/old-lengths.ts
share/TeXmacs/packages/obsolete/presentation-ridged-paper.ts
@@ -5571,6 +6394,11 @@ share/TeXmacs/packages/themes/plain/redd
share/TeXmacs/packages/themes/std/
share/TeXmacs/packages/themes/std/std-frame.ts
share/TeXmacs/packages/themes/std/std-shadow.ts
+share/TeXmacs/packages/themes/steelblue/
+share/TeXmacs/packages/themes/steelblue/steelblue-combo.ts
+share/TeXmacs/packages/themes/steelblue/steelblue-deco.ts
+share/TeXmacs/packages/themes/steelblue/steelblue-scene.ts
+share/TeXmacs/packages/themes/steelblue/steelblue.ts
share/TeXmacs/packages/themes/transparent/
share/TeXmacs/packages/themes/transparent/transparent-deco.ts
share/TeXmacs/packages/themes/transparent/transparent-scene.ts
@@ -5593,9 +6421,17 @@ share/TeXmacs/packages/utilities/literat
share/TeXmacs/packages/utilities/live.ts
share/TeXmacs/packages/utilities/preview-ref.ts
share/TeXmacs/packages/utilities/relate.ts
+share/TeXmacs/packages/utilities/remote-file-browser.ts
share/TeXmacs/packages/utilities/smart-ref.ts
share/TeXmacs/plugins/
share/TeXmacs/plugins/README.md
+share/TeXmacs/plugins/ai/
+share/TeXmacs/plugins/ai/doc/
+share/TeXmacs/plugins/ai/doc/ai-abstract.en.tm
+share/TeXmacs/plugins/ai/doc/ai-setup.en.tm
+share/TeXmacs/plugins/ai/doc/ai.en.tm
+share/TeXmacs/plugins/ai/progs/
+share/TeXmacs/plugins/ai/progs/init-ai.scm
share/TeXmacs/plugins/asymptote/
share/TeXmacs/plugins/asymptote/doc/
share/TeXmacs/plugins/asymptote/doc/asymptote-abstract.en.tm
@@ -5629,6 +6465,7 @@ share/TeXmacs/plugins/caas/packages/sess
share/TeXmacs/plugins/caas/packages/session/caas.ts
share/TeXmacs/plugins/caas/progs/
share/TeXmacs/plugins/caas/progs/caas-edit.scm
+share/TeXmacs/plugins/caas/progs/caas-format.scm
share/TeXmacs/plugins/caas/progs/caas-input.scm
share/TeXmacs/plugins/caas/progs/init-caas.scm
share/TeXmacs/plugins/cadabra/
@@ -5645,7 +6482,9 @@ share/TeXmacs/plugins/cocoa5/progs/
share/TeXmacs/plugins/cocoa5/progs/init-cocoa5.scm
share/TeXmacs/plugins/code/
share/TeXmacs/plugins/code/progs/
+share/TeXmacs/plugins/code/progs/code-format.scm
share/TeXmacs/plugins/code/progs/cpp-lang.scm
+share/TeXmacs/plugins/code/progs/csv-lang.scm
share/TeXmacs/plugins/code/progs/dot-lang.scm
share/TeXmacs/plugins/code/progs/init-code.scm
share/TeXmacs/plugins/code/progs/java-lang.scm
@@ -5679,6 +6518,23 @@ share/TeXmacs/plugins/dratex/latex/AlDra
share/TeXmacs/plugins/dratex/latex/DraTex.sty
share/TeXmacs/plugins/dratex/progs/
share/TeXmacs/plugins/dratex/progs/init-dratex.scm
+share/TeXmacs/plugins/equation-editor/
+share/TeXmacs/plugins/equation-editor/doc/
+share/TeXmacs/plugins/equation-editor/doc/equation-editor-abstract.en.tm
+share/TeXmacs/plugins/equation-editor/doc/equation-editor.en.tm
+share/TeXmacs/plugins/equation-editor/doc/screenshot_LO_Writer.png
+share/TeXmacs/plugins/equation-editor/misc/
+share/TeXmacs/plugins/equation-editor/misc/SVG_and_Texmacs-L-0.6.oxt
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/setup_texmacs_path.inx
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/texmacs.inx
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/texmacs_latex.sty
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/texmacs_reedit.py
+share/TeXmacs/plugins/equation-editor/misc/inkscape_extension/texmacs/texmacs_set_path.py
+share/TeXmacs/plugins/equation-editor/progs/
+share/TeXmacs/plugins/equation-editor/progs/equation-editor.scm
+share/TeXmacs/plugins/equation-editor/progs/init-equation-editor.scm
share/TeXmacs/plugins/eukleides/
share/TeXmacs/plugins/eukleides/doc/
share/TeXmacs/plugins/eukleides/doc/eukleides-abstract.en.tm
@@ -5766,6 +6622,18 @@ share/TeXmacs/plugins/gtybalt/doc/gtybal
share/TeXmacs/plugins/gtybalt/doc/gtybalt.en.tm
share/TeXmacs/plugins/gtybalt/progs/
share/TeXmacs/plugins/gtybalt/progs/init-gtybalt.scm
+share/TeXmacs/plugins/jupyter/
+share/TeXmacs/plugins/jupyter/README.md
+share/TeXmacs/plugins/jupyter/TODO.md
+share/TeXmacs/plugins/jupyter/progs/
+share/TeXmacs/plugins/jupyter/progs/init-jupyter.scm
+share/TeXmacs/plugins/jupyter/progs/jupyter-kernels.scm
+share/TeXmacs/plugins/jupyter/tm_jupyter/
+share/TeXmacs/plugins/jupyter/tm_jupyter/client.py
+share/TeXmacs/plugins/jupyter/tm_jupyter/kernels.py
+share/TeXmacs/plugins/jupyter/tm_jupyter/protocol/
+share/TeXmacs/plugins/jupyter/tm_jupyter/protocol/__init__.py
+share/TeXmacs/plugins/jupyter/tm_jupyter/protocol/texmacs.py
share/TeXmacs/plugins/lisp/
share/TeXmacs/plugins/lisp/bin/
share/TeXmacs/plugins/lisp/bin/tm_lisp
@@ -5836,6 +6704,7 @@ share/TeXmacs/plugins/mathemagix/package
share/TeXmacs/plugins/mathemagix/progs/
share/TeXmacs/plugins/mathemagix/progs/init-mathemagix.scm
share/TeXmacs/plugins/mathemagix/progs/mathemagix-edit.scm
+share/TeXmacs/plugins/mathemagix/progs/mathemagix-format.scm
share/TeXmacs/plugins/mathemagix/progs/mathemagix-input.scm
share/TeXmacs/plugins/mathemagix/progs/mathemagix-kbd.scm
share/TeXmacs/plugins/mathemagix/progs/mathemagix-menus.scm
@@ -6019,6 +6888,7 @@ share/TeXmacs/plugins/python/packages/se
share/TeXmacs/plugins/python/packages/session/python.ts
share/TeXmacs/plugins/python/progs/
share/TeXmacs/plugins/python/progs/init-python.scm
+share/TeXmacs/plugins/python/progs/python-format.scm
share/TeXmacs/plugins/python/progs/python-lang.scm
share/TeXmacs/plugins/python/progs/python-menus.scm
share/TeXmacs/plugins/python/progs/python-widgets.scm
@@ -6133,6 +7003,7 @@ share/TeXmacs/plugins/scilab/packages/se
share/TeXmacs/plugins/scilab/packages/session/scilab.ts
share/TeXmacs/plugins/scilab/progs/
share/TeXmacs/plugins/scilab/progs/init-scilab.scm
+share/TeXmacs/plugins/scilab/progs/scilab-format.scm
share/TeXmacs/plugins/scilab/progs/scilab-menus.scm
share/TeXmacs/plugins/shell/
share/TeXmacs/plugins/shell/Makefile
@@ -6313,12 +7184,15 @@ share/TeXmacs/progs/bibtex/unsrt.scm
share/TeXmacs/progs/check/
share/TeXmacs/progs/check/check-master.scm
share/TeXmacs/progs/client/
+share/TeXmacs/progs/client/client-authentication.scm
share/TeXmacs/progs/client/client-base.scm
share/TeXmacs/progs/client/client-chat.scm
share/TeXmacs/progs/client/client-db-sync.scm
share/TeXmacs/progs/client/client-db.scm
share/TeXmacs/progs/client/client-live.scm
share/TeXmacs/progs/client/client-menu.scm
+share/TeXmacs/progs/client/client-notifications.scm
+share/TeXmacs/progs/client/client-remote-config.scm
share/TeXmacs/progs/client/client-sync.scm
share/TeXmacs/progs/client/client-tmfs.scm
share/TeXmacs/progs/client/client-widgets.scm
@@ -6487,12 +7361,15 @@ share/TeXmacs/progs/fonts/fonts-math.scm
share/TeXmacs/progs/fonts/fonts-misc.scm
share/TeXmacs/progs/fonts/fonts-truetype.scm
share/TeXmacs/progs/fonts/fonts-x.scm
+share/TeXmacs/progs/forms/
+share/TeXmacs/progs/forms/server-preferences.tm
share/TeXmacs/progs/generic/
share/TeXmacs/progs/generic/document-doc.scm
share/TeXmacs/progs/generic/document-edit.scm
share/TeXmacs/progs/generic/document-menu.scm
share/TeXmacs/progs/generic/document-part.scm
share/TeXmacs/progs/generic/document-style.scm
+share/TeXmacs/progs/generic/document-tools.scm
share/TeXmacs/progs/generic/document-widgets.scm
share/TeXmacs/progs/generic/embedded-edit.scm
share/TeXmacs/progs/generic/embedded-menu.scm
@@ -6506,6 +7383,9 @@ share/TeXmacs/progs/generic/generic-doc.
share/TeXmacs/progs/generic/generic-edit.scm
share/TeXmacs/progs/generic/generic-kbd.scm
share/TeXmacs/progs/generic/generic-menu.scm
+share/TeXmacs/progs/generic/generic-speech-en.scm
+share/TeXmacs/progs/generic/generic-speech-fr.scm
+share/TeXmacs/progs/generic/generic-speech.scm
share/TeXmacs/progs/generic/insert-menu.scm
share/TeXmacs/progs/generic/pattern-selector.scm
share/TeXmacs/progs/generic/pattern-tools.scm
@@ -6539,9 +7419,11 @@ share/TeXmacs/progs/kernel/gui/
share/TeXmacs/progs/kernel/gui/gui-markup.scm
share/TeXmacs/progs/kernel/gui/kbd-define.scm
share/TeXmacs/progs/kernel/gui/kbd-handlers.scm
+share/TeXmacs/progs/kernel/gui/menu-convert.scm
share/TeXmacs/progs/kernel/gui/menu-define.scm
share/TeXmacs/progs/kernel/gui/menu-test.scm
share/TeXmacs/progs/kernel/gui/menu-widget.scm
+share/TeXmacs/progs/kernel/gui/speech-define.scm
share/TeXmacs/progs/kernel/library/
share/TeXmacs/progs/kernel/library/base.scm
share/TeXmacs/progs/kernel/library/content.scm
@@ -6566,6 +7448,7 @@ share/TeXmacs/progs/kernel/regexp/regexp
share/TeXmacs/progs/kernel/regexp/regexp-select.scm
share/TeXmacs/progs/kernel/regexp/regexp-test.scm
share/TeXmacs/progs/kernel/texmacs/
+share/TeXmacs/progs/kernel/texmacs/tm-convert-test.scm
share/TeXmacs/progs/kernel/texmacs/tm-convert.scm
share/TeXmacs/progs/kernel/texmacs/tm-define.scm
share/TeXmacs/progs/kernel/texmacs/tm-dialogue.scm
@@ -6593,12 +7476,20 @@ share/TeXmacs/progs/link/ref-edit.scm
share/TeXmacs/progs/link/ref-markup.scm
share/TeXmacs/progs/link/ref-menu.scm
share/TeXmacs/progs/math/
+share/TeXmacs/progs/math/math-adjust-en.scm
+share/TeXmacs/progs/math/math-adjust-fr.scm
share/TeXmacs/progs/math/math-drd.scm
share/TeXmacs/progs/math/math-edit.scm
share/TeXmacs/progs/math/math-kbd.scm
share/TeXmacs/progs/math/math-markup.scm
share/TeXmacs/progs/math/math-menu.scm
share/TeXmacs/progs/math/math-sem-edit.scm
+share/TeXmacs/progs/math/math-speech-en.scm
+share/TeXmacs/progs/math/math-speech-fr.scm
+share/TeXmacs/progs/math/math-speech.scm
+share/TeXmacs/progs/math/math-stats.scm
+share/TeXmacs/progs/notification/
+share/TeXmacs/progs/notification/notification-base.scm
share/TeXmacs/progs/part/
share/TeXmacs/progs/part/part-menu.scm
share/TeXmacs/progs/part/part-shared.scm
@@ -6631,18 +7522,24 @@ share/TeXmacs/progs/security/gpg/gpg-wid
share/TeXmacs/progs/security/keychain/
share/TeXmacs/progs/security/keychain/macos-security.scm
share/TeXmacs/progs/security/keychain/win-security.scm
+share/TeXmacs/progs/security/password.scm
share/TeXmacs/progs/security/wallet/
share/TeXmacs/progs/security/wallet/wallet-base.scm
share/TeXmacs/progs/security/wallet/wallet-menu.scm
share/TeXmacs/progs/server/
+share/TeXmacs/progs/server/server-authentication.scm
share/TeXmacs/progs/server/server-base.scm
share/TeXmacs/progs/server/server-chat.scm
share/TeXmacs/progs/server/server-db-sync.scm
share/TeXmacs/progs/server/server-db.scm
+share/TeXmacs/progs/server/server-email-new-account.txt
+share/TeXmacs/progs/server/server-email-reset-credentials.txt
share/TeXmacs/progs/server/server-live.scm
share/TeXmacs/progs/server/server-menu.scm
+share/TeXmacs/progs/server/server-notifications.scm
share/TeXmacs/progs/server/server-sync.scm
share/TeXmacs/progs/server/server-tmfs.scm
+share/TeXmacs/progs/server/server-widgets.scm
share/TeXmacs/progs/server/todo.tm
share/TeXmacs/progs/source/
share/TeXmacs/progs/source/macro-edit.scm
@@ -6660,6 +7557,7 @@ share/TeXmacs/progs/table/table-doc.scm
share/TeXmacs/progs/table/table-edit.scm
share/TeXmacs/progs/table/table-kbd.scm
share/TeXmacs/progs/table/table-menu.scm
+share/TeXmacs/progs/table/table-tools.scm
share/TeXmacs/progs/table/table-widgets.scm
share/TeXmacs/progs/texmacs/
share/TeXmacs/progs/texmacs/keyboard/
@@ -6677,6 +7575,7 @@ share/TeXmacs/progs/texmacs/menus/prefer
share/TeXmacs/progs/texmacs/menus/print-widgets.scm
share/TeXmacs/progs/texmacs/menus/tools-menu.scm
share/TeXmacs/progs/texmacs/menus/view-menu.scm
+share/TeXmacs/progs/texmacs/menus/view-tools.scm
share/TeXmacs/progs/texmacs/menus/view-widgets.scm
share/TeXmacs/progs/texmacs/texmacs/
share/TeXmacs/progs/texmacs/texmacs/tm-files.scm
@@ -6698,6 +7597,9 @@ share/TeXmacs/progs/text/text-edit.scm
share/TeXmacs/progs/text/text-kbd.scm
share/TeXmacs/progs/text/text-menu.scm
share/TeXmacs/progs/text/text-natbib.scm
+share/TeXmacs/progs/text/text-speech-en.scm
+share/TeXmacs/progs/text/text-speech-fr.scm
+share/TeXmacs/progs/text/text-speech.scm
share/TeXmacs/progs/text/text-structure.scm
share/TeXmacs/progs/text/vietnamese/
share/TeXmacs/progs/text/vietnamese/vietnamese.scm
@@ -6715,6 +7617,7 @@ share/TeXmacs/progs/utils/cas/
share/TeXmacs/progs/utils/cas/cas-out.scm
share/TeXmacs/progs/utils/cas/cas-rewrite.scm
share/TeXmacs/progs/utils/cite/
+share/TeXmacs/progs/utils/cite/cite-sort-test.scm
share/TeXmacs/progs/utils/cite/cite-sort.scm
share/TeXmacs/progs/utils/edit/
share/TeXmacs/progs/utils/edit/auto-close.scm
@@ -6736,9 +7639,12 @@ share/TeXmacs/progs/utils/literate/lp-bu
share/TeXmacs/progs/utils/literate/lp-edit.scm
share/TeXmacs/progs/utils/literate/lp-menu.scm
share/TeXmacs/progs/utils/misc/
+share/TeXmacs/progs/utils/misc/ai.scm
share/TeXmacs/progs/utils/misc/artwork.scm
share/TeXmacs/progs/utils/misc/doxygen.scm
share/TeXmacs/progs/utils/misc/extern-demo.scm
+share/TeXmacs/progs/utils/misc/gui-keyboard.scm
+share/TeXmacs/progs/utils/misc/gui-utils.scm
share/TeXmacs/progs/utils/misc/markup-funcs.scm
share/TeXmacs/progs/utils/misc/tiles.scm
share/TeXmacs/progs/utils/misc/tm-keywords.scm
@@ -6852,10 +7758,12 @@ share/TeXmacs/styles/seminar.ts
share/TeXmacs/styles/source.ts
share/TeXmacs/styles/test/
share/TeXmacs/styles/test/bibliography.ts
+share/TeXmacs/styles/test/code.ts
share/TeXmacs/styles/test/database-bib.ts
share/TeXmacs/styles/test/database.ts
share/TeXmacs/styles/test/email.ts
share/TeXmacs/styles/test/mailbox.ts
+share/TeXmacs/styles/test/new-gui.ts
share/TeXmacs/styles/test/verbatim-source.ts
share/TeXmacs/texts/
share/TeXmacs/texts/deprecated/
@@ -6864,6 +7772,7 @@ share/TeXmacs/texts/deprecated/deprecate
share/TeXmacs/texts/deprecated/deprecated-fonts-3.tm
share/TeXmacs/texts/deprecated/deprecated-overview.tm
share/TeXmacs/texts/misc/
+share/TeXmacs/texts/misc/cite.en.tm
share/TeXmacs/texts/misc/translate-demo.tm
share/TeXmacs/texts/test/
share/applications/texmacs.desktop
Index: pkg/README
===================================================================
RCS file: /cvs/ports/editors/TeXmacs/pkg/README,v
diff -u -p -r1.4 README
--- pkg/README 6 Feb 2023 22:33:45 -0000 1.4
+++ pkg/README 14 Aug 2026 11:22:27 -0000
@@ -15,7 +15,6 @@ lisp: clisp
maxima: maxima
octave: octave and gnuplot
pari: pari
-R: R
sympy: py3-sympy
Usage
@@ -26,19 +25,6 @@ following menus.
Interactive session: Insert > Session
Executable folded environment: Insert > Fold > Executable
-
-Interface to R
---------------
-The TeXmacs interface to R requires additional setup. An R package for the
-interface will be built and installed. Give write permissions to the group
-(e.g., puffy) running TeXmacs:
-
-# chown root:puffy ${TRUEPREFIX}/lib/R/library/
-# chmod 775 ${TRUEPREFIX}/lib/R/library/
-
-Start an R session in TeXmacs: Insert > Session > R
-
-The tutorial can now be followed: Help > Plug-ins > R
Documentation
-------------
update editors/TeXmacs 2.1.5