Skip to content

Commit

Permalink
docs(docs): 📝 Got ready for a new version!
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsunami014 committed Jun 13, 2024
1 parent 3eb46b5 commit 49e9be1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
3 changes: 1 addition & 2 deletions progress.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Roadmap
## Current version: Structure
- [x] Completly redo the file directory structure for the pypi package
- [ ] Make all the demos work (add some, remove others)
- [ ] Make `__main__.py` work again!
- [x] Make cross-platform
## Next version: Speed
- [ ] Make graphics run WAY faster and **efficient** (currently EXTREMLY SLOW)
- [ ] Overhaul of `terrainGen.py` to remove most of the dependancies, making there less things to install and also load WAYYY faster.
- [ ] Make `loading.py` MUCH faster (can rewrite it if you want, just need to also update `graphics.py`)
- [x] Make GO.PNEW easier (e.g. have GO.P___ all have their functions in them and stuff so you don't need GO.PSTACKS)
- [ ] Make the graphics faster to make elements
- [ ] Fix import system to make things load faster
- [ ] Make progressbars load stuff in the background for faster launching of the app
## Version after: GUI
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Welcome to Blaze Sudios!
# CURRENT VERSION: v2.0.0-beta (💥 Flare)
# CURRENT VERSION: v2.1.0-beta (💥 Flare)
Actually playable! Run `__main__.py`!
(After you install the dependancies, of course)

Expand Down Expand Up @@ -28,9 +28,9 @@ Also please note that this is a very early version, and there are many things th
Things to note:
1. # **<u>Still in progress</u>**
2. This project comes with 3 python libraries built into it; [pyguix](https://github.com/DarthData410/PyGames-pyguix), [Pyldtk](https://github.com/LGgameLAB/pyLdtk) and [textboxify](https://github.com/hnrkcode/TextBoxify/tree/master). This is for a couple of reasons:
1. (the main big one) It can't be installed with pip (maybe it got taken down? I don't know)
1. (The main one) I can modify it myself
1. It can't be installed with pip (maybe it got taken down? I don't know, or maybe I'm just bad (says the person who made *this*))
2. I don't have to wory about dependancy issues with those two packages
3. I can modify it myself
4. You guys don't have to install another package
5. It won't ever change (unless I change it myself)

Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@

setup(
name='Blaze-Sudio',
version='2.0.0',
version='2.1.0',
license='Apache',
description='This is the really cool studio to create games!',
url='https://github.com/Tsunami014/Blaze-Sudio',
download_url='https://github.com/Tsunami014/Blaze-Sudio/archive/refs/tags/v2.0.0-beta.tar.gz',
download_url='https://github.com/Tsunami014/Blaze-Sudio/archive/refs/tags/v2.1.0-beta.tar.gz',
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
include_package_data=True,
package_data={'BlazeSudio' :['BlazeSudio/data/*', 'BlazeSudio/bot/preferencesDefault.json']},
author='Tsunami014 (Max)',
author_email='[email protected]',
install_requires=[
install_requires=[ # TODO: Update this with the actual packages
'requests',
'connect-markdown-renderer',
'pygame',
Expand All @@ -37,8 +37,7 @@
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
'Topic :: Software Development :: Build Tools',
#"Operating System :: Unix",
#"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows"
]
)
Expand Down

0 comments on commit 49e9be1

Please sign in to comment.