Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/CBATeam/CBA_A3
Browse files Browse the repository at this point in the history
  • Loading branch information
ViperMaul committed May 30, 2016
2 parents 125699b + eeacf23 commit 5d66287
Show file tree
Hide file tree
Showing 14 changed files with 687 additions and 680 deletions.
2 changes: 1 addition & 1 deletion addons/arrays/fnc_getArrayDiff.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Parameters:
Example:
(begin example)
_distance = [[0,0,1], [0,0,0]] call CBA_fnc_getArrayDiff
(end
(end example)
Returns:
Array Differences (for above example, return is [[1],[0]])
Expand Down
6 changes: 4 additions & 2 deletions addons/network/fnc_globalExecute.sqf
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
/*
Function: CBA_fnc_globalExecute
Description:
Executes code on given destinations. DEPRECATED. Use remoteExec instead.
DEPRECATED. Use <remoteExec at https://community.bistudio.com/wiki/remoteExec> instead.
Description
Executes code on given destinations.
Parameters:
_channel - All: -2, ClientsOnly: -1, ServerOnly: 0 [Integer]
Expand Down
4 changes: 3 additions & 1 deletion addons/network/fnc_globalSay.sqf
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
/*
Function: CBA_fnc_globalSay
DEPRECATED. Use <remoteExec at https://community.bistudio.com/wiki/remoteExec> ["say"] instead.
Description:
Says sound on all client computer. DEPRECATED. Use remoteExec ["say"] instead.
Says sound on all client computer.
Parameters:
[_objects] - Array of Objects that perform Say [Object]
Expand Down
4 changes: 3 additions & 1 deletion addons/network/fnc_globalSay3d.sqf
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
/*
Function: CBA_fnc_globalSay3d
DEPRECATED. Use <remoteExec at https://community.bistudio.com/wiki/remoteExec> ["say3D"] instead.
Description:
Says sound on all client computer in 3d. DEPRECATED. Use remoteExec ["say3D"] instead.
Says sound on all client computer in 3D.
Parameters:
_object - Object that performs Say [Object] can also be _array - [object, targetObject]
Expand Down
2 changes: 1 addition & 1 deletion addons/strings/fnc_substr.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Description:
Parameters:
_string - String to extract from [String]
_startIndex - Index to start the substring extraction [Number]
_length - length of the extracted substring [Number](Optinal) if is not set than from _startIndex to end
_length - length of the extracted substring [Number](Optional) if is not set than from _startIndex to end
Returns:
String extracted [String]
Expand Down
4 changes: 2 additions & 2 deletions addons/strings/fnc_substring.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Description:
Parameters:
_string - String to extract from [String]
_startIndex - Index to start the substring extraction [String]
_endIndex - Index to end the substring extraction [String]
_startIndex - Index to start the substring extraction [Number]
_endIndex - Index to end the substring extraction [Number]
Returns:
String extracted [String]
Expand Down
Binary file modified store/function_library.tar
Binary file not shown.
13 changes: 13 additions & 0 deletions tools/make_docs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,22 @@ then
mkdir ../docs
fi
cp overview.txt CBA_logo_large.png ../addons

# Move the documented, but internal-only functions out of the way
# while compiling the documentation
cp -a ../addons/xeh /tmp/
rm ../addons/xeh/*
cp -a /tmp/xeh/fnc_addClassEventHandler.sqf ../addons/xeh
cp -a /tmp/xeh/fnc_isRecompileEnabled.sqf ../addons/xeh
cp -a /tmp/xeh/fnc_isScheduled.sqf ../addons/xeh

$NATURALDOCS -r -i "../addons" -o HTML "../docs" -p "ndocs-project" -s Default cba
rm ../addons/{overview.txt,CBA_logo_large.png}

# Restore xeh
cp -a /tmp/xeh/* ../addons/xeh/
rm -rf /tmp/xeh

echo -e "\n=== Packaging documentation ===\n"
rm -f ../store/function_library.tar
fakeroot tar -C ../ -cf ../store/function_library.tar docs
Expand Down
Binary file modified tools/ndocs-project/Data/ConfigFileInfo.nd
Binary file not shown.
861 changes: 415 additions & 446 deletions tools/ndocs-project/Data/FileInfo.nd

Large diffs are not rendered by default.

Binary file modified tools/ndocs-project/Data/ImageFileInfo.nd
Binary file not shown.
Binary file modified tools/ndocs-project/Data/PreviousMenuState.nd
Binary file not shown.
Binary file modified tools/ndocs-project/Data/SymbolTable.nd
Binary file not shown.
471 changes: 245 additions & 226 deletions tools/ndocs-project/Menu.txt

Large diffs are not rendered by default.

0 comments on commit 5d66287

Please sign in to comment.