Skip to content

Commit

Permalink
1.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
winstliu committed Nov 24, 2015
1 parent 1873ab4 commit 4089f8e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ before_deploy:
- mv ../../materials freak_fortress_2/
- mv ../../models freak_fortress_2/
- mv ../../sound freak_fortress_2/
- zip -rqdgs 1m freak_fortress_2 freak_fortress_2
- zip --recurse-paths --quiet --display-globaldots --dot-size 1m freak_fortress_2 freak_fortress_2
- tar -czf freak_fortress_2.tar.gz freak_fortress_2
deploy:
provider: releases
Expand Down
16 changes: 11 additions & 5 deletions addons/sourcemod/scripting/freak_fortress_2.sp
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ Updated by Wliu, Chris, Lawd, and Carge after Powerlord quit FF2

#define MAJOR_REVISION "1"
#define MINOR_REVISION "10"
#define STABLE_REVISION "7"
#define STABLE_REVISION "8"
//#define DEV_REVISION "Beta"
#define BUILD_NUMBER "manual" //This gets automagically updated by Jenkins
#if !defined DEV_REVISION
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION //1.10.7
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION //1.10.8
#else
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION..." "...DEV_REVISION..." (build "...BUILD_NUMBER...")"
#endif

#define UPDATE_URL "http://ff2.50dkp.com/updater/ff2-official/update.txt"
#define UPDATE_URL "http://50dkp.github.io/FF2-Official/update.txt"

#define MAXENTITIES 2048
#define MAXSPECIALS 64
Expand Down Expand Up @@ -286,7 +286,8 @@ static const String:ff2versiontitles[][]=
"1.10.6",
"1.10.7",
"1.10.7",
"1.10.7"
"1.10.7",
"1.10.8"
};

static const String:ff2versiondates[][]=
Expand Down Expand Up @@ -357,13 +358,18 @@ static const String:ff2versiondates[][]=
"August 10, 2015", //1.10.6
"November 19, 2015", //1.10.7
"November 19, 2015", //1.10.7
"November 19, 2015" //1.10.7
"November 19, 2015", //1.10.7
"November 24, 2015" //1.10.8
};

stock FindVersionData(Handle:panel, versionIndex)
{
switch(versionIndex)
{
case 67: //1.10.8
{
DrawPanelText(panel, "1) Fixed the Powerjack and Kunai killing the boss in one hit (naydef)");
}
case 66: //1.10.7
{
DrawPanelText(panel, "1) Fixed companions always having default rage damage and lives, even if specified otherwise (Wliu from Shadow)");
Expand Down
26 changes: 3 additions & 23 deletions update.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,19 @@
{
"Version"
{
"Latest" "1.10.7"
"Previous" "1.10.6"
"Latest" "1.10.8"
"Previous" "1.10.7"
}

"Notes" "Fixed companions always having default rage damage and lives, even if specified otherwise"
"Notes" "Fixed bosses instantly losing if a boss disconnected while there were still other bosses alive"
"Notes" "Fixed minions receiving benefits intended only for normal players"
"Notes" "Minions no longer die after their summoner is killed"
"Notes" "Whitelisted the Shooting Star"
"Notes" "Removed Shortstop reload penalty"
"Notes" "Fixed large amounts of lives being cut off when being displayed"
"Notes" "Fixed the living spectator bug again"
"Notes" "Fixed healthbar not updating when goomba-ing the boss"
"Notes" "Fixed divide by 0 errors"
"Notes" "Fixed OnAlivePlayersChanged not returning the number of minions"
"Notes" "Fixed 'UTIL_SetModel not precached' crashes when using 'model_projectile_replace'"
"Notes" "ff2_crits now defaults to 0 instead of 1"
"Notes" "Fixed PDAs and sappers not being usable when given to bosses"
"Notes" "Fixed the Powerjack and Kunai killing the boss in one hit"
}

"Files"
{
"Patch"
{
"Plugin" "Path_SM/plugins/freak_fortress_2.smx"
"Plugin" "Path_SM/plugins/freaks/easter_abilities.ff2"
"Plugin" "Path_SM/plugins/freaks/ff2_1st_set_abilities.ff2"
"Plugin" "Path_SM/plugins/freaks/special_noanims.ff2"
"Source" "Path_SM/scripting/freak_fortress_2.sp"
"Source" "Path_SM/scripting/freaks/easter_abilities.sp"
"Source" "Path_SM/scripting/freaks/ff2_1st_set_abilities.sp"
"Source" "Path_SM/scripting/freaks/special_noanims.sp"
"Source" "Path_SM/scripting/include/freak_fortress_2.inc"
}

"Plugin" "Path_SM/plugins/freak_fortress_2.smx"
Expand Down

0 comments on commit 4089f8e

Please sign in to comment.