Skip to content

Commit

Permalink
Fix a bug with default values for [!list]. folder="" and depth=-1 allow
Browse files Browse the repository at this point in the history
for the operator
to work with conditions as expected
  • Loading branch information
dilyanrusev committed Mar 9, 2021
1 parent 27f28c3 commit 5d077b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion RELEASENOTE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Version Notes (Current Version: v2.56.5)
Version Notes (Current Version: v2.56.6)
=======================================

v.2.56.6
-----------
1. Fix a bug with default values for [!list]. folder="" and depth=-1 allow for the operator
to work with conditions as expected

v.2.56.5
-----------
1. Fix a bug where StackOverflow would happen while building TOC.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,9 +631,9 @@ enum ListStyle
class ListContextBuilder
{
private string filePattern = "*";
private string folderPattern = ".";
private string folderPattern = "";
private string excludePattern = "";
private int depth = 2;
private int depth = -1;
private int limit = 10;
private ListStyle style = ListStyle.Bullet;
private string defaultText = "";
Expand Down

0 comments on commit 5d077b7

Please sign in to comment.