pidgin/plugins/unity/im.pidgin.Pidgin.plugin.Unity.gschema.xml

Sun, 14 Jan 2024 20:08:13 -0600

author
Gary Kramlich <grim@reaperworld.com>
date
Sun, 14 Jan 2024 20:08:13 -0600
changeset 42568
31e8c7c92e2f
parent 42452
8b5a5b21d6da
permissions
-rw-r--r--

Make sure all of the license headers for IRCv3 are GPLv2

Testing Done:
Ran `licensecheck` from debian in the following way.

```
$ licensecheck *.[ch] | cut -d: -f 2 | sort | uniq -c
27 GNU General Public License v2.0 or later
```

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

<?xml version="1.0" encoding="utf-8"?>
<schemalist>
  <enum id="im.pidgin.Pidgin.plugin.Unity.LauncherCount">
    <value nick="Disable launcher integration" value="0"/>
    <value nick="Show number of unread messages" value="1"/>
    <value nick="Show number of unread conversations" value="2"/>
  </enum>

  <enum id="im.pidgin.Pidgin.plugin.Unity.MessagingMenu">
    <value nick="Show number of unread messages for conversations" value="0"/>
    <value nick="Show elapsed time for unread conversations" value="1"/>
  </enum>

  <schema path="/pidgin/plugins/unity/" id="im.pidgin.Pidgin.plugin.Unity">
    <key name="alert-chat-nick" type="b">
      <default>true</default>
      <summary>Chatroom alerts</summary>
      <description>
        Chatroom message alerts only where someone says your username.
      </description>
    </key>

    <key name="launcher-count" enum="im.pidgin.Pidgin.plugin.Unity.LauncherCount">
      <default>"Show number of unread conversations"</default>
      <summary>Launcher integration</summary>
      <description>
        What to show in the launcher icon.
      </description>
    </key>

    <key name="messaging-menu-text" enum="im.pidgin.Pidgin.plugin.Unity.MessagingMenu">
      <default>"Show number of unread messages for conversations"</default>
      <summary>Messaging menu integration</summary>
      <description>
        What to show in the messaging menu.
      </description>
    </key>
  </schema>
</schemalist>

mercurial