Skip to content

Commit 008896e

Browse files
Develop (#13)
* Increase test coverage with comprehensive service tests - Enhanced FileServiceTests with ReadFile() method coverage and edge cases - Added UserSettingsServiceTests with 20 test methods covering settings management, themes, persistence, and event handling - Added PageServiceTests with 9 test methods covering page type resolution and service provider integration - Added NavigationServiceTests with 15 test methods covering navigation logic, frame management, and state handling - All tests follow AAA pattern with proper mocking and edge case coverage - Improved overall test coverage for core business logic services * Fix tests * Add donate button * Fix: Add correct parameter into DeleteAllReplies() with USERNAME * Decrease retry attempts from 5 to 3 * Increase version and add release notes --------- Co-authored-by: openhands <[email protected]>
1 parent 4e1c46d commit 008896e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

release-notes/v2.0.1.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### What's Changed
2+
3+
- **Fixed Bug in Repost Deletion Retry Loop**
4+
Improved handling of reposts where the deletion loop could appear to hang. The retry count has been reduced from 5 to 3 to prevent perceived infinite loops when a repost cannot be removed.
5+
👉 *Tip: Delete your original posts first before cleaning up reposts to avoid mixed-content issues.*
6+
7+
- **Fixed Documentation Bug in `DeleteAllReplies` Example**
8+
The example for `DeleteAllReplies` was missing the required `username` parameter, causing the script to fail. The corrected usage is:
9+
```js
10+
DeleteAllReplies('your_username', 1000, 5);

src/UI/UI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ApplicationIcon>Assets\logo.ico</ApplicationIcon>
1111
<AssemblyName>CleanMyPosts</AssemblyName>
1212
<TargetFramework>net9.0-windows</TargetFramework>
13-
<Version>2.0.0</Version>
13+
<Version>2.0.1</Version>
1414
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1515
<AnalysisLevel>latest</AnalysisLevel>
1616
<EnableNETAnalyzers>True</EnableNETAnalyzers>

0 commit comments

Comments
 (0)