Skip to content

Commit

Permalink
Merge branch 'main' into fix-avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
mbgonicus authored Feb 13, 2025
2 parents 41ed506 + 559c876 commit bd20b83
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [1.1.0](https://github.com/gonicus/gonnect/compare/v1.0.7...v1.1.0) (2025-02-12)


### Bug Fixes

* load avatars of contacts that are created later ([76f63ea](https://github.com/gonicus/gonnect/commit/76f63ea46db020277906935d5b5cc580000b3e04)), closes [#11](https://github.com/gonicus/gonnect/issues/11)
* remove direct jpeg deps ([41ff744](https://github.com/gonicus/gonnect/commit/41ff7440fee25a05c4b71e8c7dc8fe5b9ba802f3))
* send refresh signals after carddav contacts loaded ([f8a6f8f](https://github.com/gonicus/gonnect/commit/f8a6f8f9d23529864afd1e0fd374f57c45a09e3a)), closes [#11](https://github.com/gonicus/gonnect/issues/11)
* **ui:** send update signals when adding avatar via CardDAV ([87d5f8f](https://github.com/gonicus/gonnect/commit/87d5f8fdd7019d84fa2a154e4eab20d87acb82e4)), closes [#11](https://github.com/gonicus/gonnect/issues/11)


### Features

* CardDAV contact support ([b848a10](https://github.com/gonicus/gonnect/commit/b848a10e17b57de3b107caf2889fcea0c7976060)), closes [#11](https://github.com/gonicus/gonnect/issues/11)
* move to software clock by default and make it configurable ([690a04c](https://github.com/gonicus/gonnect/commit/690a04cee61cb3095596f8c62cff066f1779472b))

## [1.0.7](https://github.com/gonicus/gonnect/compare/v1.0.6...v1.0.7) (2025-01-20)


Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)

project(GOnnect VERSION 1.0.7 LANGUAGES CXX)
project(GOnnect VERSION 1.1.0 LANGUAGES CXX)

set(CMAKE_COMPILE_WARNING_AS_ERROR ON)
set(CMAKE_CXX_STANDARD 20)
Expand Down
37 changes: 37 additions & 0 deletions resources/flatpak/de.gonicus.gonnect.releases.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<releases>
<release version="1.1.0" date="2025-02-12">
<description>
<p>Continuous Integration:</p>
<ul>
<li>make analyzer work again</li>
<li>try to fix static analyzer (again)</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Added headset description</li>
<li>fixed parsing of photo data in CardDAV feeder</li>
<li>remove debug info</li>
<li>use proper logging channel</li>
<li>update renovatebot/github-action action to v41.0.10</li>
<li>update renovatebot/github-action action to v41.0.11</li>
<li>update renovatebot/github-action action to v41.0.13</li>
<li>non-goals paragraph in README</li>
</ul>
<p>Bug Fixes:</p>
<ul>
<li>load avatars of contacts that are created later</li>
<li>remove direct jpeg deps</li>
<li>send refresh signals after carddav contacts loaded</li>
<li>send update signals when adding avatar via CardDAV</li>
</ul>
<p>Code Refactoring:</p>
<ul>
<li>use better approach to check if MESSAGING is allowed</li>
<li>use correct id for CardDAV-loaded contacts</li>
</ul>
<p>Features:</p>
<ul>
<li>CardDAV contact support</li>
<li>move to software clock by default and make it configurable</li>
</ul>
</description>
</release>
<release version="1.0.7" date="2025-01-20">
<description>
<p>Maintenance:</p>
Expand Down
2 changes: 2 additions & 0 deletions scripts/process-clang-output.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ def get_plist_with_content(dir):
except FileNotFoundError as err:
print(err)
exit()
except:
pass
if pl['diagnostics']:
plist_list.append(pl)
if not plist_list:
Expand Down

0 comments on commit bd20b83

Please sign in to comment.