Skip to content

Commit 6ad9995

Browse files
authored
Merge pull request #11 from Kvikku/copilot/create-official-release
fix: resolve all blockers for first official v1.0.0 release
2 parents 54c29e6 + 1f67138 commit 6ad9995

7 files changed

Lines changed: 33 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
if: startsWith(github.ref, 'refs/tags/v')
7373
uses: softprops/action-gh-release@v2
7474
with:
75+
name: Windows Security Manager ${{ github.ref_name }}
7576
files: |
7677
./publish/cli/WindowsSecurityManager.exe
7778
./publish/WindowsSecurityManager-GUI-win-x64.zip

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Kvikku
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build and Release](https://github.com/Kvikku/Windows-Security-Manager/actions/workflows/release.yml/badge.svg)](https://github.com/Kvikku/Windows-Security-Manager/actions/workflows/release.yml)
77
![.NET](https://img.shields.io/badge/.NET-8.0-512BD4?logo=dotnet&logoColor=white)
88
![Platform](https://img.shields.io/badge/platform-Windows-0078D4?logo=windows&logoColor=white)
9-
![Usage](https://img.shields.io/badge/usage-no__public__license-red)
9+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
1010
![Settings](https://img.shields.io/badge/security_settings-98-green)
1111

1212
**A powerful CLI and GUI tool for managing Windows security hardening settings.**\
@@ -332,4 +332,4 @@ Both workflows use **NuGet package caching** (`actions/cache`) to speed up depen
332332

333333
## 📄 License
334334

335-
This project is provided as-is for security hardening purposes. No public license is included — see the repository for usage terms.
335+
This project is licensed under the [MIT License](LICENSE).

src/WindowsSecurityManager.Core/WindowsSecurityManager.Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>WindowsSecurityManager</RootNamespace>
8+
<Version>1.0.0</Version>
89
</PropertyGroup>
910

1011
</Project>

src/WindowsSecurityManager.Gui/WindowsSecurityManager.Gui.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<UseWinUI>true</UseWinUI>
1111
<WindowsPackageType>None</WindowsPackageType>
1212
<AssemblyName>WindowsSecurityManager.Gui</AssemblyName>
13+
<Version>1.0.0</Version>
1314
<RootNamespace>WindowsSecurityManager.Gui</RootNamespace>
1415
<Platforms>x86;x64;ARM64</Platforms>
1516
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>

src/WindowsSecurityManager/UI/InteractiveMenu.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.Reflection;
12
using Spectre.Console;
23
using Spectre.Console.Rendering;
34
using WindowsSecurityManager.Definitions;
@@ -92,7 +93,11 @@ private void ShowIntro()
9293
.Color(Color.Cyan1);
9394

9495
var subtitle = new Markup("[bold cyan]Windows Security Manager[/]").Centered();
95-
var version = new Markup("[dim]v2.0.0 — Security Hardening Made Simple[/]").Centered();
96+
var appVersion = Assembly
97+
.GetExecutingAssembly()
98+
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
99+
?.InformationalVersion.Split('+')[0] ?? "1.0.0";
100+
var version = new Markup($"[dim]v{appVersion} — Security Hardening Made Simple[/]").Centered();
96101

97102
var panel = new Panel(
98103
new Rows(

src/WindowsSecurityManager/WindowsSecurityManager.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<AssemblyName>WindowsSecurityManager</AssemblyName>
9+
<Version>1.0.0</Version>
910

1011
<!-- Publishing options for self-contained single-file executable -->
1112
<PublishSingleFile>true</PublishSingleFile>

0 commit comments

Comments
 (0)