Skip to content

Commit 44ba833

Browse files
update
1 parent dc7ef2f commit 44ba833

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ description = "TINE IS NOT EMULATOR, it is just a tiny wow server for v3.3.5a (c
77
readme = "README.md"
88
keywords = ["idewave", "wow-server"]
99
license-file = "LICENSE"
10+
repository = "https://github.com/idewave/tine"
1011

1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,19 @@
33
**TINE** IS NOT EMULATOR, it is just a tiny WoW server (currently for version 3.3.5a only),
44
implemented for testing. It contains only basic functionality, which probably will be extended in the future.
55

6-
## How to start
6+
The main objectives of the project are: it can be used for testing the sending and receiving of packets;
7+
it can replay packets received from external sources (e.g., it allows connecting a regular WoW client to tine,
8+
which is linked to tentacli, and observing the packets in real-time, effectively
9+
letting you see the world as tentacli does in the area it is spawned).
10+
11+
### How to start
12+
713
Compile using `cargo build` or run directly using `cargo run`.
814

9-
## How to support us
10-
Create PR and welcome to our Discord: https://discord.gg/wcqXekEvE6 !
15+
### You want to contribute
16+
17+
It's always welcome. Just create pull request with your improvements, bugfix etc.
18+
19+
### If you want to support...
20+
21+
...you can buy me a [ko-fi](https://ko-fi.com/idewave)

src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//! TINE IS NOT EMULATOR, it is just a tiny WoW server (currently for version 3.3.5a only),
2+
//! implemented for testing. It contains only basic functionality, which probably will be extended in the future.
3+
//!
4+
//! The main objectives of the project are: it can be used for testing the sending and receiving of packets;
5+
//! it can replay packets received from external sources (e.g., it allows connecting a regular WoW client to tine,
6+
//! which is linked to tentacli, and observing the packets in real-time,
7+
//! effectively letting you see the world as tentacli does in the area it is spawned).
8+
19
use std::sync::Arc;
210

311
use anyhow::Result as AnyResult;

0 commit comments

Comments
 (0)