Skip to content

Commit

Permalink
Merge pull request #450 from Scarso327/release/1.1.3
Browse files Browse the repository at this point in the history
Release/1.1.3
  • Loading branch information
Scarso327 authored Dec 12, 2024
2 parents 99236aa + b0464ff commit 6ff33f9
Show file tree
Hide file tree
Showing 53 changed files with 599 additions and 113 deletions.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Bug Report
about: Create a report to help us improve
title: ''
labels: Bug
assignees: Scarso327

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
2 changes: 1 addition & 1 deletion Client Side/Framework/Configuration/CfgSettings.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class CfgSettings {
developers[] = { "76561198092567307", "76561197971322689" };

framework_version = "1.1.2";
framework_version = "1.1.3";

total_maxWeight = 5;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ switch (lbCurSel _toolbox) do {
};

if ((_display getVariable ["MessageRecievedEvent", -1]) isEqualTo -1) then {
["MessageReceived", {
_display setVariable ["MessageRecievedEvent", (["MessageReceived", {
private _display = findDisplay 23000;
if (isNull _display && { !((lbCUrSel (_display displayCtrl 23036)) isEqualTo 1) }) exitWith {
[_event, _eventId] call ULP_fnc_removeEventHandler;
};

_display call ULP_fnc_messages;
}] call ULP_fnc_addEventHandler;
}] call ULP_fnc_addEventHandler)];
};
};
default {
Expand Down
Binary file modified Client Side/Maps/AltisLife.Altis/mission.sqm
Binary file not shown.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@ A highly configurable mission developed with inspiration from a variety of ArmA
### Setting Up
This is a very brief list of things you need to do to set up and play the mission.

* You need a database that supports MySQL to run the `altislife.sql` file found in `ServerSide/Database`.
- If you're updating from a previous version all database changes are included in `ServerSide/Database/Migrations`.
* You need a database that supports MySQL 8.0.13 or later to run the `altislife_mysql_8_0_13.sql` file found in `ServerSide/Database`.
- You must use mysql_native_password for the user as EXTDB3 doesn't support the new security stuff.
- The version is set as that's what we've developed with so can ensure support, others might work but if you encounter issues please switch.
- If you're updating from a previous version all database changes are included in `ServerSide/Database/Migrations`. These might also be setup for older syntax
* A setup and ready-to-go ArmA 3 Server on at least version 2.02 for HashMap support.
- Startup parameters for server `-servermod=@life_server;@extDB3`

Expand Down
Loading

0 comments on commit 6ff33f9

Please sign in to comment.