Skip to content

Vdirsyncer 2.0 beta0 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/blog/2024-05-22-vdirsyncer-2.0.0-alpha0.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ See the [migration guide] for details on how to update a configuration file.
There is currently no documentation on setting up a new configuration from
scratch (this will be addressed at some point on a later release).

[migration guide]: https://git.sr.ht/~whynothugo/vdirsyncer-rs/tree/vdirsyncer/v2.0.0-alpha0/item/docs/content/docs/migration-guide.md

Please [join us on IRC][contact] if you have feedback or questions.

Issues are tracked in [a separate issue tracker][issues], to avoid any confusion
Expand Down
55 changes: 55 additions & 0 deletions content/blog/2024-08-28-vdirsyncer-2.0.0-beta0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
layout: post
title: Vdirsyncer 2.0.0-beta0 release
date: 2024-08-28
categories: blog
params:
author: WhyNotHugo
---

I've tagged a beta release of the vdirsyncer v2. I believe that most usages that
can lead to data loss have been properly addressed. By tagging this beta, I
expect to gather from feedback from usage by others.

As always, please do back up your data, especially during the initial
configuration.

## Documentation

The biggest flaw right now is a strong lack of documentation. A [migration
guide] is still available for users of v1, but nothing else. I understand that
the lack of documentation is the main hindrance for adoption, even for early
testers, so documentation will be my main focus in the upcoming weeks and the
main target for the next beta.

[migration guide]:
https://git.sr.ht/~whynothugo/vdirsyncer-rs/tree/v2.0.0-beta0/item/docs/content/docs/migration-guide.md

# Installation

The current beta needs to be built from source.

```sh
curl -LO https://git.sr.ht/~whynothugo/vdirsyncer-rs/archive/v2.0.0-beta0.tar.gz
tar xf v2.0.0-beta0.tar.gz
cd vdirsyncer-rs-v2.0.0-beta0/
make
doas make install
```

# Thanks

I'd like to extend my deep appreciation to NLnet for the grant we have received
that enabled my to work on vdirsyncer for so many hours. This effort would not
be possible without them. Thanks!

# Feedback

Please [join us on IRC][contact] if you have feedback or questions.

[contact]: /contact/

Issues are tracked in [a separate issue tracker][issues], to avoid any confusion
with existing issues from vdirsyncer v1.

[issues]: https://todo.sr.ht/~whynothugo/vdirsyncer-rs
2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1>pimutils</h1>
<li><a href="/">Home</a></li>
<li><a href="/thanks/">Thanks</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/blog/">Blog</a></li>
<!-- <li><a href="/blog/">Blog</a></li> -->
<li><a href="/coc/">Code of Conduct</a></li>
</ul>
</nav>
Expand Down
17 changes: 17 additions & 0 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
{{ define "main" }}
<h1>Utilities for personal information management</h1>
{{ .Content }}

<h1>News</h1>

<section class="article-list">
{{ range (where .Site.RegularPages "Section" "blog") }}
<div class="blog-post">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<div class="post-details">
Written by {{ .Params.Author }} on
<time datetime="{{.Date.Format "2006-01-02"}}">
{{ .Date.Format "2006-01-02" }}
</time>
</div>
</div>
{{ end }}
</section>

{{ end }}
Loading