Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

general - Improve author Information #246

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addons/grad_screenshotmode/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class CfgPatches {
class ADDON {
// Meta information for editor
name = COMPONENT_NAME;
author = ECSTRING(main,TacticalTrainingTeam);
author = "Gruppe Adler";
authors[] = {"DerZade [A]", "McDiod [A]", "Menom [TTT]", "Andx [TTT]"};
url = ECSTRING(main,URL);
url = "https://gruppe-adler.de";

// Minimum compatible version. When the game's version is lower, pop-up warning will appear when launching the game. Note: was disabled on purpose some time late into Arma 2: OA.
requiredVersion = REQUIRED_VERSION;
Expand Down
2 changes: 1 addition & 1 deletion addons/intel/script_component.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define COMPONENT intel
#define COMPONENT_BEAUTIFIED TTT Intel
#define COMPONENT_BEAUTIFIED Intel
#include "\z\ttt\addons\main\script_mod.hpp"

#include "\z\ttt\addons\main\script_macros.hpp"
2 changes: 1 addition & 1 deletion addons/rsr/readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RsR Core
# RsR

Stellt Basisfunktionen bereit für alle RsR Mods.

Expand Down
2 changes: 1 addition & 1 deletion addons/rsr/script_component.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define COMPONENT rsr
#define COMPONENT_BEAUTIFIED RsR Core
#define COMPONENT_BEAUTIFIED RsR
#include "\z\ttt\addons\main\script_mod.hpp"

#include "\z\ttt\addons\main\script_macros.hpp"
2 changes: 1 addition & 1 deletion addons/spotlight_cup/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class CfgPatches {
class ADDON {
// Meta information for editor
name = QUOTE(TTT Spolight CUP);
name = COMPONENT_NAME;
author = ECSTRING(main,TacticalTrainingTeam);
authors[] = {"Addi", "Andx"};
url = ECSTRING(main,URL);
Expand Down
2 changes: 1 addition & 1 deletion addons/spotlight_event/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class CfgPatches {
class ADDON {
// Meta information for editor
name = QUOTE(TTT Spolight CUP);
name = COMPONENT_NAME;
author = ECSTRING(main,TacticalTrainingTeam);
authors[] = {"Addi", "Andx"};
url = ECSTRING(main,URL);
Expand Down
4 changes: 2 additions & 2 deletions addons/w_buildingshield/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

class CfgPatches {
class ADDON {
author = ECSTRING(main,TacticalTrainingTeam);
author = "Gruppe W";
authors[] = {"[W] Miller", "Andx"};
url = ECSTRING(main,url);
authorUrl = "https://www.gruppe-w.de/";
name = COMPONENT_NAME;
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {
Expand Down
2 changes: 1 addition & 1 deletion addons/w_buildingshield/script_component.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define COMPONENT w_buildingshield
#define COMPONENT_BEAUTIFIED W Building Shield
#define COMPONENT_BEAUTIFIED W-Building Shield
#include "\z\ttt\addons\main\script_mod.hpp"

// #define DEBUG_MODE_FULL
Expand Down
2 changes: 1 addition & 1 deletion addons/w_teleporter/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class CfgPatches {
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ttt_common"};
authors[] = {"BlauBär"};
author = "Gruppe W Bauleitung";
author = "Gruppe W";
authorUrl = "https://www.gruppe-w.de/";
VERSION_CONFIG;
};
Expand Down
2 changes: 1 addition & 1 deletion addons/w_vehicleshield/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class CfgPatches {
class ADDON {
author = ECSTRING(main,TacticalTrainingTeam);
author = "Gruppe W";
authors[] = {"[W] Miller"};
url = ECSTRING(main,url);
name = COMPONENT_NAME;
Expand Down
2 changes: 1 addition & 1 deletion addons/w_vehicleshield/script_component.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define COMPONENT w_vehicleshield
#define COMPONENT_BEAUTIFIED W Vehicle Shield
#define COMPONENT_BEAUTIFIED W-Vehicle Shield
#include "\z\ttt\addons\main\script_mod.hpp"

// #define DEBUG_MODE_FULL
Expand Down
Loading