Skip to content
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

JSON Storage Migration #67

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Binary file added .github/ico2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions .github/icon.xc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ▀▄▀ █ █▀▀ █▀█
# █░█ █ █▄▄ █▄█
# ▁▁▁▁▁▁▁▁v0.7▁
#
#
# ░░ USAGE ░░░░░░░░░░░░░░░░░░░░░░
#
# run this template
#
# xico -t .github/icon.xc
#
# ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

set d 0
set o 1
set r 40
set ff monospace
set fw bold
set fs 7.2em
set w 94
set h 94
set r_x 3
set r_y 3
set fg #FF3366
set bg #330044
set stroke #330044
set border 6

put 􀕨 .github/icon.png
put 􀕨 .github/icon.svg

# 􀝜 􀕨 􀕩 􀢚 􀕫
#
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 15 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
[package]
name = "voidmap"
version = "1.1.5"
authors = ["Tyler Neely <[email protected]>", "Katharina Fey <[email protected]>"]
description = "terminal mind-map + task tracker + tsdb"
version = "1.2.3"
authors = ["Tyler Neely <[email protected]>", "Katharina Fey <[email protected]>", "metaory <[email protected]>"]
description = "terminal mind-map + task tracker + tsdb with human-readable JSON storage"
license = "GPL-3.0"
homepage = "https://github.com/void-rs/void"
keywords = ["cli", "commandline", "visualization", "ui"]
homepage = "https://github.com/metaory/void-json"
keywords = ["cli", "commandline", "visualization", "ui", "json"]
edition = "2018"

[[test]]
[[bin]]
name = "void"
path = "src/bin/void/main.rs"

[[test]]
name = "test"
path = "test/test.rs"

Expand All @@ -24,13 +27,18 @@ log = "0.4.11"
lazy_static = "1.4.0"
time = "0.2.22"
getopts = "0.2.21"
protobuf = "1"
rand = "0.7.3"
libc = "0.2.80"
regex = "1.4.2"
unicode-segmentation = "1.6.0"
clippy = { version = "0.0.302", optional = true }
fs2 = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

[dev-dependencies]
quickcheck = "0.9.2"

[profile.release]
lto=true
codegen-units=1
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble

The GNU General Public License is a free, copyleft license for
software and other kinds of works.

The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.

[... Full GPL-3.0 text ...]
Loading