mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Fixed .config searches followedStreams.maxCount. Version upped to 4.3.20
This commit is contained in:
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
||||||
|
|
||||||
|
## [4.3.20] - 20.01.2024
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed `.config searches followedStreams.maxCount` not working
|
||||||
|
|
||||||
## [4.3.19] - 20.01.2024
|
## [4.3.19] - 20.01.2024
|
||||||
|
|
||||||
@@ -36,7 +40,6 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.
|
|||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- `.revimg` and `.revav` as google removed reverse image search
|
- `.revimg` and `.revav` as google removed reverse image search
|
||||||
-
|
|
||||||
|
|
||||||
## [4.3.17] - 06.09.2023
|
## [4.3.17] - 06.09.2023
|
||||||
|
|
||||||
|
@@ -30,7 +30,7 @@ public class SearchesConfigService : ConfigServiceBase<SearchesConfig>
|
|||||||
|
|
||||||
AddParsedProp("followedStreams.maxCount",
|
AddParsedProp("followedStreams.maxCount",
|
||||||
sc => sc.FollowedStreams.MaxCount,
|
sc => sc.FollowedStreams.MaxCount,
|
||||||
ConfigParsers.InsensitiveEnum,
|
int.TryParse,
|
||||||
ConfigPrinters.ToString);
|
ConfigPrinters.ToString);
|
||||||
|
|
||||||
Migrate();
|
Migrate();
|
||||||
|
@@ -7,7 +7,7 @@ namespace NadekoBot.Services;
|
|||||||
|
|
||||||
public sealed class StatsService : IStatsService, IReadyExecutor, INService
|
public sealed class StatsService : IStatsService, IReadyExecutor, INService
|
||||||
{
|
{
|
||||||
public const string BOT_VERSION = "4.3.19";
|
public const string BOT_VERSION = "4.3.20";
|
||||||
|
|
||||||
public string Author
|
public string Author
|
||||||
=> "Kwoth#2452";
|
=> "Kwoth#2452";
|
||||||
|
Reference in New Issue
Block a user