Skip to content
This repository has been archived by the owner on Jul 4, 2020. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Jul 9, 2017
1 parent e396e0a commit 6a30ec7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions ideas/ideas.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Concepts for multiplayer MUD mode (and not really for single player I.F.):

General ideas/TODO:
-------------------
[http] deal with proxy timeouts on eventsource connection (nginx) - send 'keepalive' events every now and then? or reconnect automatically?
[http] try to fix the eventsource polyfill in Edge, it doesn't always immediately show the event message
[code] Flesh out more items/templates in items.basic. Take ideas from objects in other mudlibs
[code] adding 'a' automatically sometimes gives strange results, "you take a someone's wallet"... "you take a some cash"...
[feature] combat system.
Expand Down
4 changes: 2 additions & 2 deletions stories/circle/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class Story(StoryBase):
config.name = "Circle"
config.author = "Irmen de Jong"
config.author_address = "irmen@razorvine.net"
config.version = "1.7"
config.requires_tale = "3.5"
config.version = "1.8"
config.requires_tale = "3.6"
config.supported_modes = {GameMode.MUD}
config.money_type = MoneyType.FANTASY
config.server_tick_method = TickMethod.TIMER
Expand Down
4 changes: 2 additions & 2 deletions stories/demo/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class Story(StoryBase):
config.name = "Tale Demo"
config.author = "Irmen de Jong"
config.author_address = "irmen@razorvine.net"
config.version = "1.9"
config.requires_tale = "3.5"
config.version = "1.10"
config.requires_tale = "3.6"
config.supported_modes = {GameMode.IF, GameMode.MUD}
config.player_money = 15.5
config.playable_races = {"human", "elf", "dark-elf"}
Expand Down
4 changes: 2 additions & 2 deletions stories/zed_is_me/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class Story(StoryBase):
config.name = "Zed is me"
config.author = "Irmen de Jong"
config.author_address = "irmen@razorvine.net"
config.version = "1.8"
config.requires_tale = "3.5"
config.version = "1.9"
config.requires_tale = "3.6"
config.supported_modes = {GameMode.IF}
config.money_type = MoneyType.MODERN
config.player_name = "julie"
Expand Down
2 changes: 1 addition & 1 deletion tale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import Any


__version__ = "3.5"
__version__ = "3.6.dev0"


class _MudContext:
Expand Down
4 changes: 2 additions & 2 deletions tale/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def __init__(self) -> None:
self.name = "" # the name of the story
self.author = "" # the story's author name
self.author_address = "" # the author's email address
self.version = "1.7" # arbitrary but is used to check savegames for compatibility
self.requires_tale = "3.5" # tale library required to run the game
self.version = "1.8" # arbitrary but is used to check savegames for compatibility
self.requires_tale = "3.6" # tale library required to run the game
self.supported_modes = {GameMode.IF} # what driver modes (if/mud) are supported by this story
self.player_name = "" # set a name to create a prebuilt player, None to use the character builder
self.player_gender = "" # m/f (n is technically possible, but not preferred)
Expand Down

0 comments on commit 6a30ec7

Please sign in to comment.