Skip to content

3.2.0

Compare
Choose a tag to compare
@ericoc ericoc released this 19 Dec 23:46
· 1315 commits to main since this release

Moved each section to folders!

Screenshot 2022-12-19 at 6 40 18 PM

(.venv) ishar@isharmud:/var/www/isharmud.com/ishar-web$ tree -I '__pycache__'
.
├── README.md
├── SECURITY.md
├── TODO.md
├── __init__.py
├── admin
│   ├── __init__.py
│   ├── accounts.py
│   ├── events.py
│   ├── news.py
│   ├── patches.py
│   ├── players.py
│   ├── seasons.py
│   └── templates
│       ├── accounts
│       │   ├── accounts.html.j2
│       │   ├── edit_account.html.j2
│       │   ├── edit_player.html.j2
│       │   └── manage_account.html.j2
│       ├── events
│       │   ├── edit_event.html.j2
│       │   └── events.html.j2
│       ├── news
│       │   ├── edit_news.html.j2
│       │   └── news.html.j2
│       ├── patches
│       │   └── manage_patches.html.j2
│       ├── portal.html.j2
│       └── seasons
│           ├── cycle.html.j2
│           └── seasons.html.j2
├── challenges
│   ├── __init__.py
│   └── templates
│       └── challenges.html.j2
├── config.py
├── config.py.example
├── database.py
├── database_secret.py
├── database_secret.py.example
├── delta.py
├── discord_secret.py
├── discord_secret.py.example
├── error_pages.py
├── forms.py
├── help
│   ├── __init__.py
│   ├── faqs.py
│   ├── help_page.py
│   ├── helptab.py
│   ├── mud_clients.py
│   ├── templates
│   │   ├── faqs.html.j2
│   │   ├── get_started.html.j2
│   │   ├── help_page.html.j2
│   │   ├── history.html.j2
│   │   ├── mud_clients.html.j2
│   │   └── world.html.j2
│   └── world.py
├── ishar_discord.py
├── leaders
│   ├── __init__.py
│   └── templates
│       └── leaders.html.j2
├── login
│   ├── __init__.py
│   └── templates
│       └── login.html.j2
├── models.py
├── mud_secret.py
├── mud_secret.py.example
├── patches
│   ├── __init__.py
│   ├── templates
│   │   └── patches.html.j2
│   └── util.py
├── portal
│   ├── __init__.py
│   ├── password.py
│   ├── players.py
│   └── templates
│       ├── account.html.j2
│       ├── change_password.html.j2
│       ├── player.html.j2
│       └── player_portal.html.j2
├── requirements.txt
├── sentry.py
├── static
│   ├── Factions_and_Reputation.pdf
│   ├── Major_Update.pdf
│   ├── Season_Proposal.pdf
│   ├── images
│   │   ├── become-a-patron.png
│   │   ├── buy-me-a-coffee.png
│   │   ├── cropped_i_transparent.png
│   │   ├── cropped_ishar_logo_dark.png
│   │   ├── cropped_ishar_logo_trans.png
│   │   ├── cropped_ishar_text_trans.png
│   │   ├── discord.png
│   │   ├── favicon.ico
│   │   ├── favicon.png
│   │   ├── header_alpha.png
│   │   ├── header_test.png
│   │   ├── ishar_logo.ai
│   │   ├── ishar_logo_dark.jpg
│   │   ├── ishar_logo_dark.png
│   │   ├── ishar_logo_dark.svg
│   │   ├── ishar_logo_light.ai
│   │   ├── ishar_logo_light.jpg
│   │   ├── ishar_logo_light.png
│   │   ├── ishar_logo_light.svg
│   │   ├── ishar_logo_text_combined_trans.png
│   │   ├── ishar_logo_transparent.png
│   │   ├── old
│   │   │   ├── old_banner.jpg
│   │   │   ├── old_favicon.ico
│   │   │   └── old_favicon.png
│   │   └── small_ishar_logo_dark.png
│   ├── logo.txt
│   ├── patches
│   │   ├── Patch_1.0.pdf
│   │   ├── Patch_1.1.pdf
│   │   ├── Patch_2.0.pdf
│   │   └── Patch_2.1.pdf
│   ├── robots.txt
│   ├── sitemap.xml
│   └── style.css
├── sysinfo.py
├── templates
│   ├── base
│   │   ├── error.html.j2
│   │   ├── layout.html.j2
│   │   ├── navigation.html.j2
│   │   └── welcome.html.j2
│   ├── global_events.html.j2
│   ├── season.html.j2
│   ├── support.html.j2
│   ├── sysinfo.html.j2
│   └── wizlist.html.j2
├── uwsgi.ini.example
└── welcome.py

25 directories, 115 files