Docs Updated

Docs Updated
This commit is contained in:
Bjanski 2016-07-03 20:39:10 +02:00
parent e72a9bbba3
commit 862957bb28
15 changed files with 112 additions and 5 deletions

View File

@ -1,6 +1,17 @@
#<img src="logo.png" alt="ExAd" width="200" />
# Changelog:
## 160703 20:15 . v0.7.7
###Fixed
* Made the ExAd system compatible with Exile 0.9.8 (All)
###Added
* XM8 - a feature to add apps to the XM8 "More" button
* App for XM8 (Virtual Garage)
###Removed
* Support for Improved_XM8_Apps by Vitaly
## 160610 01:20 . v0.7.6
###Fixed
* Quick-fix - VG App scroll for stored list(Virtual Garage)

View File

@ -25,7 +25,7 @@ After you have installed the entire or parts of the ExAd Package you will easies
* [Exile](http://www.exilemod.com/downloads/)
* Virtual Garage
* Core
* [XM8 Apps Improved](https://github.com/vitalymind/XM8_apps_improved)
* XM8
* Admin Events
* Core
* [Infistar](https://infistar.de/)

View File

@ -1,6 +1,10 @@
#Grinding
## Changelog:
### v0.7.7
####Fixed
* Made the ExAd system compatible with Exile 0.9.8
### v0.7.6
####Fixed
* The configuration file could be reed after the postInit script - IMPORTANT TO UPDATE ALL PLUGINS.

View File

@ -1,6 +1,10 @@
#Grinding
## Instructions:
### v0.7.7
* Replace "mpmissions\Exile.<map>\ExAdClient\Grinding"
* Replace and pack "@ExileServer\addons\exad_grinding"
### v0.7.6
* Replace or merge "mpmissions\Exile.<map>\ExAdClient\Grinding\customize.sqf"
* Replace or merge "mpmissions\Exile.<map>\stringtable.xml"

View File

@ -1,6 +1,10 @@
#Hacking
## Changelog:
### v0.7.7
####Fixed
* Made the ExAd system compatible with Exile 0.9.8
### v0.7.6
####Fixed
* The configuration file could be reed after the postInit script - IMPORTANT TO UPDATE ALL PLUGINS.

View File

@ -1,6 +1,10 @@
#Hacking
## Instructions:
### v0.7.7
* Replace "mpmissions\Exile.<map>\ExAdClient\Hacking"
* Replace and pack "@ExileServer\addons\exad_hacking"
### v0.7.6
* Replace or merge "mpmissions\Exile.<map>\ExAdClient\Hacking\customize.sqf"
* Replace or merge "mpmissions\Exile.<map>\stringtable.xml"

View File

@ -1,6 +1,10 @@
#HaloParachute
## Changelog:
### v0.7.7
####Fixed
* Made the ExAd system compatible with Exile 0.9.8
### v0.7.6
####Fixed
* The configuration file could be reed after the postInit script - IMPORTANT TO UPDATE ALL PLUGINS.

View File

@ -1,13 +1,22 @@
#VirtualGarage
## Changelog:
# Changelog:
## v0.7.6
###Fixed
### v0.7.7
####Fixed
* Made the ExAd system compatible with Exile 0.9.8
####Added
* App for XM8
####Removed
* Support for Improved_XM8_Apps by Vitaly
### v0.7.6
####Fixed
* Quick-fix - VG App scroll for stored list
* The configuration file could be reed after the postInit script - IMPORTANT TO UPDATE ALL PLUGINS.
###Added
####Added
* Extra loggin functionality
* Added a lot of new custom UI Display texts - Check stringtabl.xml for new ones.
* Added a more detailed description of the vehicle for the App

View File

@ -1,6 +1,12 @@
#VirtualGarage
## Instructions:
### v0.7.7
* Remove XM8_Apps
* Install [XM8](https://github.com/Bjanski/ExAd/tree/master/docs/XM8)
* Replace "mpmissions\Exile.<map>\ExAdClient\VG"
* Replace and pack "@ExileServer\addons\exad_vg"
### v0.7.6
* Replace or merge "mpmissions\Exile.<map>\ExAdClient\VG\customize.sqf"
* Replace or merge "mpmissions\Exile.<map>\stringtable.xml"

6
docs/XM8/changelog.md Normal file
View File

@ -0,0 +1,6 @@
#VirtualGarage
## Changelog:
### v0.7.7
#### Added
* Introduced **XM8** to the ExAd package

1
docs/XM8/examples.md Normal file
View File

@ -0,0 +1 @@
#Examples

42
docs/XM8/installation.md Normal file
View File

@ -0,0 +1,42 @@
# Installation
Remember for this plugin to work you first need to install
* [Core](https://github.com/Bjanski/ExAd/blob/master/docs/core/installation.md)
## Client
* Place the folder "XM8" into "mpmissions\exile.<MAP>\ExAdClient\"
* Goto "mpmissions\exile.<MAP>\ExAdClient\CfgFunctions" and uncomment
_From_
```cpp
//#include "XM8\CfgFunctions.cpp"
```
_To_
```cpp
#include "XM8\CfgFunctions.cpp"
```
* In "config.cpp" in the mission root folder, find class CfgExileCustomCode and add the following row
```js
ExileClient_gui_xm8_slide = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_slide.sqf";
ExileClient_gui_xm8_show = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_show.sqf";
```
* In "config.cpp" in the mission root folder, create following class "CfgXM8", e.g. with Virtual Garage app
```js
class CfgXM8
{
extraApps[] = {"ExAd_VG"};
class ExAd_VG
{
title = "Virtual Garage";
controlID = 50000; //IDC:50000 -> 50014
onLoad = "ExAdClient\XM8\Apps\VG\onLoad.sqf";
onOpen = "ExAdClient\XM8\Apps\VG\onOpen.sqf";
onClose = "ExAdClient\XM8\Apps\VG\onClose.sqf";
};
};
```

5
docs/XM8/update.md Normal file
View File

@ -0,0 +1,5 @@
#XM8
## Instructions:
### 160603 . v0.7.7
* Full installation

View File

@ -1,6 +1,10 @@
#Core
## Changelog:
## v0.7.7
###Fixed
* Made the ExAd system compatible with Exile 0.9.8
### v0.7.6
####Fixed
* The configuration file could be reed after the postInit script - IMPORTANT TO UPDATE ALL PLUGINS.

View File

@ -1,6 +1,9 @@
#Core
## Instructions:
### v0.7.7
* Replace "mpmissions\Exile.<map>\ExAdClient\Core"
### v0.7.6
* Replace or merge "mpmissions\Exile.<map>\ExAdClient\Core\customize.sqf"
* Replace or merge "mpmissions\Exile.<map>\stringtable.xml"