version both programs at 2.0.0 (wire protocol v2)

Versioning scheme: MAJOR.MINOR.PATCH where MAJOR matches the wire
protocol version (no cross-major compat), MINOR is the main change
indicator, PATCH generally unused.

- gatunad: Cargo.toml version 2.0.0 (clap --version picks it up)
- gatuna: csproj Version 2.0.0, shown in form title + tray tooltip
- app.manifest: assemblyIdentity version 2.0.0.0
- Frame version rejection already in place (both sides reject != 2)
- README: document versioning scheme
This commit is contained in:
2026-08-13 09:18:34 +00:00
parent 7fa50dd4e4
commit ef3735764a
6 changed files with 26 additions and 4 deletions
+3 -1
View File
@@ -9,10 +9,12 @@ static class Program
var form = new MainForm();
var ver = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version!;
using var tray = new NotifyIcon
{
Icon = SystemIcons.GetStockIcon(StockIconId.NetworkConnect, 32),
Text = "gatuna",
Text = $"gatuna {ver.Major}.{ver.Minor}",
Visible = true,
};