pidgin/resources/Prefs/network.ui

Mon, 30 Jun 2025 23:04:59 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Mon, 30 Jun 2025 23:04:59 -0500
changeset 43273
b2e7a32950ae
parent 43194
77aadc520684
permissions
-rw-r--r--

Update metainfo.xml for the release

And prepare for the next release right away.

Testing Done:
Ran `meson dist`

Reviewed at https://reviews.imfreedom.org/r/4041/

<?xml version="1.0" encoding="UTF-8"?>
<!--
Pidgin - Internet Messenger
Copyright (C) Pidgin Developers <devel@pidgin.im>

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 (at your option) any later version.

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 <https://www.gnu.org/licenses/>.
-->
<interface>
  <requires lib="gtk" version="4.0"/>
  <requires lib="Adw" version="1.0"/>
  <!-- interface-license-type gplv2 -->
  <!-- interface-name Pidgin -->
  <!-- interface-description Internet Messenger -->
  <!-- interface-copyright Pidgin Developers <devel@pidgin.im> -->
  <object class="GtkAdjustment" id="ports_range_end.adjustment">
    <property name="upper">65535</property>
    <property name="step-increment">1</property>
    <property name="page-increment">10</property>
  </object>
  <object class="GtkAdjustment" id="ports_range_start.adjustment">
    <property name="upper">65535</property>
    <property name="step-increment">1</property>
    <property name="page-increment">10</property>
  </object>
  <template class="PidginNetworkPrefs" parent="AdwPreferencesPage">
    <property name="icon-name">preferences-system-network-symbolic</property>
    <property name="title" translatable="yes">Network</property>
    <child>
      <object class="AdwPreferencesGroup">
        <property name="title" translatable="yes">IP Address</property>
        <child>
          <object class="AdwEntryRow" id="stun_server">
            <property name="title" translatable="yes">ST_UN server</property>
            <property name="use-underline">1</property>
            <property name="input-purpose">url</property>
          </object>
        </child>
        <child>
          <object class="AdwSwitchRow" id="auto_ip">
            <property name="title" translatable="yes">Use _automatically detected IP address</property>
            <property name="use-underline">1</property>
            <signal name="notify::active" handler="auto_ip_button_clicked_cb" after="yes" swapped="no"/>
          </object>
        </child>
        <child>
          <object class="AdwEntryRow" id="public_ip">
            <property name="title" translatable="yes">Public _IP</property>
            <property name="use-underline">1</property>
            <property name="sensitive" bind-source="auto_ip" bind-property="active" bind-flags="sync-create|invert-boolean">0</property>
            <signal name="changed" handler="network_ip_changed" swapped="no"/>
          </object>
        </child>
      </object>
    </child>
    <child>
      <object class="AdwPreferencesGroup">
        <property name="title" translatable="yes">Ports</property>
        <child>
          <object class="AdwSwitchRow" id="map_ports">
            <property name="title" translatable="yes">_Enable automatic router port forwarding</property>
            <property name="use-underline">1</property>
          </object>
        </child>
        <child>
          <object class="AdwExpanderRow" id="ports_range_use">
            <property name="title" translatable="yes">_Manually specify range of ports to listen on</property>
            <property name="show-enable-switch">1</property>
            <property name="use-underline">1</property>
            <property name="focusable">0</property>
            <child>
              <object class="AdwSpinRow" id="ports_range_start">
                <property name="title" translatable="yes">_Start</property>
                <property name="use-underline">1</property>
                <property name="adjustment">ports_range_start.adjustment</property>
                <property name="digits">0</property>
                <property name="numeric">1</property>
                <property name="value">0</property>
              </object>
            </child>
            <child>
              <object class="AdwSpinRow" id="ports_range_end">
                <property name="title" translatable="yes">_End</property>
                <property name="use-underline">1</property>
                <property name="adjustment">ports_range_end.adjustment</property>
                <property name="digits">0</property>
                <property name="numeric">1</property>
                <property name="value">0</property>
              </object>
            </child>
          </object>
        </child>
      </object>
    </child>
  </template>
</interface>

mercurial