File tree Expand file tree Collapse file tree 4 files changed +40
-8
lines changed Expand file tree Collapse file tree 4 files changed +40
-8
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ### Added
11
+
12
+
13
+
14
+ ### Changed
15
+
16
+
17
+ ### Removed
18
+
19
+
20
+ ## [ 0.1.0] - 2025-01-11
21
+
22
+ ### Added
23
+
24
+ - initial release of sechat-rs
25
+
26
+
27
+ [ unreleased ] : https://github.com/olivierlacan/keep-a-changelog/compare/v0.1.0...HEAD
28
+ [ 0.1.0 ] : https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.1.0
Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ name = "sechat-rs"
3
3
description = " A TUI based chat client for Nextcloud Talk"
4
4
readme = " README.md"
5
5
license-file = " LICENSE"
6
- version = " 0.1.0-beta "
6
+ version = " 0.1.0"
7
7
edition = " 2018"
8
8
categories = [" command-line-utilities" ]
9
9
keywords = [" tui" , " nextcloud" , " nextcloud-talk" ]
10
10
authors = [" tofu <sechat@tofuli.de>" ]
11
- documentation = " https://github.com/tofubert/ sechat-rs"
11
+ documentation = " https://docs.rs/sechat-rs/latest/ sechat-rs/ "
12
12
repository = " https://github.com/tofubert/sechat-rs"
13
- homepage = " https://github.com/tofubert /sechat-rs"
13
+ homepage = " https://crates.io/crates /sechat-rs"
14
14
exclude = [
15
15
" assets/*" ,
16
16
" .github" ,
@@ -20,7 +20,7 @@ exclude = [
20
20
" tags" ,
21
21
]
22
22
[[bin ]]
23
- name = " sechat"
23
+ name = " sechat-rs "
24
24
path = " src/main.rs"
25
25
26
26
@@ -45,8 +45,8 @@ crossterm = "*"
45
45
tui-tree-widget = " 0.23"
46
46
futures = " 0.3.31"
47
47
chrono = " 0.4.39"
48
- num-traits = " * "
49
- num-derive = " * "
48
+ num-traits = " 0.2.19 "
49
+ num-derive = " 0.4.2 "
50
50
log = " 0.4.22"
51
51
notify-rust = " 4.11"
52
52
itertools = " 0.14.0"
Original file line number Diff line number Diff line change 8
8
[ ![ Dependency status] ( https://deps.rs/repo/github/tofubert/sechat-rs/status.svg )] ( https://deps.rs/repo/github/tofubert/sechat-rs )
9
9
10
10
11
+
12
+ > [ !WARNING]
13
+ > This Software is not a fully stable client. You should not rely on this client for important chats!
14
+
11
15
## Setup
12
16
13
- * run "cargo r" or "sechat" and enjoy
17
+ * run "cargo r" or "sechat-rs " and enjoy
14
18
* If no config is found a default config will be created, which you can fill in.
15
19
* a "-c" Option for console exists, if none is proveded it will default to XDG default paths.
16
20
* Logs will be written to "dev.log". This is so we dont write log output into the terminal UI.
Original file line number Diff line number Diff line change 86
86
//! [Codecov]: https://app.codecov.io/gh/tofubert/sechat-rs
87
87
//! [Deps.rs Badge]: https://deps.rs/repo/github/tofubert/sechat-rs/status.svg?style=flat-square
88
88
//! [Deps.rs]: https://deps.rs/repo/github/tofubert/sechat-rs
89
- //! [Docs Badge]: https://img.shields.io/docsrs/ratatui ?logo=rust&style=flat-square&logoColor=E05D44
89
+ //! [Docs Badge]: https://img.shields.io/docsrs/sechat-rs ?logo=rust&style=flat-square&logoColor=E05D44
90
90
91
91
mod backend;
92
92
/// Config and Theme Module
You can’t perform that action at this time.
0 commit comments