-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
executable file
·333 lines (193 loc) · 11.4 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
== Change Log ==
= .87 = 06/04/2012
**Release Highlights:**
1. Switched to using the Less files instead of CSS
2. Improved navigation submenu dropdown implementation with custom Walker
3. Updated styles and scripts to Bootstrap 2.04 release
4. Switched to using bootstrap.js file instead of the separate .js files
__Functions.php__
* Edited `bootstrapwp_css_loader()` function to use new `/less/bootstrapwp.css` generated from Less file compilation and removed references to previously used css files
* Edited `bootstrapwp_js_loader()` function to include minified and minified bootstrap.min.js file
* Edited `bootstrapwp_js_loader()` function to include `/js/bootstrapwp.demo.js` file containing all the extra JavaScript needed to enable the functionality of demos
* Added new walker `Bootstrap_Walker_Nav_Menu` class to assign "dropdown-menu" class to navigation sub-menus
__Style.css__
* Removed content because it this file is not loaded via `bootstrapwp_css_loader()`
* Added note to add custom updates to the less/bswp-custom.less file to safely retain the ability to update the less files with future versions of Bootstrap or BootstrapWP
* Bumped version to .87
__Header.php__
* Edited `wp_nav_menu()` call array to add `walker => new bootstrapwp_walker_nav_menu()` parameter
* Removed extraneous commented line from `wp_nav_menu()` function call
__Footer.php__
* Removed all Javascript and moved to new `js/bootstrapwp.demo.js` file
__Page-home.php__
* Created file to be static homepage template that loads 3 widget areas (previously was index.php)
__Index.php__
* Edited file to be standard blog homepage - and moved previous template content to new `page-home.php` file
__JS Folder__
* Removed the individual .js files and replaced with single compiled `bootstrap.min.js` file
* Added `bootstrap.js` (pre-minified version of bootstrap.min.js) file for reference
* Added `bootstrapwp.demo.js` file which houses code is used to power all the JavaScript demos and examples for BootstrapWP
* Added folder for google-code-prettify js and css files to style reference and documentation template files.
__CSS Folder__
* Removed folder entirely because main style file is compiled less file located at `less/bootstrapwp.css`
__LESS Folder__
* Updated LESS files from Twitter Bootstrap 2.04 branch
* Added `bswp-docs.less` file to pull in styles to allow doc pages to format correctly
* Added note to use `bswp-custom.less` file for any custom additions to allow for easy updating of styles.
* Added style fix for top positioning of scrollspy submenu to `less/bswp-overrides.less`
__IMG Folder__
* Updated glyph icons with new set included in Bootstrap 2.04
= .86 = 04/11/2012
The major changes are:
1. Removed the buggy catch_that_image function that was displaying thumbnails for posts, and replacing it with the new `bootstrapwp_autoset_featured_image()` function that will automatically set the post thumbnail.
2. Fixed navbar on mobile devices where body padding was causing the navbar to drop below the the top of the window.
3. Revised order of stylesheets loading
4. Corrected the broken favicon links
__Bootstrap Styles and Scripts__
* Updated JS files from Bootstrap 2.0.3 branch as of April 7, 2012
* Updated CSS files from Bootstrap 2.0.3 branch as of April 11, 2012
* Updated LESS files from Bootstrap 2.0.3 branch as of April 7, 2012
__Functions.php__
* Added `bootstrapwp_autoset_featured_image()` function to replace previous `catch_that_image()` function that was causing issues for some theme users. The post thumbnail will now automatically be set to the first image added to a post if a featured image was not manually declared.
* Edited `bootstrapwp_css_loader()` to move `/css/bootstrap-responsive.css` down in the loading order
__Page-blog.php__
* Replaced `catch_that_image()` function with `the_post_thumbnail()`
__Author.php__
* Replaced `catch_that_image()` function with `the_post_thumbnail()`
__Archive.php__
* Replaced `catch_that_image()` function with `the_post_thumbnail()`
__Header.php__
* Added `<?php bloginfo( 'template_url' );?>` to favicon link
* Removed `get_header()` call at top of file
__Style.css__
* Added `@media (max-width: 979px) { body { padding-top: 0; }` to correct navbar on mobile devices
* Updated `.sub-menu` style to match `.dropdown-menu` from the Twitter Bootstrap styles to fix max-width restriction on navigation dropdown items
__Page-JSGuide.php__
* Added content from Bootstrap 2.0.3 files
* Added note about using the JS files within a WordPress theme
__Page-Styleguide.php__
* Added content from Bootstrap 2.0.3 files
__Misc.__
* Fixed JavaScript guide link in Readme thanks to @fsimmons
* Updated favicons and moved them to /ico/ folder
* Adding new screenshot image thanks to @yourdesigncoza
= .85 = 03/04/2012
__Bootstrap Styles and Scripts__
* Updated JS files from Bootstrap 2.0.2 branch as of March 4, 2012
* Updated CSS files from Bootstrap 2.0.2 branch as of March 4, 2012
* Updated LESS files from Bootstrap 2.0.2 branch as of March 4, 2012
__Functions.php__
* Added widget area for footer-content
* Fixed content_width size, now 770px
* Added theme language text domain
* Added after_theme_setup hook to enable post formats
* Removed .css and .js from string names of enqueuing script and style functions
__Style.css__
* Added .wp-caption and .wp-caption-text style for image captions
* Added .gallery-caption style for image gallery captions
* Added .bypostauthor style for comments
* Added .sticky style for sticky posts
__Archive.php__
* Added `<div <?php post_class(); ?>>` to enable sticky posts
* Fixed Archive titles and filtering
__Author.php__
* Added `<div <?php post_class(); ?>>` to enable sticky posts
__Footer.php__
* Added widget code for footer content widget
* Fixed jQuery dropdown caret function to only apply the top navigation bar
__Index.php__
* Added WordPress loop to template so page editor can be used to easily update/add content to top section of index.php
__Page-Blog.php__
* Added `<div <?php post_class(); ?>>` to enable sticky posts
__Page-JSGuide.php__
* Added content from Bootstrap 2.0.2 files
* Removed duplicated jQuery function
__Page-Styleguide.php__
* Added content from Bootstrap 2.0.2 files
__Misc.__
* Added /lang folder with language files
* Removed image.php template file
= .8 = 2/12/2012
----
__Header.php__
* Changed title to <title><?php wp_title(''); ?></title> to allow for better integration with WordPress SEO plugin
* Added body data attributes: data-spy="scroll" data-target=".subnav" data-offset="50" data-rendering="true"
* Changed navbar class to Bootstrap default of "navbar-fixed-top"
* Updated wp_nav_menu function array, added "'container' => 'div', 'container_class' => 'nav-collapse'," to provide div wrapper with proper class
__Functions.php__
* Improved file structure and comments
* Added bootstrap-responsive.css to bootstrapwp_css_loader function
* Added application.js to bootstrapwp_js_loader function and removed tablesorter.js
* Revised pagination section to use ul class="pager" instead of div id="pagination"
* Revised sidebars to use div element as widget wrapper instead of aside element
* Changed widget titles to h4 instead of h3 elements
* Added catch_that_image function to grab the first image in blog posts
* Added support for post-thumbnails and added image sizes for Boostrap image thumbnails
__Page-JSGuide.php__
* Updated Javascript Guide Template to match content from Bootstrap javascript.html file
__Footer.php__
* Removed jQuery onload functions that are now all called in application.js
* Added jQuery append function to automatically apply b class="caret" to dropdown menu items in navbar
__Style.css__
* Updated icon image location to match theme setup
* Added .icon-white class with corrected image location
* Removed over-ride of body padding to allow correct spacing with fixed navbar
* Added styles for comment form
* Added color primary button colors for comment and search submit buttons
* Added styling for sidebars and sidebar list items
* Added .meta class for blog post meta information
__Single.php___
* Edited content on index.php template to directly correlate with index.html Bootstrap file
* Added bootstrapwp_posted_on function under post title
__Page-simple.php__
* Created template for a simple page with right sidebar, no breadcrumbs or subhead masthead.
__Page-blog.php__
* Created template for a main blog page with right sidebar.
* Added paging to blog template
* Displayed first image attached to blog posts using catch_that_image function
__Author.php__
* Fixed formatting on this template file to match archive.php
* Added hr element to seperate posts
* Displayed first image attached to blog posts using catch_that_image function
__Archive.php__
* Added hr element to seperate archive post listings
* Displayed first image attached to blog posts using catch_that_image function
__Other/Misc.__
* Updated CSS and JS files to Bootstrap 2 Final Release files
* Removed "lib" folder and replaced with Bootstrap "less" folder
* Removed tablesorter.js file - as it is no longer used in Bootstrap 2.0
* Removed wordpress.css file - as it is no longer used in Bootstrap 2.0
* Updated screenshot.png file
* Removed image.php template file
= .7 = January 22, 2012
* Updated JS and CSS/LESS files from Twitter Bootstrap 2.0 WIP files (up to date as of January 20, 2012)
* Moved all CSS and JS files to their respective /css and /js folders
* The LESS files still exist in the /lib folder, but the bootstrap.css file is in the /css folder
* Replaced bootstrap-twipsy.js file with NEW bootstrap-tooltip.js file
* Modified enqueue_style order, and added style.css to the function to ensure it would be loaded last.
* Moved all Bootstrap documentation styles to their own docs.css file, and reserved styles.css for WordPress related modifications
* Created template for Javascript Demo page, needed onload scripts for Demo page were added in footer.php
* Moved Style Guide to it's own template file
* Moved Assets folder to root of theme folder with images folder
* Any added custom styles can now be found in style.css file
* Added custom jQuery to footer.php to allow the WordPress custom menus to work with the Bootstrap dropdown styles/js files.
* Removed Custom Walker Class from navigation menu. It is not needed, with jQuery adding the needed class changes instead.
* Added image alignments (.alignleft, .alignright, .aligncenter) styles to styles.css
* Added styles to 404.php template file
* Added styles to search.php template file
* Added search form styles to style.css file
* Added $content_width declaration to functions.php
= .6 - December 24 2011 =
* Corrected callback function name in comments template
* Added comments template to single.php
* Modified top nav bar to have relative positioning to allow better viewing along with the WordPress Admin bar
* Moved breadcrumbs above page titles
* Fixed formatting on archive pages
* Fixed subnav drop-downs with customWalkerclass and css
* Moved bootstrap.css to the lib directory
* Created new LESS file wordpress.css for all Bootstrap style modificiations and WordPress specific styles
* Updated all Bootstrap LESS style files and JS script files for improved responsiveness and style tweaks
* Added pagination to bottom of single.php
* Created function to customize link for the_excerpt
* Removed extra /div from full-width template
* Bug fix: replaced get_bloginfo(url) in functions.php with home_url() function call