Skip to content

Commit

Permalink
Update changelog, bump version, add godot-clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
Demindiro committed Jul 23, 2021
1 parent a2a5009 commit 0a4aba4
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 11 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
# Changelog


## 0.19


### 0.19.0

* Fix disconnected blocks outlines in the editor not working with batched mesh instances.

* Fix lagspikes in The Pit, add self destruct.

* Detect invalid vehicles before attempting to switch to a map.

* Update center of mass & collider when blocks are destroyed.

* Properly implement multiblocks: multiblocks now have multiple mount points.

* Add bitmap mount sides to only allow connections to certain sides of mount points. Damage propagation accounts for this.

* Add rudders, which act like mini-wings.

* Update the 3D models of the thruster, the laser weapon and the turret blocks.

* Poll for player input to prevent stuck keys.

* Enable damping to prevent excessive velocities & forces.

* Increase the maximum speed of thrusters from 40m/s to 100m/s, make the speed cap directional instead of globally.

* Buff the plasma cannon by increasing projectile velocity from 50m/s to 100m/s & increase the radius from 3 blocks to 7 blocks.

* Fix the 2x2 turret not being centered properly.


## 0.18


Expand Down
2 changes: 1 addition & 1 deletion gd/core/ownwar.gd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class_name OwnWar


const VERSION := Vector3(0, 18, 1)
const VERSION := Vector3(0, 19, 0)
const COLLISION_MASK_TERRAIN := 1 << (8 - 1)
const COLLISION_MASK_UNIT := 1 << (19 - 1)
const COLLISION_MASK_STRUCTURE := 1 << (20 - 1)
Expand Down
8 changes: 4 additions & 4 deletions gd/export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ codesign/digest_algorithm=1
codesign/description=""
codesign/custom_options=PoolStringArray( )
application/icon=""
application/file_version="0.18.1"
application/product_version="0.18.1"
application/file_version="0.19.0"
application/product_version="0.19.0"
application/company_name=""
application/product_name="Own War"
application/file_description=""
Expand Down Expand Up @@ -86,8 +86,8 @@ application/info=""
application/icon=""
application/identifier="com.ownwargame"
application/signature=""
application/short_version="0.18.1"
application/version="0.18.1"
application/short_version="0.19.0"
application/version="0.19.0"
application/copyright="David Hoppenbrouwers"
display/high_res=false
privacy/camera_usage_description=""
Expand Down
12 changes: 6 additions & 6 deletions gdn/ownwar/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions godot_linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,22 @@ godot-server:


godot-clean-osx:
scons -C $(GODOT_SOURCE) -c platform=osx osxcross_sdk=$(OSXCROSS_SDK) profile=$$PWD/godot_config.py
rm -rf $(GODOT_SOURCE)/bin/$(GODOT_NAME).app
rm -f $(GODOT_SOURCE)/bin/godot.osx.opt.x64
rm -f bin/$(GODOT_NAME).zip


godot-clean-windows:
scons -C $(GODOT_SOURCE) -c platform=windows profile=$$PWD/godot_config.py


godot-clean-linux:
scons -C $(GODOT_SOURCE) -c platform=linux profile=$$PWD/godot_config.py


godot-clean-server:
scons -C $(GODOT_SOURCE) -c platform=server profile=$$PWD/godot_config.py


godot-clean: godot-clean-osx godot-clean-linux godot-clean-windows godot-clean-server

0 comments on commit 0a4aba4

Please # to comment.