You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+23-3Lines changed: 23 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,7 @@
1
1
CHANGELOG
2
2
============
3
3
4
-
5
-
0.6.5 - December ?? 2013
4
+
0.7.0 -
6
5
---------------------------
7
6
8
7
* Deprecated unit.killed_by in favor of unit.killing_player
@@ -17,6 +16,27 @@ CHANGELOG
17
16
* Removed the defunct replay.player_names attribute.
18
17
* Removed the defunct replay.events_by_type attribute.
19
18
* Removed the defunct replay.other_people attribute.
19
+
* Replays can now be pickled and stored for later consumption.
20
+
* All references to the gateway attribute have been replaced in favor of region; e.g. replay.region
21
+
* Use generic UnitType and Ability classes for data. This means no more unit._type_class.__class__.__name__. But hopefully people were not doing that anyway.
22
+
* Now a CorruptTrackerFileError is raised when the tracker file is corrupted (generally only older resume_from_replay replays)
23
+
* Added replay.resume_from_replay flag. See replay.resume_user_info for additional info.
24
+
* PacketEvent is now ProgressEvent.
25
+
* SetToHotkeyEvent is now SetControlGroupEvent.
26
+
* AddToHotkeyEvent is now AddToControlGroupEvent.
27
+
* GetFromHotkeyEvent is now GetControlGroupEvent.
28
+
* PlayerAbilityEvent is no longer part of the event hierarchy.
29
+
* AbilityEvent doubled as both an abstract and concrete class (very bad, see #160). Now split into:
30
+
* AbilityEvent is now CommandEvent
31
+
* AbilityEvent is now BasicCommandEvent
32
+
* TargetAbilityEvent is now TargetUnitCommandEvent
33
+
* LocationAbilityEvent is now TargetPointCommandEvent
34
+
* SelfAbilityEvent is now DataCommandEvent
35
+
* Removed the defunct replay.player_names attribute.
36
+
* Removed the defunct replay.events_by_type attribute.
37
+
* Removed the defunct replay.other_people attribute.
38
+
39
+
* event.name is no longer a class property; it can only be accessed from an event instance.
0 commit comments