Skip to content
Draft
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
41 changes: 40 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,42 @@

## [未リリース]

## [1.1.3] - 2026-01-13

### 追加

- **Windows対応**
- Windows向けビルドをリリースワークフローに追加
- MSI・NSISインストーラーのサポート

## [1.1.2] - 2025-12-29

### 修正

- miseでrust-toolchain.tomlを認識させてCI環境を修正
- macOS Intel ランナーを macos-15-large に更新

## [1.1.1] - 2025-12-20

### 追加

- **ネイティブメニューの多言語対応と機能整備**

### 変更

- CI/CD環境の改善とコード品質修正
- miseタスクベースのCI/CDワークフローを整備
- プロジェクト構成を整理し、mise統一
- App.tsx を分割してモジュール化
- utils/index.ts とeslint設定を整理
- コードベースを整理し重複を削除

### 修正

- ポリゴン描画のtensionとポイント間引きを削除して形状の正確性を確保
- カテゴリ色生成をHEX形式に変更してカラーピッカーとの互換性を確保
- アノテーション描画の不具合を修正

## [1.1.0] - 2025-06-20

### 追加
Expand Down Expand Up @@ -107,6 +143,9 @@
- Zustandによる状態管理
- クロスプラットフォーム対応(Windows、macOS、Linux)

[未リリース]: https://github.com/tact-software/coav/compare/v1.1.0...HEAD
[未リリース]: https://github.com/tact-software/coav/compare/v1.1.3...HEAD
[1.1.3]: https://github.com/tact-software/coav/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/tact-software/coav/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/tact-software/coav/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/tact-software/coav/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/tact-software/coav/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "coav",
"private": true,
"version": "1.1.0",
"version": "1.1.3",
"description": "COCO Annotation Viewer - A modern desktop application for viewing and analyzing COCO dataset annotations",
"license": "MIT",
"author": "COAV Contributors",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coav"
version = "1.1.0"
version = "1.1.3"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "coav",
"version": "1.1.0",
"version": "1.1.3",
"identifier": "com.coav.app",
"build": {
"beforeDevCommand": "bun vite",
Expand Down