Skip to content

Commit

Permalink
Merge branch 'master' into HALO
Browse files Browse the repository at this point in the history
  • Loading branch information
Kexanone authored Jun 19, 2018
2 parents 7afbeeb + 291d7bc commit 1283c03
Show file tree
Hide file tree
Showing 24 changed files with 246 additions and 224 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@AresModAchillesExpansion/keys/private
@Release/*
Tools/AchillesTestServer.bat
Tools/AchillesConnectToServer.bat
Tools/AchillesAddonBuilder.bat
*.bikey
*.biprivatekey
*.pbo
*.bisign
*.lnk
.vscode/

.idea
/*.iml
*.ini
Tools/AddonBuilder/config.ini
*.log
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ python:
before_script:
- pip3 install sqflint
script:
- python3 Tools/sqf_validator.py
- python3 Tools/config_style_checker.py
- python3 tools/travis/sqf_validator.py
- python3 tools/travis/config_style_checker.py
- sqflint -d @AresModAchillesExpansion/addons
notifications:
email: false
webhooks:
urls:
- https://mechilles.herokuapp.com/webhook
on_success: change
on_success: change
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "module_tree.sqf"
#include "curator_vision.sqf"
// #include "available_factions.sqf"
#include "available_factions.sqf"
#include "icon_selection.sqf"
#include "keybindings.sqf"
#include "debugMessages.sqf"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ _categoryIndex = _tree_ctrl tvAdd [[],_categoryName];
*/

//collapse unit tree or remove faction
if (/*count Achilles_var_excludedFactions > 0 or*/ Achilles_var_moduleTreeCollapse) then
if (count Achilles_var_excludedFactions > 0 or Achilles_var_moduleTreeCollapse) then
{
{
private _tree_ctrl = _display displayCtrl _x;
for "_i" from ((_tree_ctrl tvCount []) - 1) to 0 step -1 do
{
private _path = [_i];
private _faction_name = _tree_ctrl tvText _path;
if (/*_faction_name in Achilles_var_excludedFactions*/ false) then
if (_faction_name in Achilles_var_excludedFactions) then
{
_tree_ctrl tvDelete _path;
} else
Expand Down Expand Up @@ -164,7 +164,7 @@ if (Achilles_var_moduleTreeCollapse) then
{
private _path = [0,_i];
private _faction_name = _tree_ctrl tvText _path;
if (/*_faction_name in Achilles_var_excludedFactions*/ false) then
if (_faction_name in Achilles_var_excludedFactions) then
{
_tree_ctrl tvDelete _path;
} else
Expand Down
5 changes: 5 additions & 0 deletions @AresModAchillesExpansion/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,13 @@ Our versioning follows the guidelines set by [Semantic Versioning 2.0](https://s
##### Revised
* Paradrop (also applies to the key-binding and reinforcement module)
- Fix: Chute openning animation is smoother. #321

- Feature: AI accounts to a certain extend for paradrop displacment according to [fitted functions](https://gyazo.com/32afcfefef24ba2cdc36eaa4c0467147).
- Change: Paradroopers won't open their chute immediately at high altitude (>120 m) => HALO. #321
#### Settings
##### Revised
* Faction filter
- Change: The faction filter is available agian.

### v1.0.2
#### Modules
Expand Down
84 changes: 0 additions & 84 deletions Tools/AddonBuilder.bat

This file was deleted.

18 changes: 0 additions & 18 deletions Tools/find_unsafe_rc.sh

This file was deleted.

15 changes: 0 additions & 15 deletions Tools/git-bash.bat

This file was deleted.

72 changes: 0 additions & 72 deletions Tools/markdown_changeLog_to_steam.py

This file was deleted.

11 changes: 0 additions & 11 deletions Tools/markdown_test.txt

This file was deleted.

11 changes: 0 additions & 11 deletions Tools/markdown_test_steam.txt

This file was deleted.

Empty file removed Tools/unsafe_rc.log
Empty file.
Loading

0 comments on commit 1283c03

Please sign in to comment.