Skip to content

Commit

Permalink
📖 docs: v3.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maktoobgar committed Jul 6, 2024
1 parent cc67747 commit cf152a3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ CHANGELOG
UNRELEASED
----------


3.10.0 (2024-07-06)
------------------

* 🎉 feat: added auto save + reactive buttons and fully tested
* 🐛 fix: #23 + refactoring + some half implemented features
* 🐛 fix: #27 Free current scene instead of last node of the tree

3.9.0 (2024-05-22)
------------------

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Scene Manager v3.X.X is compatible with Godot 4.
**Recently Added**:

* [X] Pause and Resume functions added
* [X] Reactive button added which makes the `Scene Manager UI` reactive to changes on `File System` of godot and refreshes the `Scene Manager UI` automatically every time an update happens on files in `res://` location
* [X] Auto Save button added which saves automatically every time a new change found in `Scene Manager UI` + If Reactive is enabled too, after that mechanism, save gets called automatically so that there would be no need to use the save button at all

**All**:

Expand Down
2 changes: 1 addition & 1 deletion addons/scene_manager/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="scene_manager"
description="A powerful scene transition manager for godot."
author="Maktoobgar"
version="3.9.0"
version="3.10.0"
script="plugin.gd"
2 changes: 1 addition & 1 deletion addons/scene_manager/scenes.gd
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
#
extends Node

var scenes: Dictionary = {"_auto_refresh":true,"_auto_save":true,"_ignore_list":["res://addons"],"_ignores_visible":true,"_sections":["Scenes","Loadings"],"loading":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/loading.tscn"},"loading_with_initialization":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/loading_with_initialization.tscn"},"scene1":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":true},"Scenes":{"subsection":"","visibility":false}},"value":"res://demo/scene1.tscn"},"scene2":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":true},"Scenes":{"subsection":"","visibility":true}},"value":"res://demo/scene2.tscn"},"scene3":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":true},"Scenes":{"subsection":"","visibility":true}},"value":"res://demo/scene3.tscn"},"special_scene":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/scene_with_loading_phase.tscn"}}
var scenes: Dictionary = {"_auto_refresh":true,"_auto_save":false,"_ignore_list":["res://addons"],"_ignores_visible":true,"_sections":["Scenes","Loadings"],"loading":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/loading.tscn"},"loading_with_initialization":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/loading_with_initialization.tscn"},"scene1":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":false},"Scenes":{"subsection":"","visibility":false}},"value":"res://demo/scene1.tscn"},"scene2":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":true},"Scenes":{"subsection":"","visibility":true}},"value":"res://demo/scene2.tscn"},"scene3":{"sections":["Scenes"],"settings":{"All":{"subsection":"","visibility":true},"Scenes":{"subsection":"","visibility":true}},"value":"res://demo/scene3.tscn"},"special_scene":{"sections":["Loadings","55"],"settings":{"All":{"subsection":"","visibility":true},"Loadings":{"subsection":"","visibility":true}},"value":"res://demo/scene_with_loading_phase.tscn"}}
Binary file modified images/ignore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tool.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tool_double_key.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tool_hidden.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cf152a3

Please sign in to comment.