head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.20 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.18 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.16 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.14 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.12 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.10 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.8 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.6 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.4 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.2 pkgsrc-2023Q4-base:1.1; locks; strict; comment @# @; 1.1 date 2023.11.02.21.34.26; author nros; state Exp; branches; next ; commitid at4gBnMfyz4G75LE; desc @@ 1.1 log @Update texmacs to version 2.1.2 Changes: * Creation of various interface themes for TeXmacs, such as dark and bright (2.1.1). * Improved high resolution support under Linux and Windows (2.1.1). * Progress on (not yet default) Qt5 version of TeXmacs (2.1.1). * Updated font database for recent pre-installed Linux/Mac/Window fonts (2.1.1). * Minor bug fixes (2.1). * Updated plug-in for Giac (1.99.21). * Better support for the most common LaTeX style files (1.99.20). * Many corrections for the LaTeX export when using common LaTeX styles (1.99.20). * Added Slovak language support (1.99.20). * Improved Octave plugin with tab completion and multi-line input (1.99.19). * Enhanced structured search & replace: added preferences and wildcards (1.99.19). * Minor progress on the remote editing tools (1.99.18). * Improved remote editing tools (1.99.17). * Lightweight facility for managing user-defined keyboard shortcuts (1.99.17). * Improved customizability of item lists and enumerations (1.99.17). * Further improvements for preview and help balloons (1.99.16). * Possibility to find labels from their numeric value (1.99.16). * Incorporation of a smart-ref package for smart references (1.99.16). * Fix spell checking under Windows (1.99.16). * Rudimentary support for Wacom-style pen tablets, Qt5 only (1.99.16). * Improved help balloons and preview facility for references and citations (1.99.15). * Improved navigation and search tools for labels, references, and citations (1.99.15). * Indicate the current cursor position by shaking the mouse (1.99.15). * Improved Html export with better CSS stylability (1.99.14). * Improved Octave plugin (1.99.14). @ text @$NetBSD$ Don't set execute permission on scilab files --- plugins/CMakeLists.txt.orig 2022-05-05 15:27:07.955037215 +0000 +++ plugins/CMakeLists.txt @@@@ -27,8 +27,11 @@@@ foreach(PLUGIN ${PLUGIN_DIRS}) PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ) else (WIN32) install(DIRECTORY ${PLUGIN}/bin/ DESTINATION share/TeXmacs/plugins/${PLUGIN_NAME}/bin - PATTERN "*" - PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ) + FILE_PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ + PATTERN "*.sce" + PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ + PATTERN "*.sci" + PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ) endif (WIN32) endif(EXISTS ${PLUGIN}/bin/) endforeach(PLUGIN) @