The Special SiteSplat Membership has launched! Check our In Da Club Plan 👌
  • FLATBOOTS (phpBB3.0) Changelog
  • News, Announcements, Feedback, Improvements, Changes and Policies.
News, Announcements, Feedback, Improvements, Changes and Policies.
 #4099  by ThemeSplat
 November 13th, 2014, 4:28 pm
FLATBOOTS 1.0.7 released on May 6, 2015 Partial Changelog
FLATBOOTS maintenance update phpBB 3.0.14
BBcore Update (now using server protocol for gravatar - Be-aware gravatar ssl is much slower then regular protocol )
Update instruction here: viewtopic.php?p=6390#p6390


FLATBOOTS 1.0.6 released on Jan 28, 2015 Partial Changelog
FLATBOOTS maintenance update
-BBcore update
-phpBB 3.0.13-PL1 style changes update
Update instruction here: viewtopic.php?p=5081#p5081


FLATBOOTS 1.0.5 released on Nov 13, 2014 Partial Changelog
FLATBOOTS maintenance update
BBcore Updated: Now including a default offline board page and the fantastic Gravatar addon! (marketplace.php?mode=view&item_id=2) -The gravatar is off by default. This can be enabled via ACP > Avatar settings > Enable gravatar: YES (http://gyazo.com/17dae270c34afa70f834264d783f5ee4.png)
Bootstrap updated to 3.3.1
Jquery Cookies updated to 1.4.1
Update instruction here: viewtopic.php?p=4100#p4100
 #4100  by ThemeSplat
 November 13th, 2014, 4:32 pm
Update from 1.0.4 to 1.0.5

-Uninstall Fancy Lazy Topic Loader if previously installed
-Uninstall the BBcore
-Uninstall Gravatar Addon if previously installed ( marketplace.php?mode=view&item_id=2 )
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip" version 4.2.0)
-upload and overwrite the files contained in this folder in your root forum folder :
FLATBOOTS_update
(165.43 KiB) Downloaded 817 times
Open FLATBOOTS/template/overall_header.html Find:
Code: Select all
<div class="alert alert-info fade" id="message1">
Replace it with:
Code: Select all
<div class="alert alert-info fade" id="message1" role="alert">
Open FLATBOOTS/theme/basics.css Find:
Code: Select all
/*** modal header fix ***/
.modal-header h3 {
    border-bottom: medium none !important;
}
After add:
Code: Select all
/*** modal vertical positioning fix ***/
.modal-dialog {
  padding-top: 15%;
}
Find:
Code: Select all
.dropdown-avatar img {
    width: 30px !important;
    height: auto;
    border: 3px solid #edeff0;
    border-radius: 50%;
}

.navbar-avatar img {
    width: 100px !important;
    height: auto;
    border: 3px solid #edeff0;
    border-radius: 50%;
}
Replace it with:
Code: Select all
.dropdown-avatar img {
    width: 30px;
    height: 30px;
    border: 3px solid #edeff0;
    border-radius: 50%;
}

.navbar-avatar img {
    width: 100px;
    height: 100px;
    border: 3px solid #edeff0;
    border-radius: 50%;
}
Find:
Code: Select all
.avatar-over img {
    width: 75px;
    height: auto;
    border: 4px solid #dedede;
    border-radius: 50%;
}
Replace it with:
Code: Select all
.avatar-over img {
    width: 75px;
    height: 75px;
    border: 4px solid #dedede;
    border-radius: 50%;
}
 #5081  by ThemeSplat
 January 29th, 2015, 3:45 am
Update from 1.0.5 to 1.0.6

-Uninstall Fancy Lazy Topic Loader if previously installed
-Uninstall the BBcore
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip")
-Reinstall Fancy Lazy Topic Loader

Here we go arm yourself with notepad++ and start the update :)

Open FLATBOOTS/imageset/imageset.cfg and find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
Replace it with:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.13
Open FLATBOOTS/theme/vendors/editor.js and find:
Code: Select all
if (textEl.createTextRange)
Replace it with:
Code: Select all
if (textEl.createTextRange && document.selection)
Open FLATBOOTS/theme/vendors/forum_fn.js and find:
Code: Select all
jQuery('form input[type=text], form input[type=password]').live('keypress', function (e)
Replace it with:
Code: Select all
jQuery('form input[type=text], form input[type=password]').on('keypress', function (e)
Open FLATBOOTS/template/mcp_post.html and find:
Code: Select all
<!-- IF not S_POST_REPORTED -->
Replace it with:
Code: Select all
<!-- IF S_REPORT_CLOSED -->
Find:
Code: Select all
<!-- IF S_POST_REPORTED -->
Replace it with:
Code: Select all
<!-- IF not S_REPORT_CLOSED -->

FLATBOOTS/template/posting_smilies.html and find:
Code: Select all
// <![CDATA[
	var form_name = 'postform';
	var text_name = 'message';
// ]]>
Replace it with:
Code: Select all
	var form_name = opener.form_name;
	var text_name = opener.text_name;
Open FLATBOOTS/template/template.cfg and find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.13
Replace it with:
Code: Select all
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13
Open FLATBOOTS/template/ucp_groups_manage.html and find: (around line 63)
Code: Select all
<input type="text" name="group_colour" id="group_colour" value="{GROUP_COLOUR}" maxlength="6" placeholder="Ex:sitesplat" class="form-control"><span style="background-color: {GROUP_COLOUR};">&nbsp;&nbsp;&nbsp;</span> [ <a href="{U_SWATCH}" onclick="popup(this.href, 636, 150, '_swatch'); return false;">{L_COLOUR_SWATCH}</a> ]
Replace it with:
Code: Select all
<input type="text" name="group_colour" id="group_colour" value="{GROUP_COLOUR}" maxlength="6" placeholder="Ex:sitesplat" class="form-control"><span style="background-color: #{GROUP_COLOUR};">&nbsp;&nbsp;&nbsp;</span> [ <a href="{U_SWATCH}" onclick="popup(this.href, 636, 150, '_swatch'); return false;">{L_COLOUR_SWATCH}</a> ]

Open FLATBOOTS/template/ucp_pm_viewmessage_print.html find and delete:
Code: Select all
<meta name="keywords" content="" />
<meta name="description" content="" />

Open FLATBOOTS/template/viewtopic_print.html find and delete:
Code: Select all
<meta name="keywords" content="" />
<meta name="description" content="" />

Open FLATBOOTS/theme/theme.cfg find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
Replace it with:
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13

Open FLATBOOTS/style.cfg find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
flatboots = 1.0.5

Replace it with:
Code: Select all
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13
flatboots = 1.0.6
====== phpBB - 3.0.13-PL1 END ======


Open FLATBOOTS/template/addons/navigation.html and find:
Code: Select all
<div class="col-md-7 col-xs-5"><span>{CURRENT_USERNAME}</span>
Replace it with:
Code: Select all
<div class="col-md-7 col-xs-5"><span>{CURRENT_USERNAME_FULL}</span>

Open FLATBOOTS/template/captcha_qa.html find and delete:
Code: Select all
<img src="{CONFIRM_IMAGE_LINK}" alt="{L_CONFIRM_CODE}" />
 #6390  by ThemeSplat
 May 6th, 2015, 6:00 pm
Update from 1.0.6 to 1.0.7

-Uninstall Fancy Lazy Topic Loader if previously installed
-Uninstall the BBcore (make sure there are not errors!)
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip")
-Reinstall Fancy Lazy Topic Loader
-Clear the forum, theme and browser cache



Here we go arm yourself with notepad++ and start the update :)

Open FLATBOOTS/imageset/imageset.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14

Open FLATBOOTS/template/template.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14

Open FLATBOOTS/theme/theme.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14


Open FLATBOOTS/style.cfg and find:
Code: Select all
version = 3.0.13
flatboots = 1.0.7
Replace it with:
Code: Select all
version = 3.0.14
flatboots = 1.0.7

Locate FLATBOOTS/theme/basics.css:
Replace the whole basics.ss file with a new basics.css from a fresh download on themeforest.


Template edits:
Then the following changes to FLATBOOTS/template/viewforum_body.html and FLATBOOTS/template/viewtopic_body.html will be needed to add the new mobile pagination:
tracker.php?p=4&t=19#p74

PRENEXT_POST_NAVIGATION