Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build baseline #206

Closed
wants to merge 41 commits into from
Closed

Build baseline #206

wants to merge 41 commits into from

Commits on Sep 10, 2023

  1. .editorconfig

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    0017256 View commit details
    Browse the repository at this point in the history
  2. .tool-versions

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    c6e5b62 View commit details
    Browse the repository at this point in the history
  3. Cleanup .gitignore

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    7037fd6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f9facc7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    94d6456 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2f944a5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5a7dbd6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    45a2219 View commit details
    Browse the repository at this point in the history
  9. Fix a few more _HasId warts

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    dda2043 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1a3bf4f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    661b643 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    817b471 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    01851dc View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c2142b8 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    61eaf71 View commit details
    Browse the repository at this point in the history
  16. TS all the prototypes

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    b561071 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    198d204 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4a033d3 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    db0f066 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    9c70db8 View commit details
    Browse the repository at this point in the history
  21. Remove dead code

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    34dec1a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    2d4caf0 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    40386f1 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    9954a10 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    c158599 View commit details
    Browse the repository at this point in the history
  26. Fix typo

    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    f575b60 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    1e0058b View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    b69d7cf View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    dfd3486 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    ab68173 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    ceb4ca0 View commit details
    Browse the repository at this point in the history
  32. Fix push priority calculation for Managers

    As those creeps have a push priority of 0, the check would fail and
    default them, defeating the push protection entirely.
    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    4c7f6b3 View commit details
    Browse the repository at this point in the history
  33. Improve fortify response to nukes

    This reworks the nuke planner fortify logic to get to minimum safe value, then
    balance fortifications instead of full true up of barriers in order of priority
    which could be a massive jump if behind
    
    Squashed from commits 53df937,
    d492973
    tiennou committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    07fee1b View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Update package.json

    This switches to Node 18 and more recent version of most dependencies
    tiennou committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    364c284 View commit details
    Browse the repository at this point in the history
  2. Update rollup configuration

    tiennou committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    266efb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    98e1e06 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. Configuration menu
    Copy the full SHA
    c51ffee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    08ba6ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    222c613 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    03d54eb View commit details
    Browse the repository at this point in the history
  5. Fix error in AnyZerg.move() and freezing CombatZergs

    There was a logic error in the AnyZerg move() method, causing the issue in
    Movement.vacatePos(). The method vacatePos() sets creep.blockMovement to true,
    but is meant to override it with force: true. The check in AnyZerg said
    "!this.blockMovement && !force" therefore this method was not working, and the
    creep not moving. Swapped it to "!this.blockMovement || force".
    
    Also fixed an issue where Zergs of a role would stop working if one of their
    kind was spawning, there was a return instead of an continue, aborting any Zerg
    actions after it.
    
    Squashed from eb2b78c
    tiennou committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    d3f620f View commit details
    Browse the repository at this point in the history