Skip to content

Commit 34d7859

Browse files
authored
Merge branch 'alpha' into 2898-feature-request-kryptonhscrollbar-kryptonvscrollbar---part-of-2658
2 parents 091e317 + 2739161 commit 34d7859

17 files changed

+2069
-23
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
jobs:
1717
release-master:
1818
runs-on: windows-latest
19+
environment: production # Requires approval before publishing
1920
if: github.ref == 'refs/heads/master' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
2021

2122
steps:
@@ -243,7 +244,7 @@ jobs:
243244
@{
244245
title = "🎉 Krypton Toolkit Stable Release"
245246
description = "A new stable release is now available!"
246-
color = 77dd76
247+
color = 7863670
247248
fields = @(
248249
@{
249250
name = "📌 Version"
@@ -280,6 +281,7 @@ jobs:
280281

281282
release-v105-lts:
282283
runs-on: windows-latest
284+
environment: production # Requires approval before publishing
283285
if: github.ref == 'refs/heads/V105-LTS' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
284286

285287
steps:
@@ -468,7 +470,7 @@ jobs:
468470
@{
469471
title = "🎉 Krypton Toolkit Stable Release"
470472
description = "A new stable release is now available!"
471-
color = 77dd76
473+
color = 7863670
472474
fields = @(
473475
@{
474476
name = "📌 Version"
@@ -505,6 +507,7 @@ jobs:
505507

506508
release-v85-lts:
507509
runs-on: windows-latest
510+
environment: production # Requires approval before publishing
508511
if: github.ref == 'refs/heads/V85-LTS' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
509512

510513
steps:
@@ -678,7 +681,7 @@ jobs:
678681
@{
679682
title = "🛡️ Krypton Toolkit LTS Release"
680683
description = "A new Long-Term Support release is now available!"
681-
color = 0094ff
684+
color = 38143
682685
fields = @(
683686
@{
684687
name = "📌 Version"
@@ -715,6 +718,7 @@ jobs:
715718

716719
release-canary:
717720
runs-on: windows-latest
721+
environment: production # Requires approval before publishing
718722
if: github.ref == 'refs/heads/canary' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
719723

720724
steps:

Documents/Changelog/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
## 2026-11-xx - Build 2611 (V110 Nightly) - November 2026
66

77
* Implemented [#2898](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2898), `KryptonHScrollBar` & `KryptonVScrollBar` - Part of #2658
8+
* Implemented [#2895](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2895), `KryptonProgressBar` - Three Colour States
89
* Resolved/Implemented [#2844](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2844), Touchscreen High DPI scaling
910
* Implemented [#2808](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2808), Move `KryptonToastNotification` feature to `Krypton.Utilities`
1011
* Implemented [#2572](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2572), Autocomplete control/menu

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonFileSystemWatcher.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -416,15 +416,5 @@ protected override void Dispose(bool disposing)
416416

417417
~KryptonFileSystemWatcher() => Dispose(false);
418418

419-
/// <summary>
420-
/// Dispose and garbage collection.
421-
/// </summary>
422-
private void Dispose()
423-
{
424-
Dispose(true);
425-
426-
GC.SuppressFinalize(this);
427-
}
428-
429419
#endregion
430420
}

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonNotifyIcon.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -429,13 +429,6 @@ protected override void Dispose(bool disposing)
429429

430430
~KryptonNotifyIcon() => Dispose(false);
431431

432-
private void Dispose()
433-
{
434-
Dispose(true);
435-
436-
GC.SuppressFinalize(this);
437-
}
438-
439432
#endregion
440433
}
441434

0 commit comments

Comments
 (0)