diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit f10cf54366db4e1551b03a01aa5619b29226ceb1
parent 01167201845aad62bd3efe45e8559e65a03908bb
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sun, 12 Dec 2021 09:17:34 +0100

change link to repo

Diffstat:
MAUTHORS.md | 5+++--
MREADME.md | 3+--
Mman1/diary.1 | 5+++--
Mman1/diary.1.html | 5++---
Msrc/diary.c | 2+-
5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/AUTHORS.md b/AUTHORS.md @@ -1,10 +1,10 @@ # Authors -- Andreas Gruhler (https://github.com/in0rdr) +- Andreas Gruhler (https://codeberg.org/in0rdr/diary) - Matthias Beyer (https://github.com/matthiasbeyer) - Johnathan Jenkins (https://github.com/shaggytwodope) - Yu-Jie Lin (https://github.com/livibetter) - Balduin Dettling (https://github.com/mbjd) - Avindra Goolcharan (https://github.com/avindra) - Oliver Blanthorn (https://github.com/bovine3dom) -- Jonny Burger (https://github.com/JonnyBurger) +- Jonny Burger (https://github.com/JonnyBurger) +\ No newline at end of file diff --git a/README.md b/README.md @@ -72,7 +72,6 @@ Server = https://downloadcontent.opensuse.org/repositories/home:/in0rdr/Arch/$ar ``` ## Build from Source -[![Build Status](https://github.com/in0rdr/diary/actions/workflows/c.yml/badge.svg)](https://github.com/in0rdr/diary/actions/workflows/c.yml) 1. Define [OAuth2 application credentials](https://developers.google.com/identity/protocols/oauth2) if CalDAV sync should be effective: ``` @@ -190,7 +189,7 @@ The export functionality is not implemented yet, see [issues/78](https://github. ## CalDAV Sync (alpha) > ⚠️ Alpha feature: Available only in `diary-nightly` (see [Installation Instructions](#Install)). Don't use this with "production" data. -The journal files can be synced via CalDAV by pressing `s`. Currently, only the Google Calendar is supported as remote provider. Please open an [issue](https://github.com/in0rdr/diary/issues) to implement support for additional remote calendar servers. +The journal files can be synced via CalDAV by pressing `s`. Currently, only the Google Calendar is supported as remote provider. Please open an [issue](https://codeberg.org/in0rdr/diary/issues) to implement support for additional remote calendar servers. The calender for synchronization can be defined with the [configuration](#Configuration-File) key `google_calendar`: diff --git a/man1/diary.1 b/man1/diary.1 @@ -219,5 +219,5 @@ diary .fi .SH DEVELOPMENT -All source code is available in this github repository: -<https://github.com/in0rdr/diary>. Contributions are always welcome! +All source code is available at <https://codeberg.org/in0rdr/diary>. +Contributions are always welcome! +\ No newline at end of file diff --git a/man1/diary.1.html b/man1/diary.1.html @@ -335,9 +335,8 @@ diary </pre> <div class="Pp"></div> <h1 class="Sh" title="Sh" id="DEVELOPMENT"><a class="permalink" href="#DEVELOPMENT">DEVELOPMENT</a></h1> -All source code is available in this github repository: - &lt;https://github.com/in0rdr/diary&gt;. Contributions are always - welcome!</div> +All source code is available at &lt;https://codeberg.org/in0rdr/diary&gt;. + Contributions are always welcome!</div> <table class="foot"> <tr> <td class="foot-date"></td> diff --git a/src/diary.c b/src/diary.c @@ -388,7 +388,7 @@ void usage() { printf(" -w, --weekday DAY : First day of the week, 0 = Sun, 1 = Mon, ..., 6 = Sat\n"); printf("\n"); printf("Full docs and keyboard shortcuts: 'man diary'\n"); - printf("or online via: <https://github.com/in0rdr/diary>\n"); + printf("or online at <https://codeberg.org/in0rdr/diary>\n"); } int main(int argc, char** argv) {