Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
progre committed Oct 4, 2023
1 parent 1b2b7ef commit b8c0de8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-members = ["junowen"]
resolver = "2"

[workspace.package]
version = "0.1.1"
version = "0.2.0"
authors = ["Progre"]
license = "GPL-3.0"

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ adonis や th075caster と同じような仕組みで動作します。
2. `<answer>********</answer>` という長い文字列が表示され、自動的にクリップボードに保存されるので、
この文字列を Discord 等を使って対戦相手に送信してください。
3. うまくいけば相手の入力の後、対戦が開始されます。

4 ホストはゲーム中にもテンキーの0-9でディレイを変更できます。

### 補足

Expand All @@ -43,10 +43,10 @@ adonis や th075caster と同じような仕組みで動作します。

## 現在の制約

- カーソルは同期するようにしましたが、対戦中はまだ公式と同程度にずれます。
- ずれたらゲームがフレーズすることがあります。
- ディレイを途中で変更することはできません。
- **対戦中にポーズをかけることはできません。**
- **ゲームパッドを接続せずに Keyboard Full を使用していると、**
**ローカル対戦と同様に自動的に Keyboard Left か Keyboard Right に変更されます。**
- **ゲストからはセッションを終了することができません。**
- 難易度選択はホストのみ行えます。
- 対戦相手の名前は表示されません。
- 対戦中にポーズをかけることはできません。
- ローカル環境でのテストはしていますが、ネット越しのテストはこれからします。
- ずれたらゲームがフレーズすることがあります。
2 changes: 1 addition & 1 deletion junowen-lib/src/connection/peer_connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub struct PeerConnection {
unsafe impl Send for PeerConnection {}
unsafe impl Sync for PeerConnection {}

const PROTOCOL: &str = "JUNOWEN/0.0";
const PROTOCOL: &str = "JUNOWEN/0.2";

impl PeerConnection {
pub async fn new() -> Result<Self> {
Expand Down

0 comments on commit b8c0de8

Please sign in to comment.