sl-rust 1.0.6

SL - An ASCII art train animation
Documentation
# 列車の縦方向中央配置 - 実装完了


## 変更内容


**ユーザーの指摘**: 「列車が縦方向における中央におらず、地面に接しています。縦方向における中央に移動させてください」

### 修正箇所


**File**: `src/render.rs`

**関数**: `build_d51()`, `build_c51()`, `build_logo()`

**修正前**:
```rust
let y_base = if config.flying {
    ((terminal.height() as i32 - 10) / 2) - (x / 4)
} else {
    terminal.height() as i32 - 10  // ← 下部に配置
};
```

**修正後**:
```rust
let train_height = 10i32;
let y_center = (terminal.height() as i32 - train_height) / 2;
let y_base = if config.flying {
    y_center - (x / 4)
} else {
    y_center  // ← 中央に配置
};
```

## テスト結果


✓ D51 locomotive - 中央に配置
✓ C51 locomotive - 中央に配置
✓ Logo/SL - 中央に配置
✓ Accident mode - 中央に配置
✓ Flying mode - 中央から放物線で移動

**全モード**: 縦方向中央に配置、正常動作

## ビルド


- **Binary**: `F:\sl-rust\target\release\sl.exe` (220,672 bytes)
- **Build**: Success
- **Quality**: ✓ Clean

## 最終状態


✓ Flickering: なし
✓ 列車位置: 縦方向中央
✓ すべてのモード: 正常動作
✓ 本番利用可