Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚀Preview Release (v1.0.0-preview.3) #25

Merged
merged 7 commits into from
Jul 18, 2024
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
4 changes: 2 additions & 2 deletions KdGui/KdGui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<RootNamespace>KdGui</RootNamespace>

<!--Update this for production and preview releases-->
<Version>1.0.0-preview.2</Version>
<Version>1.0.0-preview.3</Version>

<!--Update this for production and preview releases-->
<FileVersion>1.0.0-preview.2</FileVersion>
<FileVersion>1.0.0-preview.3</FileVersion>

<!--
DO NOT UPDATE THIS FOR PREVIEW RELEASES!!
Expand Down
2 changes: 1 addition & 1 deletion KdGui/UpDown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public UpDown(IImGuiInvoker imGuiInvoker, IPushReactable renderReactable)
public string Text
{
get => this.text;
set => this.text = value.EndsWith(':') ? value : $"{value}:";
set => this.text = value;
}

/// <inheritdoc/>
Expand Down
29 changes: 29 additions & 0 deletions ReleaseNotes/PreviewReleases/Release-Notes-v1.0.0-preview.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<h1 align="center" style="color: mediumseagreen;font-weight: bold;">
KdGui Preview Release Notes - v1.0.0-preview.3
</h1>

<h2 align="center" style="font-weight: bold;">Quick Reminder</h2>

<div align="center">

As with all software, there is always a chance for issues and bugs, especially for preview releases, so your input is greatly appreciated. 🙏🏼
</div>

<h2 align="center" style="font-weight: bold;">Enhancements 💎</h2>

1. [#21](https://github.com/KinsonDigital/KdGui/issues/21) - Improved the positioning and sizing of `ControlGroup` controls.
2. [#17](https://github.com/KinsonDigital/KdGui/issues/17) - Enhanced the `CheckBox.IsChecked` property by adding a property setter to allow users to programmatically set the check box state.
3. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from text for controls to give users more control.

<h2 align="center" style="font-weight: bold;">Breaking Changes 🧨</h2>

1. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from the default `Label` property value for the `ComboBox` control.
2. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Changed the `ComboBox` label from being automatically prefixed with a colon.
3. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from the default `Text` property value for the `ComboBox` control.
4. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Changed the `UpDown` text from being automatically prefixed with a colon.

<h2 align="center" style="font-weight: bold;">Dependency Updates 📦</h2>

1. [#18](https://github.com/KinsonDigital/KdGui/pull/18) - Updated dependency _**xunit**_ to _**v2.9.0**_
2. [#18](https://github.com/KinsonDigital/KdGui/pull/18) - Updated dependency _**xunit.runner.visualstudio**_ to _**v2.9.0**_
3. [#19](https://github.com/KinsonDigital/KdGui/pull/19) - Updated dependency _**FluentAssertions.Analyzers**_ to _**v0.33.0**_
2 changes: 1 addition & 1 deletion dev-tools/bin/kd-admin
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
# generated by deno install
deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.3/src/main.ts" "$@"
deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.4/src/main.ts" "$@"
2 changes: 1 addition & 1 deletion dev-tools/bin/kd-admin.cmd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
% generated by deno install %
@deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.3/src/main.ts" %*
@deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.4/src/main.ts" %*
3 changes: 2 additions & 1 deletion dev-tools/prev-gen-release-notes-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"Upgrade": "Upgraded",
"Create": "Created",
"Refactor": "Refactored",
"Removed": "Removed",
"Remove": "Removed",
"Enhance": "Enhanced",
"Implement": "Implemented",
"Move": "Moved",
"Change": "Changed",
Expand Down
3 changes: 2 additions & 1 deletion dev-tools/prod-gen-release-notes-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"Upgrade": "Upgraded",
"Create": "Created",
"Refactor": "Refactored",
"Removed": "Removed",
"Remove": "Removed",
"Enhance": "Enhanced",
"Implement": "Implemented",
"Move": "Moved",
"Change": "Changed",
Expand Down
Loading