Added changelog and improved readme

Este commit está contenido en:
Starbeamrainbowlabs 2016-05-08 11:50:13 +01:00
padre 6c1cbbbc0d
commit 2555566dd5
Se han modificado 4 ficheros con 44 adiciones y 2 borrados

4
Changelog.md Archivo normal
Ver fichero

@ -0,0 +1,4 @@
# Changelog
# v0.1
The initial release.

Ver fichero

@ -1,3 +1,28 @@
# cscz
The one and only C♯ Class Generator.
The only and only C♯ Class Generator.
To use, build the project (F8 in Monodevelop, CTRL + SHIFT + B in Visual Studio) and then pipe your compressed class definition file into it. Example definitions:
```csharp
# Shop
u c
decimal balance
float lat
float long
List<TimeSpan> openingHours
```
```csharp
# Model3D
u OpenTK
u OpenTK.Graphics
ModelUtility model
ShaderUtility shaderProgram
Matrix4 transformation
Vector3 position
```
See the [Changelog](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/Changelog.md) for a summary of what's changed between releases.

Ver fichero

@ -3,6 +3,14 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cscz", "cscz\cscz.csproj", "{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1BBC87F8-DBD7-4ACE-8D8B-E4D719426A24}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
LICENSE = LICENSE
README.md = README.md
Changelog.md = Changelog.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
@ -14,4 +22,9 @@ Global
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.ActiveCfg = Release|x86
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
description = The C# Class Generator.
EndGlobalSection
EndGlobal

Ver fichero

@ -8,6 +8,7 @@
<RootNamespace>cscz</RootNamespace>
<AssemblyName>cscz</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<Description>The C# Class Generator.</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
@ -26,7 +27,6 @@
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>