diff --git a/Cargo.lock b/Cargo.lock
index d81184b..e066429 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1132,53 +1132,6 @@ dependencies = [
"syn 1.0.109",
]
-[[package]]
-name = "cosmic-tasks"
-version = "0.1.0"
-dependencies = [
- "chrono",
- "cli-clipboard",
- "cosmic-tasks-core",
- "dirs",
- "emojis",
- "env_logger",
- "fork",
- "i18n-embed",
- "i18n-embed-fl",
- "libcosmic",
- "log",
- "once_cell",
- "open",
- "paste",
- "rust-embed",
- "serde",
- "slotmap",
- "smol_str",
- "tokio",
- "tracing",
- "vergen",
-]
-
-[[package]]
-name = "cosmic-tasks-core"
-version = "0.1.0"
-dependencies = [
- "anyhow",
- "async-trait",
- "chrono",
- "derive-getters",
- "derive_setters",
- "dirs",
- "emojis",
- "libset",
- "ron",
- "serde",
- "serde_json",
- "sqlx",
- "tracing",
- "uuid",
-]
-
[[package]]
name = "cosmic-text"
version = "0.11.2"
@@ -3731,6 +3684,53 @@ dependencies = [
"pin-project-lite",
]
+[[package]]
+name = "orderly"
+version = "0.1.0"
+dependencies = [
+ "chrono",
+ "cli-clipboard",
+ "dirs",
+ "emojis",
+ "env_logger",
+ "fork",
+ "i18n-embed",
+ "i18n-embed-fl",
+ "libcosmic",
+ "log",
+ "once_cell",
+ "open",
+ "orderly-core",
+ "paste",
+ "rust-embed",
+ "serde",
+ "slotmap",
+ "smol_str",
+ "tokio",
+ "tracing",
+ "vergen",
+]
+
+[[package]]
+name = "orderly-core"
+version = "0.1.0"
+dependencies = [
+ "anyhow",
+ "async-trait",
+ "chrono",
+ "derive-getters",
+ "derive_setters",
+ "dirs",
+ "emojis",
+ "libset",
+ "ron",
+ "serde",
+ "serde_json",
+ "sqlx",
+ "tracing",
+ "uuid",
+]
+
[[package]]
name = "os_pipe"
version = "1.1.5"
diff --git a/Cargo.toml b/Cargo.toml
index 5eceb76..ad55add 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "cosmic-tasks"
+name = "orderly"
version = "0.1.0"
edition = "2021"
@@ -19,7 +19,7 @@ open = "5.0.2"
dirs = "5.0.1"
chrono = "0.4.35"
tokio = "1"
-cosmic-tasks-core = { path = "src/core" }
+orderly-core = { path = "src/core" }
tracing = "0.1.40"
cli-clipboard = "0.4.0"
slotmap = "1.0.7"
diff --git a/README.md b/README.md
index 18c746d..d41991b 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,25 @@
-
-
COSMIC Tasks
-
+
+
Orderly
+
A simple task management application for the COSMIC desktop.
- ![window-light.png](https://raw.githubusercontent.com/edfloreshz/cosmic-tasks/main/res/screenshots/window-light.png#gh-light-mode-only)
- ![window-dark.png](https://raw.githubusercontent.com/edfloreshz/cosmic-tasks/main/res/screenshots/window-dark.png#gh-dark-mode-only)
+ ![window-light.png](https://raw.githubusercontent.com/edfloreshz/orderly/main/res/screenshots/window-light.png#gh-light-mode-only)
+ ![window-dark.png](https://raw.githubusercontent.com/edfloreshz/orderly/main/res/screenshots/window-dark.png#gh-dark-mode-only)
# Installation
```
-git clone https://github.com/edfloreshz/cosmic-tasks.git
-cd cosmic-tasks
+git clone https://github.com/edfloreshz/orderly.git
+cd orderly
sudo just install
```
# Build
```
-git clone https://github.com/edfloreshz/cosmic-tasks.git
-cd cosmic-tasks
+git clone https://github.com/edfloreshz/orderly.git
+cd orderly
cargo build
```
@@ -41,4 +41,4 @@ sudo apt install sqlite-devel
Copyright 2024 © Eduardo Flores
-Done is released under the terms of the [GPL-3.0](https://github.com/edfloreshz/cosmic-tasks/blob/main/LICENSE)
+Done is released under the terms of the [GPL-3.0](https://github.com/edfloreshz/orderly/blob/main/LICENSE)
diff --git a/com.system76.CosmicTasks.json b/com.system76.CosmicTasks.json
index a1d5ae6..9f96207 100644
--- a/com.system76.CosmicTasks.json
+++ b/com.system76.CosmicTasks.json
@@ -1,12 +1,10 @@
{
- "id": "com.system76.CosmicTasks",
+ "id": "dev.edfloreshz.Orderly",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"sdk": "org.freedesktop.Sdk",
- "sdk-extensions": [
- "org.freedesktop.Sdk.Extension.rust-stable"
- ],
- "command": "cosmic-tasks",
+ "sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
+ "command": "orderly",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
@@ -15,20 +13,16 @@
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin",
- "build-args": [
- "--share=network"
- ],
+ "build-args": ["--share=network"],
"env": {
- "CARGO_HOME": "/run/build/cosmic-tasks/cargo"
+ "CARGO_HOME": "/run/build/orderly/cargo"
}
},
"modules": [
{
"name": "just",
"buildsystem": "simple",
- "build-commands": [
- "install -Dm0755 just /app/bin/just"
- ],
+ "build-commands": ["install -Dm0755 just /app/bin/just"],
"sources": [
{
"type": "archive",
@@ -36,9 +30,7 @@
"dest-filename": "just.tar.gz",
"url": "https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-x86_64-unknown-linux-musl.tar.gz",
"sha256": "ad56bf1a804243b51ef2c2eec4b3a8177f970ccc414cbbee219c2e5c06f7bcc9",
- "only_arches": [
- "x86_64"
- ]
+ "only_arches": ["x86_64"]
},
{
"type": "archive",
@@ -46,27 +38,21 @@
"dest-filename": "just.tar.gz",
"url": "https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-aarch64-unknown-linux-musl.tar.gz",
"sha256": "049d624255d150f18b0f3a1257a163366b0dc22e16526214773903125145e515",
- "only_arches": [
- "aarch64"
- ]
+ "only_arches": ["aarch64"]
}
]
},
{
- "name": "cosmic-tasks",
+ "name": "orderly",
"buildsystem": "simple",
- "build-commands": [
- "just vendor",
- "just build-vendored",
- "just flatpak"
- ],
+ "build-commands": ["just vendor", "just build-vendored", "just flatpak"],
"sources": [
{
"type": "git",
"branch": "main",
- "url": "https://github.com/edfloreshz/cosmic-tasks.git"
+ "url": "https://github.com/edfloreshz/orderly.git"
}
]
}
]
-}
\ No newline at end of file
+}
diff --git a/com.system76.CosmicTasks.yml b/com.system76.CosmicTasks.yml
index a18da1f..3a37197 100644
--- a/com.system76.CosmicTasks.yml
+++ b/com.system76.CosmicTasks.yml
@@ -1,10 +1,10 @@
-id: com.system76.CosmicTasks
+id: dev.edfloreshz.Orderly
runtime: org.freedesktop.Platform
-runtime-version: '23.08'
+runtime-version: "23.08"
sdk: org.freedesktop.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.rust-stable
-command: cosmic-tasks
+command: orderly
finish-args:
- "--share=ipc"
- "--socket=fallback-x11"
@@ -15,7 +15,7 @@ build-options:
build-args:
- "--share=network"
env:
- CARGO_HOME: "/run/build/cosmic-tasks/cargo"
+ CARGO_HOME: "/run/build/orderly/cargo"
modules:
- name: just
buildsystem: simple
@@ -36,7 +36,7 @@ modules:
sha256: 049d624255d150f18b0f3a1257a163366b0dc22e16526214773903125145e515
only_arches:
- aarch64
- - name: cosmic-tasks
+ - name: orderly
buildsystem: simple
build-commands:
- just vendor
@@ -45,4 +45,4 @@ modules:
sources:
- type: git
branch: main
- url: https://github.com/edfloreshz/cosmic-tasks.git
\ No newline at end of file
+ url: https://github.com/edfloreshz/orderly.git
diff --git a/docs/index.html b/docs/index.html
index 07cb020..60aa8a4 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1,84 +1,125 @@
-
+
-
-
- COSMIC Tasks
-
-
-
-
-
-