Skip to content

Commit

Permalink
release 4.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Aug 8, 2024
1 parent 7a6e625 commit 79375fb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 7 additions & 2 deletions core/Services/CalDAV/Providers/Nextcloud.vala
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,13 @@ public class Services.CalDAV.Providers.Nextcloud : Services.CalDAV.Providers.Bas
if (_uri.get_port () > 0) {
server_url = "%s://%s:%d".printf (_uri.get_scheme (), _uri.get_host (), _uri.get_port ());
}

server_url += _uri.get_path ();

string path = _uri.get_path ();
if (path.has_suffix ("/")) {
path = path.substring (0, path.length - 1);
}

server_url += path;
} catch (Error e) {
debug (e.message);
}
Expand Down
8 changes: 8 additions & 0 deletions data/io.github.alainm23.planify.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@
<url type="donation">https://www.patreon.com/alainm23</url>
<launchable type="desktop-id">@appid@.desktop</launchable>
<releases>
<release version="4.10.7" date="2024-08-08">
<description translate="no">
<ul>
<li>Support for syncing Nextcloud accounts that use a custom subpath (#1398).</li>
</ul>
</description>
</release>

<release version="4.10.6" date="2024-08-05">
<description translate="no">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'io.github.alainm23.planify',
'vala', 'c',
version: '4.10.6'
version: '4.10.7'
)

gnome = import('gnome')
Expand Down

0 comments on commit 79375fb

Please sign in to comment.