Skip to content

Commit

Permalink
Fix missing/misnamed fields, build for Python 3.9 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShellyHerself authored Oct 31, 2020
2 parents 193bc85 + f90ce11 commit 9f753ab
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .wheelman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ targets:

- python: "C:\\Python38-x64\\python.exe"
wheel: True

- python: "C:\\Python39\\python.exe"
wheel: True

- python: "C:\\Python39-x64\\python.exe"
wheel: True
sdist: True
7 changes: 7 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.9.10]
### Changed
- Add missing "inhibits weapon attack" field in model_collision definition.
- Add missing "flying" field in biped.
- Fix burst_return_length being incorrectly marked as seconds instead of world units.
- Update build config for Python 3.9.

## [2.9.9]
### Changed
- Updated xbox model struct for invader
Expand Down
4 changes: 2 additions & 2 deletions reclaimer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# ##############
__author__ = "Sigmmma"
# YYYY.MM.DD
__date__ = "2020.09.23"
__version__ = (2, 9, 9)
__date__ = "2020.10.30"
__version__ = (2, 9, 10)
__website__ = "https://github.com/Sigmmma/reclaimer"
__all__ = (
"animation", "bitmaps", "h2", "h3", "halo_script", "hek", "meta", "misc",
Expand Down
2 changes: 1 addition & 1 deletion reclaimer/hek/defs/actv.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
Struct("burst_geometry",
float_wu("burst_origin_radius"),
float_rad("burst_origin_angle"), # radians
from_to_sec("burst_return_length"),
float_wu("burst_return_length"),
float_rad("burst_return_angle"), # radians
from_to_sec("burst_duration", UNIT_SCALE=sec_unit_scale), # seconds
from_to_sec("burst_separation"),
Expand Down
1 change: 1 addition & 0 deletions reclaimer/hek/defs/bipd.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
Bool32("flags",
"turns_without_aiming",
"uses_player_physics",
"flying",
"physics_pill_centered_at_origin",
"spherical",
"passes_through_other_bipeds",
Expand Down
1 change: 1 addition & 0 deletions reclaimer/hek/defs/coll.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@
"dies_when_object_is_damaged",
"disappears_when_shield_is_off",
"inhibits_melee_attack",
"inhibits_weapon_attack",
"inhibits_walking",
"forces_drop_weapon",
"causes_head_maimed_scream",
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: C",
],
Expand Down

0 comments on commit 9f753ab

Please sign in to comment.