Skip to content
Merged
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
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes are documented here. This project follows Semantic
Versioning starting with 1.0 and uses prerelease versions when conformance is
incomplete.

## Unreleased
## 1.0.2 - Unreleased

- Expanded NuGet metadata and search terms for Distributed Interactive
Simulation, IEEE 1278.1, DIS v7, SISO, PDU parsing, and binary serialization.
- Added a package icon, explicit project/repository links, release-notes link,
and clearer package title and description.
- Added a coordinated GitHub social preview and expanded repository discovery
topics.

## 1.0.1 - 2026-07-13

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
[![NuGet](https://img.shields.io/nuget/v/OpenDisNet.svg)](https://www.nuget.org/packages/OpenDisNet)
[![GitHub Release](https://img.shields.io/github/v/release/RejectKid/OpenDisNet)](https://github.com/RejectKid/OpenDisNet/releases/latest)

OpenDisNet is a high-performance, type-safe .NET codec for Distributed
Interactive Simulation (DIS) Protocol Version 7, defined by IEEE 1278.1-2012.
OpenDisNet is a high-performance, type-safe, native C#/.NET parser and
serializer for IEEE 1278.1-2012 Distributed Interactive Simulation (DIS)
Protocol Version 7. It provides binary codecs for all 72 standardized PDU types.

> **Development status:** Stable 1.x release. All 72 DIS v7 PDU identifiers have
> typed native C# codecs, every family has populated, independent, malformed,
Expand Down
Binary file added assets/opendisnet-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/opendisnet-social-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 9 additions & 3 deletions src/OpenDisNet/OpenDisNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
<AssemblyName>OpenDisNet</AssemblyName>
<RootNamespace>OpenDisNet</RootNamespace>
<PackageId>OpenDisNet</PackageId>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Authors>RejectKid</Authors>
<Description>High-performance, type-safe DIS Protocol Version 7 binary codec for .NET.</Description>
<PackageTags>DIS;IEEE-1278;simulation;PDU;protocol</PackageTags>
<Title>OpenDisNet — Distributed Interactive Simulation (DIS v7) for .NET</Title>
<Description>Native C#/.NET binary parser and serializer for IEEE 1278.1 Distributed Interactive Simulation (DIS) version 7, covering all 72 PDU types.</Description>
<PackageTags>DIS;DIS7;DIS-v7;Distributed-Interactive-Simulation;IEEE1278;IEEE1278.1;SISO;SISO-REF-010;PDU;CSharp;dotnet;simulation;interoperability;modeling-and-simulation;binary-serialization;network-protocol;parser;serializer;codec</PackageTags>
<PackageProjectUrl>https://github.com/RejectKid/OpenDisNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/RejectKid/OpenDisNet.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/RejectKid/OpenDisNet/releases/tag/v$(PackageVersion)</PackageReleaseNotes>
<PackageIcon>opendisnet-icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
Expand All @@ -26,5 +31,6 @@
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\assets\opendisnet-icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Loading