From 4e78c664e69c2f2cb27a0362b21b74dcbf189170 Mon Sep 17 00:00:00 2001 From: Joshua Strobl Date: Sat, 5 Oct 2024 00:15:51 +0300 Subject: [PATCH] chore: add more to gitignore, add radicle to README --- .gitignore | 5 +++++ README.md | 6 ++++++ Taskfile.yml | 28 ++++++++++++++-------------- 3 files changed, 25 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index c79f2da..983430f 100644 --- a/.gitignore +++ b/.gitignore @@ -72,9 +72,13 @@ CMakeLists.txt.user* *.dll *.exe +.cache/ .ccls-cache/ +.idea/ +.kdev4/ .qt/ .rcc/ +.zed/ bin/ build*/ cmake-build-debug/ @@ -83,3 +87,4 @@ cmake-build-debug/ **/qmltypes **/*.qrc CMakeCache.txt +*.kdev4 diff --git a/README.md b/README.md index 2c4e71e..2bd8c81 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ Work in progress implementation of Koto in Qt6, Kirigami, and C++. +To clone this repository on [Radicle](https://radicle.xyz), simple run: + +``` +rad clone rad://z2RuqdobvbGje3mWhtMQ9cUVNfizp +``` + ## LICENSE Licensed under the Mozilla Public License 2.0 (MPL-2.0). diff --git a/Taskfile.yml b/Taskfile.yml index 0d395e1..674989e 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,17 +1,17 @@ version: "3" tasks: - sdbus-gen-desktop: - cmds: - - sdbus-c++-xml2cpp desktop/dbus/schema.xml --adaptor=desktop/dbus/daemon-server.h --proxy=desktop/dbus/daemon-client.h - setup-desktop: - desc: "Run cmake configuration for desktop Koto" - cmds: - - cmake -S . -B build - build: cmake --build build --verbose - build-watch-desktop: watchman-make -p '**/*.cpp' '**/*.h' --run "task cook-desktop" - cook-desktop: - cmds: - - task setup-desktop - - task build - install: sudo make install -C build + sdbus-gen-desktop: + cmds: + - sdbus-c++-xml2cpp desktop/dbus/schema.xml --adaptor=desktop/dbus/daemon-server.h --proxy=desktop/dbus/daemon-client.h + setup-desktop: + desc: "Run cmake configuration for desktop Koto" + cmds: + - cmake -S . -B build + build: cmake --build build + build-watch-desktop: watchman-make -p '**/*.cpp' '**/*.h' --run "task cook-desktop" + cook-desktop: + cmds: + - task setup-desktop + - task build + install: sudo make install -C build