Skip to content

Commit

Permalink
v0.6 is now live! (and also last second fix for file_lister being f…
Browse files Browse the repository at this point in the history
…unky)
  • Loading branch information
Toma400 committed Sep 17, 2024
1 parent c43e14b commit 9a425fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 0 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
- [Pre-alpha 1](#pre-alpha-1)

> ---
```
> ### Pre-alpha 6
> - Gameplay
> - Added second location, made proper descriptions for both
Expand All @@ -29,7 +28,6 @@
> - Fixed not recognising uppercased file extensions (#118)
> - Fixed location theme not showing (#119), at least I hope
>
```
>
> ---
> ### Pre-alpha 5
Expand Down
8 changes: 2 additions & 6 deletions core/file_system/repo_manag.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,8 @@ def file_lister (path, ext=None, file_only=False):
else:
import glob; listed = glob.glob(path + "*." + ext); listed2 = []
for i in listed:
ret = i.replace("." + ext, "")
if file_only: # cuts the path, leaving only filename
ret = ret.replace("\\", "/")
ret = ret.replace("\\", "/")
ret = ret.replace(path, "")
listed2.append(ret)
i = i.replace(path, "")
listed2.append(i.replace("." + ext, ""))
return listed2

def deep_file_lister (path, ext=None):
Expand Down
2 changes: 1 addition & 1 deletion core/system_ref.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "6"
# RELEASE
# RELEASE VERSIONING. SHOULD MATCH LATEST PUBLISHED VERSION, NOT DEVELOPED ONE.
release_status = "pre alpha"
release_version = "5"
release_version = "6"

# CYCLE
cycle_name = "Between Shadows and Light"
Expand Down

0 comments on commit 9a425fa

Please sign in to comment.