Skip to content
Commits on Source (177)
......@@ -646,7 +646,7 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
......@@ -665,7 +665,7 @@ might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
......
This diff is collapsed.
Parts of code copied from xterm, under this licence:
Copyright 2013-2019,2020 by Ross Combs
Copyright 2013-2019,2020 by Thomas E. Dickey
All Rights Reserved
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name(s) of the above copyright
holders shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization.
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......@@ -24,6 +24,8 @@ NTHREADS = 1
NJOBS = -j$(NTHREADS)
NINJA = ninja $(NJOBS)
MESON = meson
#
all:
......@@ -46,3 +48,9 @@ install:
uninstall:
$(NINJA) uninstall
dist:
$(MESON) dist --no-tests
distcheck:
$(MESON) dist
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......
# Copyright © 2020 Aleksandr Mezin
# Copyright © 2020 Christian Persch
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
gladedir = vte_datadir / 'glade'
cataloguedir = gladedir / 'catalogs'
pixmapdir = gladedir / 'pixmaps'
catalog_conf = configuration_data()
catalog_conf.set('VTE_API_VERSION', vte_gtk3_api_version)
catalog_conf.set('VERSION', vte_version)
configure_file(
input: 'vte.xml.in',
configuration: catalog_conf,
install_dir: cataloguedir,
output: vte_gtk3_api_name + '.xml',
)
install_data(
'hicolor_actions_16x16_widget-vte-terminal.png',
install_dir: pixmapdir / 'hicolor' / '16x16' / 'actions',
rename: 'widget-vte-terminal.png',
)
install_data(
'hicolor_actions_22x22_widget-vte-terminal.png',
install_dir: pixmapdir / 'hicolor' / '22x22' / 'actions',
rename: 'widget-vte-terminal.png',
)
<?xml version="1.0" encoding="UTF-8"?>
<glade-catalog name="vte-@VTE_API_VERSION@"
version="@VERSION@"
library="vte-@VTE_API_VERSION@"
domain="vte-@VTE_API_VERSION@"
depends="gtk+"
book="vte"
icon-prefix="vte"
supports="gtkbuilder">
<glade-widget-classes>
<glade-widget-class title="VTE Terminal" name="VteTerminal" generic-name="terminal" />
</glade-widget-classes>
<glade-widget-group name="vte-terminal" title="VTE Terminal">
<glade-widget-class-ref name="VteTerminal"/>
</glade-widget-group>
</glade-catalog>
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
if get_option('glade') and get_option('gtk3')
subdir('glade')
endif
if get_option('gir') and (get_option('gtk3') or get_option('gtk4'))
subdir('gir')
endif
......
......@@ -2,18 +2,18 @@
<!--
Copyright © 2014 Christian Persch
This program is free software; you can redistribute it and/or modify
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope conf it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<gresources>
<gresource prefix="/org/gnome/vte/test/app">
......
......@@ -4,7 +4,7 @@
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
......@@ -13,7 +13,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Test
......
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......
# Copyright © 2018, 2019 Iñigo Martínez
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......
......@@ -7,19 +7,18 @@
<!--
Copyright © 2009, 2010 Christian Persch
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
You should have received a copy of the GNU Lesser General Public License
along with this library. If not, see <https://www.gnu.org/licenses/>.
-->
<bookinfo>
......@@ -39,12 +38,12 @@
<legalnotice>
<para>
Permission is granted to copy, distribute and/or modify this document
under the terms of the <citetitle>GNU Lesser General Public Licence</citetitle>, Version 2.1
under the terms of the <citetitle>GNU Lesser General Public Licence</citetitle>, Version 3
or (at your option) any later version published by the Free Software Foundation.
You may obtain a copy of the <citetitle>GNU Lesser General Public Licence</citetitle>
from the Free Software Foundation at
<ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink>
<ulink type="http" url="https://www.gnu.org/licences/">GNU Licences web site</ulink>
or by writing to:
<address>
......@@ -130,6 +129,10 @@
<title>Index of new symbols in 0.62</title>
<xi:include href="xml/api-index-0.62.xml"><xi:fallback /></xi:include>
</index>
<index id="api-index-0-64" role="0.64">
<title>Index of new symbols in 0.64</title>
<xi:include href="xml/api-index-0.64.xml"><xi:fallback /></xi:include>
</index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
......@@ -140,7 +143,7 @@
This library is free software; you can redistribute it and/or
modify it under the terms of the <citetitle>GNU Lesser General Public
Licence</citetitle> as published by the Free Software Foundation; either
version 2.1 of the Licence, or (at your option) any later version.
version 3 of the Licence, or (at your option) any later version.
</para>
<para>
......@@ -154,7 +157,7 @@
<para>
You may obtain a copy of the <citetitle>GNU Lesser General Public Licence</citetitle>
from the Free Software Foundation at
<ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink>
<ulink type="http" url="https://www.gnu.org/licences/">GNU Licences web site</ulink>
or by writing to:
<address>
......
......@@ -29,6 +29,8 @@ vte_terminal_set_bold_is_bright
vte_terminal_get_bold_is_bright
vte_terminal_set_allow_hyperlink
vte_terminal_get_allow_hyperlink
vte_terminal_set_enable_fallback_scrolling
vte_terminal_get_enable_fallback_scrolling
vte_terminal_set_scroll_on_output
vte_terminal_get_scroll_on_output
vte_terminal_set_scroll_on_keystroke
......@@ -82,6 +84,8 @@ vte_terminal_set_word_char_exceptions
vte_terminal_get_word_char_exceptions
vte_terminal_set_input_enabled
vte_terminal_get_input_enabled
vte_terminal_get_sixel_enabled
vte_terminal_set_sixel_enabled
vte_terminal_write_contents_sync
vte_terminal_search_find_next
vte_terminal_search_find_previous
......
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......@@ -17,7 +17,7 @@
project(
'vte',
['c', 'cpp'],
version: '0.62.3',
version: '0.64.2',
license: ['LGPL-3.0-or-later', 'GPL-3.0-or-later'],
default_options: [
'buildtype=release',
......@@ -151,6 +151,7 @@ check_headers = [
'stropts.h',
'sys/resource.h',
'sys/select.h',
'sys/stream.h',
'sys/syslimits.h',
'sys/termios.h',
'sys/types.h',
......@@ -446,10 +447,12 @@ config_h.set('WITH_SYSTEMD', systemd_dep.found())
# Write config.h
configure_file(
output: 'config.h',
configuration: config_h,
)
config_sources = [
configure_file(
output: 'config.h',
configuration: config_h,
),
]
# Subdirs
......@@ -461,6 +464,16 @@ if get_option('docs')
subdir('doc/reference')
endif
# Dist
# Meson bug https://github.com/mesonbuild/meson/issues/8440 breaks using vte
# as subproject; see vte#345.
if meson.version().version_compare('>= 0.58.0') or not meson.is_subproject()
meson.add_dist_script(
find_program('meson_changelog.sh'),
)
endif
# Simple compat Makefile
makefile_conf = configuration_data()
......@@ -505,6 +518,7 @@ output += ' GTK+ 4.0: ' + get_option('gtk4').to_string() + '\n'
output += ' ICU: ' + get_option('icu').to_string() + '\n'
output += ' GIR: ' + get_option('gir').to_string() + '\n'
output += ' systemd: ' + systemd_dep.found().to_string() + '\n'
output += ' Glade: ' + get_option('glade').to_string() + '\n'
output += ' Vala: ' + get_option('vapi').to_string() + '\n'
output += '\n'
output += ' Prefix: ' + get_option('prefix') + '\n'
......
#!/usr/bin/env bash
# Copyright © 2021 Christian Persch
#
# This programme is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
# This programme is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this programme. If not, see <https://www.gnu.org/licenses/>.
set -e
top_srcdir="$MESON_SOURCE_ROOT"
top_builddir="MESON_BUILD_ROOT"
top_distdir="$MESON_DIST_ROOT"
if ! test -e "${top_srcdir}"/.git; then
echo "Must be run from gnome-terminal git checkout"
exit 1
fi
if ! test -e "${top_distdir}"; then
echo "Must be run from 'meson dist'"
exit 1
fi
GIT_DIR="${top_srcdir}"/.git git log --stat > "${top_distdir}"/ChangeLog
# Copyright © 2018, 2019 Iñigo Martínez
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......@@ -57,6 +57,13 @@ option(
description: 'Enable FriBidi support',
)
option(
'glade',
type: 'boolean',
value : true,
description: 'Install a glade catalogue file'
)
option(
'gnutls',
type: 'boolean',
......
......@@ -3,9 +3,9 @@
# Test 256 color support along with bold and dim attributes.
# Copyright (C) 2014 Egmont Koblinger
#
# This program is free software; you can redistribute it and/or modify
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
......@@ -13,9 +13,8 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
sep=':'
if [ "$1" = "-colon" -o "$1" = "-official" -o "$1" = "-dejure" ]; then
......