From c11bd5f3c970972c29cf59ae8f361cc76926ad00 Mon Sep 17 00:00:00 2001 From: szapp Date: Fri, 14 Jul 2017 09:43:46 +0200 Subject: [PATCH] Bump version to v1.0.0-alpha --- LICENSE | 2 +- README.md | 2 +- _work/data/Scripts/Content/freeAim/_intern/activate.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/aimRay.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/aimVob.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/auxiliary.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/ccommands.d | 6 +++--- _work/data/Scripts/Content/freeAim/_intern/classes.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/collectable.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/collision.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/const.d | 6 +++--- _work/data/Scripts/Content/freeAim/_intern/controls.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/criticalHit.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/debug.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/init.d | 6 +++--- _work/data/Scripts/Content/freeAim/_intern/offsets_G2.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/rangedAiming.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/rangedShooting.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/reticle.d | 4 ++-- _work/data/Scripts/Content/freeAim/_intern/spell.d | 4 ++-- _work/data/Scripts/System/Camera/CamInstFreeAim.d | 4 ++-- _work/data/Scripts/System/Menu/Menu_Opt_Game_FreeAim.d | 4 ++-- _work/data/Scripts/System/PFX/PfxInstFreeAim.d | 4 ++-- _work/data/Scripts/System/SFX/SfxInstFreeAim.d | 4 ++-- _work/data/Scripts/System/VisualFX/VisualFxFreeAim.d | 4 ++-- 25 files changed, 51 insertions(+), 51 deletions(-) diff --git a/LICENSE b/LICENSE index 9fa9653..1acb5e0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016 mud-freak (@szapp) +Copyright (c) 2016-2017 mud-freak (@szapp) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 34ae648..2e384f9 100644 --- a/README.md +++ b/README.md @@ -275,7 +275,7 @@ above). intersection. This should only be useful if the underlying g2freeAim mechanics are modified (which is not recommended). 5. Additional information about the selected settings of g2freeAim can be displayed in the console by the commands - - `freeaim version` displays the current version of g2freeAim, e.g. "G2 Free Aim v0.1.2" + - `freeaim version` displays the current version of g2freeAim, e.g. "G2 Free Aim v1.0.0-alpha" - `freeaim license` displays the license information of g2freeAim - `freeaim info` displays the settings of g2freeAim - Whether free aiming is enabled diff --git a/_work/data/Scripts/Content/freeAim/_intern/activate.d b/_work/data/Scripts/Content/freeAim/_intern/activate.d index 7dcc6e3..d84bd68 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/activate.d +++ b/_work/data/Scripts/Content/freeAim/_intern/activate.d @@ -1,8 +1,8 @@ /* * Activate free aiming and set internal settings * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/aimRay.d b/_work/data/Scripts/Content/freeAim/_intern/aimRay.d index b7f23b0..bbd66be 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/aimRay.d +++ b/_work/data/Scripts/Content/freeAim/_intern/aimRay.d @@ -1,8 +1,8 @@ /* * Aim-specific trace ray and focus collection * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/aimVob.d b/_work/data/Scripts/Content/freeAim/_intern/aimVob.d index 22106fc..f9735b7 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/aimVob.d +++ b/_work/data/Scripts/Content/freeAim/_intern/aimVob.d @@ -1,8 +1,8 @@ /* * Definition and manipulation of aim vob (targeting system) * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/auxiliary.d b/_work/data/Scripts/Content/freeAim/_intern/auxiliary.d index dd62de4..0fe5db7 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/auxiliary.d +++ b/_work/data/Scripts/Content/freeAim/_intern/auxiliary.d @@ -1,8 +1,8 @@ /* * Auxiliary functions for finding active spell instances, weapons and offering animated reticles * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/ccommands.d b/_work/data/Scripts/Content/freeAim/_intern/ccommands.d index 5bdf238..d552a9a 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/ccommands.d +++ b/_work/data/Scripts/Content/freeAim/_intern/ccommands.d @@ -1,8 +1,8 @@ /* * Definition of all console commands * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * @@ -69,7 +69,7 @@ func string freeAimLicense(var string command) { SB(FREEAIM_VERSION); SB(", Copyright "); SBc(169 /* (C) */); - SB(" 2016 mud-freak (@szapp)"); + SB(" 2016-2017 mud-freak (@szapp)"); SBc(13); SBc(10); SB(""); diff --git a/_work/data/Scripts/Content/freeAim/_intern/classes.d b/_work/data/Scripts/Content/freeAim/_intern/classes.d index 109af88..88e6125 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/classes.d +++ b/_work/data/Scripts/Content/freeAim/_intern/classes.d @@ -1,8 +1,8 @@ /* * Classes * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/collectable.d b/_work/data/Scripts/Content/freeAim/_intern/collectable.d index ac3768d..0ecf4bc 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/collectable.d +++ b/_work/data/Scripts/Content/freeAim/_intern/collectable.d @@ -1,8 +1,8 @@ /* * Collectable projectiles * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/collision.d b/_work/data/Scripts/Content/freeAim/_intern/collision.d index 0704232..976726a 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/collision.d +++ b/_work/data/Scripts/Content/freeAim/_intern/collision.d @@ -1,8 +1,8 @@ /* * Projectile collision behavior * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/const.d b/_work/data/Scripts/Content/freeAim/_intern/const.d index 8af5212..fd52b46 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/const.d +++ b/_work/data/Scripts/Content/freeAim/_intern/const.d @@ -1,8 +1,8 @@ /* * Constants * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * @@ -25,7 +25,7 @@ /* * Free aim internal constants. Do not modify! Change the settings in config\settings.d */ -const string FREEAIM_VERSION = "G2 Free Aim v0.1.2"; +const string FREEAIM_VERSION = "G2 Free Aim v1.0.0-alpha"; const int FREEAIM_LEGO_FLAGS = LeGo_HookEngine // For initializing all hooks | LeGo_FrameFunctions // For projectile gravity | LeGo_ConsoleCommands // For console commands and debugging diff --git a/_work/data/Scripts/Content/freeAim/_intern/controls.d b/_work/data/Scripts/Content/freeAim/_intern/controls.d index 63cfdf3..9a218b5 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/controls.d +++ b/_work/data/Scripts/Content/freeAim/_intern/controls.d @@ -1,8 +1,8 @@ /* * Input and controls manipulation * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/criticalHit.d b/_work/data/Scripts/Content/freeAim/_intern/criticalHit.d index 156d7fb..f138a2b 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/criticalHit.d +++ b/_work/data/Scripts/Content/freeAim/_intern/criticalHit.d @@ -1,8 +1,8 @@ /* * Critical hits for projectiles * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/debug.d b/_work/data/Scripts/Content/freeAim/_intern/debug.d index 17bf06e..8ecf692 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/debug.d +++ b/_work/data/Scripts/Content/freeAim/_intern/debug.d @@ -1,8 +1,8 @@ /* * Debugging visualizations * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/init.d b/_work/data/Scripts/Content/freeAim/_intern/init.d index a2a648f..06a1dd8 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/init.d +++ b/_work/data/Scripts/Content/freeAim/_intern/init.d @@ -1,8 +1,8 @@ /* * Initialization * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * @@ -156,7 +156,7 @@ func int freeAimInitOnce() { // Copyright notice in zSpy var int s; s = SB_New(); - SB(" "); SB(FREEAIM_VERSION); SB(", Copyright "); SBc(169 /* (C) */); SB(" 2016 mud-freak (@szapp)"); + SB(" "); SB(FREEAIM_VERSION); SB(", Copyright "); SBc(169 /* (C) */); SB(" 2016-2017 mud-freak (@szapp)"); MEM_Info(""); MEM_Info(SB_ToString()); SB_Destroy(); MEM_Info(" "); diff --git a/_work/data/Scripts/Content/freeAim/_intern/offsets_G2.d b/_work/data/Scripts/Content/freeAim/_intern/offsets_G2.d index 73a9748..a4c30e5 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/offsets_G2.d +++ b/_work/data/Scripts/Content/freeAim/_intern/offsets_G2.d @@ -1,8 +1,8 @@ /* * Engine offsets for Gothic 2 * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/rangedAiming.d b/_work/data/Scripts/Content/freeAim/_intern/rangedAiming.d index 193b811..dd526fa 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/rangedAiming.d +++ b/_work/data/Scripts/Content/freeAim/_intern/rangedAiming.d @@ -1,8 +1,8 @@ /* * Ranged combat aiming mechanics * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/rangedShooting.d b/_work/data/Scripts/Content/freeAim/_intern/rangedShooting.d index dfff9c2..502bedd 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/rangedShooting.d +++ b/_work/data/Scripts/Content/freeAim/_intern/rangedShooting.d @@ -1,8 +1,8 @@ /* * Ranged combat shooting mechanics * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/reticle.d b/_work/data/Scripts/Content/freeAim/_intern/reticle.d index de8c1ca..69f6fc0 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/reticle.d +++ b/_work/data/Scripts/Content/freeAim/_intern/reticle.d @@ -1,8 +1,8 @@ /* * Reticle handling * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/Content/freeAim/_intern/spell.d b/_work/data/Scripts/Content/freeAim/_intern/spell.d index f98aba9..aa33d87 100644 --- a/_work/data/Scripts/Content/freeAim/_intern/spell.d +++ b/_work/data/Scripts/Content/freeAim/_intern/spell.d @@ -1,8 +1,8 @@ /* * Magic combat mechanics * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/System/Camera/CamInstFreeAim.d b/_work/data/Scripts/System/Camera/CamInstFreeAim.d index 5f3f107..c592e52 100644 --- a/_work/data/Scripts/System/Camera/CamInstFreeAim.d +++ b/_work/data/Scripts/System/Camera/CamInstFreeAim.d @@ -1,8 +1,8 @@ /* * Free aim camera mode * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/System/Menu/Menu_Opt_Game_FreeAim.d b/_work/data/Scripts/System/Menu/Menu_Opt_Game_FreeAim.d index a8b25b5..7f0b987 100644 --- a/_work/data/Scripts/System/Menu/Menu_Opt_Game_FreeAim.d +++ b/_work/data/Scripts/System/Menu/Menu_Opt_Game_FreeAim.d @@ -1,8 +1,8 @@ /* * Free aim menu options * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/System/PFX/PfxInstFreeAim.d b/_work/data/Scripts/System/PFX/PfxInstFreeAim.d index 9bdccfc..98cb3ed 100644 --- a/_work/data/Scripts/System/PFX/PfxInstFreeAim.d +++ b/_work/data/Scripts/System/PFX/PfxInstFreeAim.d @@ -1,8 +1,8 @@ /* * Projectile trail strip for increased visibility * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/System/SFX/SfxInstFreeAim.d b/_work/data/Scripts/System/SFX/SfxInstFreeAim.d index 5cda011..a05b8db 100644 --- a/_work/data/Scripts/System/SFX/SfxInstFreeAim.d +++ b/_work/data/Scripts/System/SFX/SfxInstFreeAim.d @@ -1,8 +1,8 @@ /* * Critical hit sound for projectiles * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. * diff --git a/_work/data/Scripts/System/VisualFX/VisualFxFreeAim.d b/_work/data/Scripts/System/VisualFX/VisualFxFreeAim.d index cce473d..6b3e44a 100644 --- a/_work/data/Scripts/System/VisualFX/VisualFxFreeAim.d +++ b/_work/data/Scripts/System/VisualFX/VisualFxFreeAim.d @@ -1,8 +1,8 @@ /* * Projectile trail strip for increased visibility * - * G2 Free Aim v0.1.2 - Free aiming for the video game Gothic 2 by Piranha Bytes - * Copyright (C) 2016 mud-freak (@szapp) + * G2 Free Aim v1.0.0-alpha - Free aiming for the video game Gothic 2 by Piranha Bytes + * Copyright (C) 2016-2017 mud-freak (@szapp) * * This file is part of G2 Free Aim. *