Skip to content

Commit

Permalink
Bump version to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfehler committed Dec 8, 2024
1 parent ce19fe5 commit ce2ba65
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changelog
=========

[3.6.0] - 2024-12-08
--------------------

Added
~~~~~

- `Encyclopaedia.sort()` as a non-Action equivalent to `Encyclopaedia.Sort()`

Changed
~~~~~~~

- The `sorting_mode` argument for an Encyclopaedia now takes a SortMode Enum
instead of an integer.

- `Encyclopaedia.sort_entries()` is private and renamed to `Encyclopaedia._sort_entries()`

- `SetEntry()` hides entry screen before showing it. This resets the state of the entry screen.

Fixed
~~~~~

- Locking an unlocked EncEntry did not update the `locked` attribute.

- `Encyclopaedia.sorting_mode` can no longer be set.

- `Encyclopaedia.reverse_sorting` can no longer be set.

[3.5.0] - 2024-11-10
--------------------

Expand Down
2 changes: 1 addition & 1 deletion docsgame_source/game/options.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ define gui.show_name = True

## The version of the game.

define config.version = "3.5.0"
define config.version = "3.6.0"


## Text that is placed on the game's about screen. Place the text between the
Expand Down
2 changes: 1 addition & 1 deletion encyclopaedia/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.5.0"
__version__ = "3.6.0"

0 comments on commit ce2ba65

Please sign in to comment.