<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ayatana-indicator-display, branch 22.2.1</title>
<subtitle>Ayatana Indicator Display Service
</subtitle>
<id>https://openid.arctica-project.org/ayatana-indicator-display/atom?h=22.2.1</id>
<link rel='self' href='https://openid.arctica-project.org/ayatana-indicator-display/atom?h=22.2.1'/>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/'/>
<updated>2022-07-20T21:57:56+00:00</updated>
<entry>
<title>release 22.2.1</title>
<updated>2022-07-20T21:57:56+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2022-07-20T21:57:55+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=f3b8d73471bc3eacd043901eb77141fa6982a295'/>
<id>urn:sha1:f3b8d73471bc3eacd043901eb77141fa6982a295</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #52 from JamiKettunen/musl-tests</title>
<updated>2022-07-05T23:48:57+00:00</updated>
<author>
<name>Marius Gripsgard</name>
<email>marius@ubports.com</email>
</author>
<published>2022-07-05T23:48:57+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=274b977311cdbddb1d057e908394a5cdad451885'/>
<id>urn:sha1:274b977311cdbddb1d057e908394a5cdad451885</id>
<content type='text'>
tests/utils/qmain.cpp: Add missing include for libintl.h</content>
</entry>
<entry>
<title>src/adbd-client.cpp: Fix cppcheck</title>
<updated>2022-07-05T14:12:00+00:00</updated>
<author>
<name>Jami Kettunen</name>
<email>jami.kettunen@protonmail.com</email>
</author>
<published>2022-06-30T20:18:32+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=4e457eef34459bf3a87720762eb66bb65a8ea54d'/>
<id>urn:sha1:4e457eef34459bf3a87720762eb66bb65a8ea54d</id>
<content type='text'>
cppcheck test was failing both locally for me and on CI:

  .../src/adbd-client.cpp:128:80: style: C-style pointer casting [cstyleCast]
          g_debug("%s thread %p creating a client socket to '%s'", G_STRLOC, (void*)g_thread_self(), socket_path.c_str());
                                                                             ^
</content>
</entry>
<entry>
<title>tests/utils/qmain.cpp: Add missing include for libintl.h</title>
<updated>2022-06-30T16:57:10+00:00</updated>
<author>
<name>Jami Kettunen</name>
<email>jami.kettunen@protonmail.com</email>
</author>
<published>2022-06-30T16:57:10+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=c61be8793b24365789a84d5d9b4d2c9ff33884e7'/>
<id>urn:sha1:c61be8793b24365789a84d5d9b4d2c9ff33884e7</id>
<content type='text'>
Fixes the following build error under musl libc:

  ../../../tests/utils/qmain.cpp: In function 'int main(int, char**)':
  ../../../tests/utils/qmain.cpp:47:5: error: 'bindtextdomain' was not declared in this scope
     47 |     bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
        |     ^~~~~~~~~~~~~~
  ../../../tests/utils/qmain.cpp:48:5: error: 'textdomain' was not declared in this scope
     48 |     textdomain(GETTEXT_PACKAGE);
        |     ^~~~~~~~~~
</content>
</entry>
<entry>
<title>Merge branch 'ubports-personal/peat-psuwit/upstream_-_gschemas.compile-race'</title>
<updated>2022-03-08T14:20:54+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2022-03-08T14:20:54+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=4d895fa3e739c5a67905684b39707d96763a8789'/>
<id>urn:sha1:4d895fa3e739c5a67905684b39707d96763a8789</id>
<content type='text'>
Attributes GH PR #50: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/50
</content>
</entry>
<entry>
<title>tests/unit: fix cmake custom command race condition</title>
<updated>2022-03-07T18:35:56+00:00</updated>
<author>
<name>Ratchanan Srirattanamet</name>
<email>ratchanan@ubports.com</email>
</author>
<published>2022-03-07T18:35:56+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=036b96b43f42bb7174e87973a5fb6348a512abca'/>
<id>urn:sha1:036b96b43f42bb7174e87973a5fb6348a512abca</id>
<content type='text'>
CMake's documentation says [1]:

&gt; Do not list the output in more than one independent target that may
&gt; build in parallel or the two instances of the rule may conflict
&gt; (instead use the add_custom_target() command to drive the command and
&gt; make the other targets depend on that one).

Because gschemas.compiled will be referenced multiple times
independently, a level of redirection is needed to prevent CMake from
generating the rule for the file multiple times.

This is encountered in ayatana-indicator-power as well, and fixed in a
similar way [2].

[1] https://cmake.org/cmake/help/latest/command/add_custom_command.html#generating-files
[2] https://github.com/AyatanaIndicators/ayatana-indicator-power/commit/9a90f932e51db486b166dd38f00e4186e40a1aee
</content>
</entry>
<entry>
<title>release 22.2.0</title>
<updated>2022-02-17T21:10:24+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2022-02-17T21:10:24+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=cefd302d0316728275b1e0107254010ee53f7297'/>
<id>urn:sha1:cefd302d0316728275b1e0107254010ee53f7297</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'</title>
<updated>2022-02-16T10:16:51+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2022-02-16T10:16:51+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=26000403c33875ec4152cff78b958ef9736040dd'/>
<id>urn:sha1:26000403c33875ec4152cff78b958ef9736040dd</id>
<content type='text'>
Attributes GH PR #49: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/49
</content>
</entry>
<entry>
<title>Drop pkglibexecdir and use native CMake file configuration</title>
<updated>2022-02-16T09:56:57+00:00</updated>
<author>
<name>Robert Tari</name>
<email>robert@tari.in</email>
</author>
<published>2022-02-16T09:36:14+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=bab7087b15336e5635289bcd5a47709693a21c4c'/>
<id>urn:sha1:bab7087b15336e5635289bcd5a47709693a21c4c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>.travis.yml: Run CI builds on Travis CI's Ubuntu focal base system</title>
<updated>2022-02-08T14:31:36+00:00</updated>
<author>
<name>Robert Tari</name>
<email>robert@tari.in</email>
</author>
<published>2022-02-08T14:31:36+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/ayatana-indicator-display/commit/?id=51776b60df852a599ef24836ac3ecd8ceda983d3'/>
<id>urn:sha1:51776b60df852a599ef24836ac3ecd8ceda983d3</id>
<content type='text'>
</content>
</entry>
</feed>
