Skip to content

Commit ce2ba65

Browse files
committed
Bump version to 3.6.0
1 parent ce19fe5 commit ce2ba65

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
Changelog
22
=========
33

4+
[3.6.0] - 2024-12-08
5+
--------------------
6+
7+
Added
8+
~~~~~
9+
10+
- `Encyclopaedia.sort()` as a non-Action equivalent to `Encyclopaedia.Sort()`
11+
12+
Changed
13+
~~~~~~~
14+
15+
- The `sorting_mode` argument for an Encyclopaedia now takes a SortMode Enum
16+
instead of an integer.
17+
18+
- `Encyclopaedia.sort_entries()` is private and renamed to `Encyclopaedia._sort_entries()`
19+
20+
- `SetEntry()` hides entry screen before showing it. This resets the state of the entry screen.
21+
22+
Fixed
23+
~~~~~
24+
25+
- Locking an unlocked EncEntry did not update the `locked` attribute.
26+
27+
- `Encyclopaedia.sorting_mode` can no longer be set.
28+
29+
- `Encyclopaedia.reverse_sorting` can no longer be set.
30+
431
[3.5.0] - 2024-11-10
532
--------------------
633

docsgame_source/game/options.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ define gui.show_name = True
2323

2424
## The version of the game.
2525

26-
define config.version = "3.5.0"
26+
define config.version = "3.6.0"
2727

2828

2929
## Text that is placed on the game's about screen. Place the text between the

encyclopaedia/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.5.0"
1+
__version__ = "3.6.0"

0 commit comments

Comments
 (0)