Update to 0.4.6

This commit is contained in:
koenemann 2016-08-01 08:48:04 +02:00
parent 8d6881bfc1
commit 5861b31639
6 changed files with 30 additions and 24 deletions

View File

@ -20,13 +20,13 @@ UnderStrap is released under the terms of the GPL version 2 or (at your option)
http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
## Changelog
- **Pre-Release 0.4.6 **
- ** 0.4.6 Aug. 1st 2016 **
- Update to Bootstrap 4 Alpha 3
- Adding basic padding to aligned content images
- Adding author.php template with author infos
- Correct language file + german translation
- **0.4.5 Jun. 20th 2016 **
- ** 0.4.5 Jun. 20th 2016 **
- Adding right sanitizing function for customizer
- Fixing some escaping problems
- Removing "add script" customizer function
@ -35,7 +35,7 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
- Remove unused code, files and dependencies
- Adding credits for WP Bootstrap Navwalker by Edward McIntyre
- **0.4.4 Jun. 18th 2016 **
- ** 0.4.4 Jun. 18th 2016 **
- Adding the new empty.php page template. Comes just with header, footer and a content area without markup. Good for build up landingpages. An empty canvas for your Bootstrap markup.
- Update bower.json dependencies to latest versions
- Update package.json dependencies to latest versions
@ -45,7 +45,7 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
- Smaller bugfixes and code improvements
- **0.4.0 Apr. 29th 2016 **
- ** 0.4.0 Apr. 29th 2016 **
- Switching from Bootstrap 3 to Bootstrap 4
- Adding BrowserSync to gulpfile (again thx to @dvlopes)
- Preparing the navbar markup so that the current version will work with Bootstrap 3 AND 4
@ -57,12 +57,12 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
- Adding Brazilian Portuguese (pt-BR) translation (thx to @dvlopes).
- **0.3.8 Mar. 9th 2016 **
- ** 0.3.8 Mar. 9th 2016 **
- Adding footer widget area
- Adjust Bootstrap markup for searchform and search widget
- **0.3.7 Jan. 8th 2016**
- ** 0.3.7 Jan. 8th 2016**
- Cleanup for submitting to WordPress.org theme repository:
- Fixing sticky post problem
- Fixing skip-to-content link
@ -71,45 +71,45 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
- Fixing missing translation strings in comments template
- **0.3.6 Jan. 4th 2016**
- ** 0.3.6 Jan. 4th 2016**
- Cleanup
- Updating dependencies
- Upgrade to Bootstrap 3.3.6 and Font Awesome 4.5.0
- **0.3.4 SEP. 9th 2015**
- ** 0.3.4 SEP. 9th 2015**
- Adding basic WooCommerce support
- Cleanup for submitting to wordpress.org
- Removing _s SASS ... no need for basic styling. Thats Bootstrap´s job.
- **0.3.1 AUG. 12th 2015**
- ** 0.3.1 AUG. 12th 2015**
- Adding bower dependency manager and replacing GRUNT taskrunner with GULP
- **0.3.0 Mar. 23th 2015**
- ** 0.3.0 Mar. 23th 2015**
- Streamlining some code, adding extra "sticky" area (sticky posts above the main content area inside an extra loop). Fixing some child theme issues (now its really child theme ready...really...trust me...)
- **0.2.9 Mar. 10th 2015**
- ** 0.2.9 Mar. 10th 2015**
- Adding a new theme customizer option. It lets you add a code snippet right before the closing </body> tag.
For example for Google Analytics, Google Tag Mananger, Pingdom etc. Just copy and past your code to the input field and save the setting.
So you don´t have to edit the theme source file´s directly and your theme stay´s updateable
- **0.2.8 Feb. 6th 2015**
- ** 0.2.8 Feb. 6th 2015**
- Adding Grunt and Grunt SASS task
- **0.2.7 Jan. 26th 2015**
- ** 0.2.7 Jan. 26th 2015**
- Adding some basic theme option for the build-in slider script
- **0.2.6 Dec. 28th 2014**
- ** 0.2.6 Dec. 28th 2014**
- CLean up
- **0.2 Dec. 22th 2014**
- ** 0.2 Dec. 22th 2014**
- Adding Jasny Off-Canvas nav and Owl.Carousel Slider script
- Enqueue scipts and styled dynamically
- **0.1 Dec. 10th 2014 - First commit**
- ** 0.1 Dec. 10th 2014 - First commit**
## Basic Features

View File

@ -1,6 +1,6 @@
{
"name": "understrap",
"version": "0.4.5",
"version": "0.4.6",
"homepage": "http://understrap.com",
"authors": [
"Holger Koenemann <office@holgerkoenemann.de>"
@ -31,6 +31,6 @@
"tether": "~1.3.2"
},
"_source": "https://github.com/holger1411/understrap.git",
"_target": "~0.4.5",
"_target": "~0.4.6",
"_originalSource": "understrap"
}

View File

@ -6,9 +6,9 @@
*/
function understrap_scripts() {
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.4.5');
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.4.6');
wp_enqueue_script('jquery');
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.4.5', true );
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.4.6', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
@ -31,7 +31,7 @@ function understrap_slider(){
"items"=> intval( get_theme_mod( 'understrap_theme_slider_count_setting', 1 ))
);
wp_enqueue_script("understrap-slider-script", get_stylesheet_directory_uri() . '/js/slider_settings.js', array(), '0.4.5');
wp_enqueue_script("understrap-slider-script", get_stylesheet_directory_uri() . '/js/slider_settings.js', array(), '0.4.6');
wp_localize_script( "understrap-slider-script", "understrap_slider_variables", $data );
}
}

View File

@ -1,6 +1,6 @@
{
"name": "understrap",
"version": "0.4.5",
"version": "0.4.6",
"description": "Wordpress Theme framework",
"main": "index.js",
"scripts": {

View File

@ -20,7 +20,13 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
## Changelog
- ** Pre-Release 0.4.5 Jun. 20th 2016 **
- ** 0.4.6 Aug. 1st 2016 **
- Update to Bootstrap 4 Alpha 3
- Adding basic padding to aligned content images
- Adding author.php template with author infos
- Correct language file + german translation
- ** 0.4.5 Jun. 20th 2016 **
- Adding right sanitizing function for customizer
- Fixing some escaping problems
- Removing "add script" customizer function

View File

@ -7,7 +7,7 @@ Description: Combination of Automattic´s _s theme and Bootstrap 4. Made as a so
That downloads everything and move it in place so that you can recompile your CSS and JS files;
A developer version (with Gulp/node and Sass sources) is available on gitHub: https://github.com/holger1411/understrap
A child theme is available on Github, too: https://github.com/holger1411/understrap-child;
Version: 0.4.5
Version: 0.4.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap