Skip to content

Commit

Permalink
v1.33
Browse files Browse the repository at this point in the history
  • Loading branch information
musurca committed Jun 3, 2020
1 parent 6647974 commit 02880d8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ For questions, comments, or bug reports, please contact me directly at nick.musu
CHANGELOG:
---------------------

v1.33 (June 3, 2020):
* Russian localization (courtesy of [barman75](https://github.com/barman75))
* BLM

v1.32 (January 26, 2020):
* bugfix: doctors can now perform autopsies
* added: CBA setting to determine who can perform autopsies
Expand Down
2 changes: 1 addition & 1 deletion addons/GR/functions/fn_initCBA.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ GR_AUTOPSY_DOCTORS=2;
"LIST",
[localize "STR_FNINITCBA_candoautopsy",localize "STR_FNINITCBA_candoautopsy2"],
"Guilt & Remembrance",
[[GR_AUTOPSY_ANYONE,GR_AUTOPSY_MEDICS,GR_AUTOPSY_DOCTORS],[localize "STR_FNINITCBA_anyone", lozalize "STR_FNINITCBA_medicsdoctors",localize"STR_FNINITCBA_doctorsonly"],1]
[[GR_AUTOPSY_ANYONE,GR_AUTOPSY_MEDICS,GR_AUTOPSY_DOCTORS],[localize "STR_FNINITCBA_anyone", localize "STR_FNINITCBA_medicsdoctors",localize"STR_FNINITCBA_doctorsonly"],1]
] call CBA_fnc_AddSetting;

[
Expand Down
9 changes: 9 additions & 0 deletions addons/GR/functions/fn_initClient.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,12 @@ GR_ace_readEpitaphAction = ["actionEpitaph",localize "STR_FNINITCLIENT_Readmarke
};
}, {true}] call ace_interact_menu_fnc_createAction;
["Land_Grave_dirt_F",0,["ACE_MainActions"],GR_ace_readEpitaphAction] call ace_interact_menu_fnc_addActionToClass;

[] spawn {
if(profileNamespace getVariable ["GR_BLM_MESSAGE_SHOWN",0] != 1) then {
profileNamespace setVariable ["GR_BLM_MESSAGE_SHOWN",1];
sleep 1;
_blmText = parseText "<t>Dear American friends:<br/>In the wake of George Floyd&#39;s killing by the Minneapolis Police, people all across the country have taken to the streets to protest the use of lethal force by local and state police. Nearly everywhere the police have responded with extreme violence: using batons, rubber bullets, and tear gas against crowds of unarmed and largely peaceful protesters. Many have suffered severe and permanent injuries; some have even been killed.<br/><br/>It is time to stop the flow of military equipment to the police, and end policies that have shielded violent police officers from prosecution. If you can, please support collective action by clicking the links below to support the following organizations:</t><t align='center'><br/><br/><a href='https://www.joincampaignzero.org'>Campaign Zero</a><br/><a href='https://www.naacpldf.org/'>NAACP Legal Defense Fund</a><br/><a href='https://blacklivesmatter.com/'>Black Lives Matter</a></t><t><br/><br/>Thanks for reading-- and please note that after clicking OK below, you will not see this message again.<br/><br/></t><t font='PuristaBold' align='center'>In solidarity with the international struggle against state violence in Hong Kong, Russia, France, and beyond.</t>";
[_blmText, "Guilt & Remembrance - June 3, 2020", "OK"] spawn BIS_fnc_guiMessage;
};
};
2 changes: 1 addition & 1 deletion mod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ overview = "Civilian deaths, reparations, and war crimes. Deliver the bodies of
author = "@musurca";
overviewText = "GR";
overviewPicture = "img\logomain.paa";
overviewFootnote = "v132";
overviewFootnote = "v133";

0 comments on commit 02880d8

Please sign in to comment.