Skip to content

Commit 79375fb

Browse files
committed
release 4.10.7
1 parent 7a6e625 commit 79375fb

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

core/Services/CalDAV/Providers/Nextcloud.vala

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,13 @@ public class Services.CalDAV.Providers.Nextcloud : Services.CalDAV.Providers.Bas
281281
if (_uri.get_port () > 0) {
282282
server_url = "%s://%s:%d".printf (_uri.get_scheme (), _uri.get_host (), _uri.get_port ());
283283
}
284-
285-
server_url += _uri.get_path ();
284+
285+
string path = _uri.get_path ();
286+
if (path.has_suffix ("/")) {
287+
path = path.substring (0, path.length - 1);
288+
}
289+
290+
server_url += path;
286291
} catch (Error e) {
287292
debug (e.message);
288293
}

data/io.github.alainm23.planify.appdata.xml.in.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@
6767
<url type="donation">https://www.patreon.com/alainm23</url>
6868
<launchable type="desktop-id">@[email protected]</launchable>
6969
<releases>
70+
<release version="4.10.7" date="2024-08-08">
71+
<description translate="no">
72+
<ul>
73+
<li>Support for syncing Nextcloud accounts that use a custom subpath (#1398).</li>
74+
</ul>
75+
</description>
76+
</release>
77+
7078
<release version="4.10.6" date="2024-08-05">
7179
<description translate="no">
7280
<ul>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'io.github.alainm23.planify',
33
'vala', 'c',
4-
version: '4.10.6'
4+
version: '4.10.7'
55
)
66

77
gnome = import('gnome')

0 commit comments

Comments
 (0)