Open Issues Need Help
View All on GitHubThe flexible and customizable Wiki Platform written in c# using aspnet core and SQLite. Runs on Windows, Linux, and Mac with zero upfront configuration.
AI Summary: Fix theme-related issues in the TightWiki project. Specifically, address header height overlap in Lux, Materia, Pulse, and Quartz themes, and menu display problems in Solar and Vapor themes (including unreadable labels in Vapor).
The flexible and customizable Wiki Platform written in c# using aspnet core and SQLite. Runs on Windows, Linux, and Mac with zero upfront configuration.
AI Summary: The issue is a `System.Exception` thrown during a search in TightWiki (version 2.21.8) when converting a string representation of a float (e.g., "0.60") to a float. The problem stems from the `float.TryParse` method potentially using the wrong culture (Swedish instead of invariant), leading to parsing failure due to the decimal separator difference. The solution involves modifying the `ConvertTo` method in `NTDLS.Helpers.Converters.cs` to explicitly use `CultureInfo.InvariantCulture` within `float.TryParse` to ensure consistent parsing regardless of the system's regional settings.
The flexible and customizable Wiki Platform written in c# using aspnet core and SQLite. Runs on Windows, Linux, and Mac with zero upfront configuration.