PluginProbe
Code Snippets / 2.12.1
Code Snippets v2.12.1
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / readme.txt

readme.txt in Code Snippets 2.12.1, at readme.txt

662 lines 31.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === Code Snippets ===
2 Contributors: bungeshea
3 Donate link: https://bungeshea.com/donate
4 Tags: code-snippets, snippets, code, php, network, multisite
5 Requires at least: 3.6
6 Tested up to: 5.0
7 Requires PHP: 5.2
8 Stable tag: 2.12.1
9 License: MIT
10 License URI: license.txt
11
12 An easy, clean and simple way to add code snippets to your site.
13
14 == Description ==
15
16 Code Snippets is an easy, clean and simple way to add code snippets to your site. It removes the need to add custom snippets to your theme theme's `functions.php` file.
17
18 A snippet is a small chunk of PHP code that you can use to extend the functionality of a WordPress-powered website; essentially a mini-plugin with less load on your site.
19 Most snippet-hosting sites tell you to add snippet code to your active theme's `functions.php` file, which can get rather long and messy after a while.
20 Code Snippets changes that by providing a GUI interface for adding snippets and **actually running them on your site** just as if they were in your theme's `functions.php` file.
21
22 Code Snippets provides graphical interface, similar to the Plugins menu, for managing snippets. Snippets can can be activated and deactivated, just like plugins. The snippet editor includes fields for a name, a visual editor-enabled description, tags to allow you to categorize snippets, and a full-featured code editor. Snippets can be exported for transfer to another side, either in JSON for later importing by the Code Snippets plugin, or in PHP for creating your own plugin or theme.
23
24 If you have any feedback, issues, or suggestions for improvements please leave a topic in the [Support Forum](http://wordpress.org/support/plugin/code-snippets), or [join the community on Facebook](https://facebook.com/groups/codesnippetsplugin).
25
26 If you like this plugin, or it is useful to you in some way, please consider reviewing it on [WordPress.org](http://wordpress.org/support/view/plugin-reviews/code-snippets).
27
28 If you'd like to contribute to the plugin's code or translate it into another language, you can [fork the plugin on GitHub](https://github.com/sheabunge/code-snippets).
29
30 = Translations =
31
32 Code Snippets can be used in these different languages thanks to the following translators:
33
34 * Belarusian - [Hrank.com](https://www.hrank.com)
35 * Brazilian Portuguese – [Bruno Borges](http://brunoborges.info)
36 * French (Canada) - [Dominic Desbiens](http://www.dominicdesbiens.com/)
37 * Indonesian - [Jordan Silaen from ChameleonJohn.com](https://www.chameleonjohn.com/)
38 * German - [Mario Siegmann](http://web-alltag.de/), [Joerg Knoerchen](http://www.sensorgrafie.de/), and [David Decker](http://deckerweb.de)
39 * Dutch - [Sander Spies](https://github.com/sander1)
40 * Slovak - [Ján Fajčák](http://wp.sk)
41 * Russian - [Alexander Samsonov](http://www.wordpressplugins.ru/administration/code-snippets.html)
42 * Chinese - [Jincheng Shan](http://shanjincheng.com)
43 * Serbo-Croatian - [Borisa Djuraskovic from Web Hosting Hub](http://www.webhostinghub.com/)
44 * Japanese - [mt8](http://mt8.biz/)
45 * French - [oWEB](http://office-web.net)
46
47 == Installation ==
48
49 = Automatic installation =
50
51 1. Log into your WordPress admin
52 2. Click __Plugins__
53 3. Click __Add New__
54 4. Search for __Code Snippets__
55 5. Click __Install Now__ under "Code Snippets"
56 6. Activate the plugin
57
58 = Manual installation =
59
60 1. Download the plugin
61 2. Extract the contents of the zip file
62 3. Upload the contents of the zip file to the `wp-content/plugins/` folder of your WordPress installation
63 4. Activate the Code Snippets plugin from 'Plugins' page.
64
65 Network Activating Code Snippets through the Network Dashboard will enable a special interface for running snippets across the entire network.
66
67 == Frequently Asked Questions ==
68
69 = How can I insert my snippet into the post text editor? =
70 Snippets that you add to this plugin are not meant to be inserted into the text editor. Instead, they are run on your site just as if they were added to your functions.php file.
71
72 = Do I need to include the <?php, <? or ?> tags in my snippet? =
73 No, just copy all the content inside those tags. If you accidentally forget (or just like being lazy), the tags will be stripped from the beginning and end of the snippet when you save it. You can, however, use those tags *inside* your snippets to start and end HTML sections
74
75 = Help! I just activated a snippet, and my whole site broke! =
76 You can try activating 'safe mode'. All snippets will not execute while safe mode is active, allowing you to access your site and deactivate the snippet that is causing the error. To activate safe mode, add the following line to your wp-config.php file, just before the line that reads `/* That's all, stop editing! Happy blogging. */`:
77
78 define('CODE_SNIPPETS_SAFE_MODE', true);
79
80 To turn safe mode off, either [comment out](http://php.net/manual/language.basic-syntax.comments.php) this line or delete it.
81
82 You can also activate safe mode on a per-page basis by appending `?snippets-safe-mode=true` to the URL.
83
84 = Is there a way to add a snippet but not run it right away? =
85 Yes. Just add it but do not activate it yet.
86
87 = Will I lose my snippets if I change the theme or upgrade WordPress? =
88 No, the snippets are stored in the WordPress database and are independent of the theme and unaffected by WordPress upgrades.
89
90 = Can the plugin be completely uninstalled? =
91 Yes, when you delete Code Snippets using the 'Plugins' menu in WordPress it will clean up the database table and a few other bits of data. Be careful not to remove Code Snippets by deleting it from the Plugins menu unless you want this to happen.
92
93 = Can I copy any snippets I've created to another WordPress site? =
94 Yes! You can individually export a single snippet using the link below the snippet name on the 'Manage Snippets' page or bulk export multiple snippets using the 'Bulk Actions' feature. Snippets can later be imported using the 'Import Snippets' page by uploading the export file.
95
96 = Can I export my snippets to PHP for a site where I'm not using the Code Snippets plugin? =
97 Yes. Click the checkboxes next to the snippets you want to export, and then choose **Export to PHP** from the Bulk Actions menu and click Apply. The generated PHP file will contain the exported snippets' code, as well as their name and description in comments.
98
99 = Can I run network-wide snippets on a multisite installation? =
100 You can run snippets across an entire multisite network by **Network Activating** Code Snippets through the Network Dashboard. You can also activate Code Snippets just on the main site, and then individually on other sites of your choice.
101
102 = Where are the snippets stored in my WordPress database? =
103 Snippets are stored in the `wp_snippets` table in the WordPress database. The table name may differ depending on what your table prefix is set to.
104
105 = I need help with Code Snippets / I have an idea for a new feature for Code Snippets =
106 You can get help with Code Snippets, report bugs or errors, and suggest new features and improvements either on the [WordPress Support Forums](https://wordpress.org/support/plugin/code-snippets) or on [GitHub](https://github.com/sheabunge/code-snippets)
107
108 = I want to contribute to and help develop the Code Snippets plugin! =
109 That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/code-snippets) and send me a pull request.
110
111 == Screenshots ==
112
113 1. Managing existing snippets
114 2. Adding a new snippet
115 3. Editing a snippet
116 4. Importing snippets from an export file
117
118 == Changelog ==
119
120 = 2.12.1 (15 Nov 2018) =
121 * Improved: CodeMirror updated to version 5.41.0
122 * Improved: Attempt to create database columns that might be missing after a table upgrade
123 * Improved: Streamlined upgrade process
124 * Fixed: Interface layout on sites using right-to-left languages
125 * Improved: Made search box appear at top of page on mobile [[#](https://wordpress.org/support/topic/small-modification-for-mobile-ux/)]
126 * Updated screenshots
127
128 = 2.12.0 (23 Sep 2018) =
129 * Fixed: Prevented hidden columns setting from reverting to default
130 * Improved: Updated import page to improve usability
131 * Improved: Added Import button next to page title on manage page
132 * Improved: Added coloured banner indicating whether a snippet is active when editing
133 * Update CodeMirror to 5.40.0
134
135 = 2.11.0 (24 Jul 2018) =
136 * Added: Ability to assign a priority to snippets, to determine the order in which they are executed
137 * Improvement: The editor cursor position will be preserved when saving a snippet
138 * Added: Pressing Ctrl/Cmd + S while writing a snippet will save it
139 * Added: Shadow opening PHP tag above the code editor
140 * Improved: Updated the message shown when there are no snippets
141 * Added: Install sample snippets when the plugin is installed
142 * Improved: Show all available tags when selecting the tag field
143 * Added: Filter hook for controlling the default list table view
144 * Added: Action for cloning snippets
145
146 = 2.10.2 (21 Jul 2018) =
147 * Added: Button to reset settings to their default values
148 * Improved: Made uninstall cleanup optional through a plugin setting
149 * Fixed: Applied formatting filters to snippet descriptions in the table
150 * Improved: Ordered tags by name in the filter dropdown menu
151 * Fixed: Incorrectly translated strings
152 * Added: Belarusian translation by Hrank.com
153 * Improved: Enabled sorting snippets table by tags
154 * Updated CodeMirror to version 5.39.0
155
156 = 2.10.1 (10 Feb 2018) =
157 * Fixed: Prevent errors when trying to export no snippets
158 * Fixed: Use wp_json_encode() to encode export data
159 * Fixed: Check both the file extension and MIME type of uploaded import files
160
161 = 2.10.0 (18 Jan 2018) =
162 * Improved: Added support for importing from multiple export files at once
163 * Improved: Unbold the titles of inactive snippets for greater visual distinction
164 * Added: New scope for single-use snippets
165 * Improved: Don't show network snippets on subsites by default, and only to super admins
166 * Improved: Export snippets to JSON instead of XML
167 * Improved: More options for importing duplicate snippets
168 * Improved: Use strings for representing scopes internally instead of numbers
169 * Added: Allowed plugin settings to be unified on multisite through Network Settings option
170 * Fixed: Issue with incorrectly treating network snippets as site-wide for code validation
171 * Improved: Rename 'Export to PHP' to 'Download', and add button to edit snippet page
172
173 = 2.9.6 (14 Jan 2018) =
174 * Added Brazilian Portuguese translation by [Bruno Borges](http://brunoborges.info)
175 * Fixed: Use standard WordPress capabilities instead of custom capabilities to prevent lockouts
176 * Fixed: Multisite issue with retrieving active shared snippets from the wrong table causing duplicate snippet execution
177 * Moved scope and other settings on single snippet page to below code area
178
179 = 2.9.5 (13 Jan 2018) =
180 * Fixed: Undefined function error when accessing the database on multisite
181 * Fixed: Ensured all admin headings are hierarchical for accessibility
182 * Made the "Activate By Default" setting enabled by default for new installs
183 * Updated CodeMirror to version 5.33
184
185 = 2.9.4 (19 Sep 2017) =
186 * Fixed: Prevented PHP error from occurring when saving a snippet
187 * Minor improvements to database creation function
188
189 = 2.9.3 (11 Sep 2017) =
190 * Fixed: Prevent snippets from being executed twice when saving due to invalid ID being passed to allow_execute_snippet filter
191 * Fixed: Re-enabled output suppression when executing snippets
192
193 = 2.9.2 (8 Sep 2017) =
194 * Fixed: Do not attempt to combine queries for fetching local and multisite snippets
195
196 = 2.9.1 (7 Sep 2017) =
197 * Fixed: Prevent illegal mix of collations errors when fetching snippets from database tables with different collations [[#](https://wordpress.org/support/topic/issue-on-multisite-with-wpml/)]
198
199 = 2.9.0 (6 Sep 2017) =
200 * Fixed: Prevented invalid properties from being set when saving a snippet
201 * Fixed: Use the correct protocol when saving a snippet
202 * Improved: Moved code to disable snippet execution into a filter hook
203 * Fixed: Active shared snippets not being updated correctly
204 * Improved: execute_active_snippets() function updated with improved efficiency
205 * Improved: Renamed Snippet class to avoid name collisions with other plugins
206 * Improved: Don't hide output when executing a snippet
207 * Updated CodeMirror to version 5.28.0
208
209 = 2.8.6 (14 May 2017) =
210 * Ensure that get_snippets() function retrieves snippets with the correct 'network' setting. Fixes snippet edit links in network admin.
211 * Fix snippet description field alias not mapping correctly
212
213 = 2.8.5 (13 May 2017) =
214 * Ensured HTML in snippet titles is escaped in snippets table
215 * Added Indonesian translation by Jordan Silaen from ChameleonJohn.com
216 * Disallowed undefined fields to be set on the Snippets class
217 * Prevented shared network snippets from being included twice in snippets table on multisite
218 * Added setting to hide network snippets on subsites
219
220 = 2.8.4 (29 April 2017) =
221 * Fixed all snippets being treated as network snippets on non-multisite sites
222
223 = 2.8.3 (29 April 2017) =
224 * Updated CodeMirror to version 5.25.0
225 * Show network active snippets as read-only on multisite subsites
226 * Added more compete output escaping to prevent XSS errors
227
228 = 2.8.2 (27 Feb 2017) =
229 * Fix bug introduced in 2.8.1 that broke code verification functionality by executing code twice
230
231 = 2.8.1 (25 Feb 2017) =
232 * Updated German translation
233 * Fixed admin menu items not translating
234 * Removed possible conflict between Debug Bar Console plugin ([#](https://github.com/sheabunge/code-snippets/issues/52))
235 * Corrected editor alignment on RTL sites ([#](https://wordpress.org/support/topic/suggestion-css-fix-for-rtl-sites/))
236 * Fixed bulk actions running when Filter button is clicked ([#](https://wordpress.org/support/topic/bug-with-filtering-action-buttons/))
237 * Updated CodeMirror to version 5.24.0
238
239 = 2.8.0 (14 Dec 2016) =
240 * Fixed Italian translation errors. Props to @arsenalemusica
241 * Renamed 'Manage' admin menu label to 'All Snippets' to keep in line with other admin menu labels
242 * Renamed placeholder on snippet name field to 'Enter title here'
243 * Removed CodeMirror search functionality
244 * Moved 'Edit Snippet' admin menu above 'Add New' menu
245 * Made pressing Ctrl-Enter in the code editor save the snippet
246 * Updated CodeMirror to version 5.21.0
247
248 = 2.7.3 (24 Oct 2016) =
249 * Updated CodeMirror to version 5.10.0
250 * Fixed a few strings not being translated
251
252 = 2.7.2 (1 Oct 2016) =
253 * Updated German translation by [Mario Siegmann](http://web-alltag.de)
254
255 = 2.7.1 (30 Sep 2016) =
256 * Added Dutch translation by Sander Spies
257 * Ensured that the editor theme setting is properly validated. Thanks to [Netsparker](https://www.netsparker.com) for reporting.
258 * Ensured that snippet tags are properly escaped. Thanks to [Netsparker](https://www.netsparker.com) for reporting.
259 * Updated CodeMirror to version 5.19.0
260
261 = 2.7.0 (23 July 2016) =
262 * Fixed plugin translations being loaded
263 * Increase default snippets per page so that all are usually shown
264 * Fixed description field not being imported
265 * Updated German translation by [Mario Siegmann](http://web-alltag.de)
266 * Fixed issue with CodeMirror rubyblue theme [[#](https://wordpress.org/support/topic/a-problem-with-the-cursor-color-and-the-fix-that-worked-for-me)]
267 * Added query var to disable snippet execution. To use, add `?snippets-safe-mode=true` to the URL
268 * Fixed snippet fields not importing
269 * Updated CodeMirror to version 5.17.0
270 * Fixed a minor XSS vulnerability discovered by Burak Kelebek [[#](https://wordpress.org/support/topic/security-vulnerability-20)]
271
272 = 2.6.1 (10 Feb 2016) =
273 * Updated German translation by [Mario Siegmann](http://web-alltag.de)
274 * Fixed error catching not working correctly
275 * Updated error catching to work with snippets including functions and classes
276 * Fixed editor autoresizing
277
278 = 2.6.0 (31 Dec 2015) =
279 * Reconfigured plugin to use classloader and converted a lot of functional code into OOP code
280 * Updated CodeMirror to version 5.10.0
281 * Added `[code_snippets]` shortcode for embedding snippet code in a post
282 * Fixed broken snippet search feature [[#](https://wordpress.org/support/topic/search-is-not-working-6)]
283 * Added front-end syntax highlighting for shortcode using [PrismJS](http://prismjs.com)
284
285 = 2.5.1 (11 Oct 2016) =
286 * Fixed: Ensure errors are fatal before catching them during error checking
287 * Fixed: Escape the snippet name on the edit page to ensure it displays correctly
288 * Fixed: Exclude snippets with named functions from error checking so they do not run twice
289
290 = 2.5.0 (8 Oct 2015) =
291 * Added: Detect parse and fatal errors in code when saving a snippet, and display a user-friendly message
292 * Fixed: Updated access of some methods in Code_Snippets_List_Table class to match updated WP_List_Table class
293
294 = 2.4.2 (27 Sep 2015) =
295 * Added query variable to activate safe mode
296 * Fixed settings not saving
297 * Fixed snippet descriptions not displaying on manage menu
298 * Added settings to disable description and tag editors
299 * Fixed: Load CodeMirror after plugin styles to fix error with Zenburn theme
300 * Fixed: Hide snippet scope icons when the scope selector is disabled
301 * Fixed description heading on edt snippet menu being hidden when visual editor disabled
302 * Updated editor preview updating code to use vanilla JavaScript instead of jQuery
303 * Fixed: Deactivate a shared network snippet on all subsites when it looses its sharing status
304
305 = 2.4.1 (17 Sep 2015) =
306 * Fixed CodeMirror themes not being detected on settings page [[#](https://wordpress.org/support/topic/updated-to-240-now-i-cant-switch-theme)]
307
308 = 2.4.0 (17 Sep 2015) =
309 * Added ability to share network snippets to individual sites on WordPress multisite
310 * Improved code directory and class structure
311 * Remove legacy code for pre-3.6 compatibility
312 * Improved code for printing admin messages
313 * Updated German translation (Joerg Knoerchen)
314 * Added `code_snippets/after_execute_snippet` filter
315 * Added class for individual snippets
316 * Updated `get_snippets()` function to retrieve individual snippets
317 * Removed scope statuses and added fixed tags to indicate scope
318 * Changed admin page headers to use `<h1>` tags instead of `<h2>` tags
319 * Updated CodeMirror to version 5.6
320 * Removed snippet settings page from network admin
321
322 = 2.3.0 (20 May 2015) =
323 * Removed nested functions
324 * Added icons for admin and front-end snippets to manage table
325 * Improved settings retrieval by caching settings
326 * Updated Russian translation by [Alexey Chumakov](http://chumakov.ru/)
327 * Added filter switch to prevent a snippet from executing ([#25](https://github.com/sheabunge/code-snippets/issues/25))
328 * Fixed errors in string translation
329 * Fixed bug in import process ([#32](https://github.com/sheabunge/code-snippets/issues/32))
330
331 = 2.2.3 (13 May 2015) =
332 * Fixed broken call to `export_snippet()` function
333 * Added support for importing and exporting snippet scope
334 * Fixed duplicate primary key database error
335 * Improved database table structure
336
337 = 2.2.2 (11 May 2015) =
338 * Polyfilled array_replace_recursive() function for PHP 5.2
339 * Updated references to old plugin site
340 * Resolved JavaScript error on edit snippet pages
341 * Made minor updates to French translation file
342 * Added statuses for snippet scopes on manage snippets table
343
344 = 2.2.1 (10 May 2015) =
345 * Fixed the default values of new setting not being applied
346 * Fixed missing background of tags input
347
348 = 2.2.0 (10 May 2015) =
349 * Introduced CodeSniffer testing on code
350 * Fixed description heading disappearing when media buttons enabled
351 * Added snippet scope selector
352 * Minified all CSS and JS in plugin
353 * Made CodeMirror theme names more readable
354 * Fixed bug causing translations to not be loaded
355
356 = 2.1.0 (09 May 2015) =
357 * Added additional setting descriptions
358 * Added settings for code and description editor height
359 * Updated CodeMirror to version 5.2
360 * Fixed not escaping the request URL when using query arg functions
361 * Improved efficiency of settings component
362
363 = 2.0.3 (17 Mar 2015) =
364 * Updated German translation by [Joerg Knoerchen](http://www.sensorgrafie.de/)
365
366 = 2.0.2 (05 Mar 2015) =
367 * Fix error in table creation code
368 * Remove settings database option when plugin is uninstalled
369
370 = 2.0.1 (25 Feb 2015) =
371 * Fixed table creation code not running on upgrade
372 * Fixed snippets per page option not saving
373
374 = 2.0 (24 Feb 2015) =
375 * __Highlights:__
376 * Better import/export functionality
377 * New settings page with code editor settings
378 * Code rewritten for cleaner and more efficient code
379 * Lots of new translations
380 * __Added:__
381 * Added link to Code Snippets importer under Snippets admin menu
382 * Added settings component and admin page
383 * Added support for different CodeMirror themes
384 * Integrated tags component into main plugin. Current users of the Code Snippets Tags plugin can safely uninstall it.
385 * Added Auto Close Brackets CodeMirror addon (props to TronicLabs)
386 * Added Serbo-Croatian translation by Borisa Djuraskovic from [Web Hosting Hub](http://www.webhostinghub.com)
387 * Added Highlight Selection Matches CodeMirror addon (props to TronicLabs)
388 * Added Chinese translation thanks to Jincheng Shan
389 * Added Russian translation by Alexander Samsonov
390 * Added Slovak translation by [Ján Fajčák] from [WordPress Slovakia](http://wp.sk)
391 * Added setting to always save and activate snippets by default
392 * __Changed:__
393 * Added braces to single-line conditionals in line with [new coding standards](https://make.wordpress.org/core/2013/11/13/proposed-coding-standards-change-always-require-braces/)
394 * Split up large classes into separate functions
395 * Improved plugin file structure
396 * Replaced uninstall hook with single file method
397 * Updated CodeMirror library to version 5.0
398 * Rewritten import/export functionality to use DOMDocument
399 * Merged Code_Snippets_Export_PHP class into Code_Snippets_Export class
400 * __Deprecated:__
401 * Removed old admin style support
402 * Removed backwards-compatible support
403 * __Fixed:__
404 * Fixed incompatibility errors with PHP 5.2
405 * Fixed empty MO translation files
406 * Removed duplicate MySQL primary key indexing
407
408 = 1.9.1.1 (3 Jan 2014) =
409 * Add capability check to site snippets importer
410
411 = 1.9.1 (2 Jan 2014) =
412 * Use an icon font for menu icon instead of embedded SVG
413 * Use Sass (libsass) instead of Compass
414 * Unminify CodeMirror scripts
415 * Fixes for the WP 3.8 interface
416 * Fix 'enable snippets menu for site admins' multisite setting
417
418 = 1.9 (11 Nov 2013) =
419 * Add and remove network capabilities as super admins are added and removed
420 * Updated MP6 icon implementation
421 * Replaced buggy trim `<?php` and `?>` functionality with a much more reliable regex method ([#](http://wordpress.org/support/topic/character-gets-cut))
422 * Added French translation thanks to translator [oWEB](http://office-web.net)
423 * Fixed snippet failing to save when code contains `%` character, props to [nikan06](http://wordpress.org/support/profile/nikan06) ([#](http://wordpress.org/support/topic/percent-sign-bug))
424 * Added 'Save & Deactivate' button to the edit snippet page ([#](http://wordpress.org/support/topic/deactivate-button-in-edit-snippet-page))
425 * Removed edit and install capabilities (now only uses the manage capability)
426 * Fixed HTML breaking in export files ([#](http://wordpress.org/support/topic/import-problem-7))
427 * Make the title of each snippet on the manage page a clickable link to edit the snippet ([#](http://wordpress.org/support/topic/deactivate-button-in-edit-snippet-page?replies=9#post-4682757))
428 * Added nonce to edit snippet page
429 * Hide row actions on manage snippet page by default
430 * Removed screenshots from plugin
431 * Improved CodeMirror implementation
432 * Added a fallback MP6 icon
433 * Use the proper WordPress database APIs all of the time
434 * Rewritten export functionality
435 * Fixed incorrect export filename
436 * Updated CodeMirror to version 3.19
437 * Removed CodeMirror bundled with plugin
438 * Updated WordPress.org plugin banner
439 * Fixed CodeMirror incompatibility with the WP Editor plugin
440 * Fixed CodeMirror incompatibility with the Debug Bar Console plugin
441
442 = 1.8.1.1 (18 Aug 2013) =
443
444 = 1.8.1 (29 July 2013) =
445 * Compiled all CodeMirror scripts into a single file
446 * Use Sass + Compass for CSS
447 * Use Grunt for build automation
448 * Minify CSS
449 * Fixed code typo that was breaking export files
450 * Updated CodeMirror to 3.15
451
452 = 1.8 (9 July 2013) =
453 * Allow no snippet name or code to be set
454 * Prevented an error on fresh multisite installations
455 * Refactored code to use best practices
456 * Improved database table creation method: on a single-site install, the snippets table will always be created. On a multisite install, the network snippets table will always be created; the site-specific table will always be created for the main site; for sub-sites the snippets table will only be created on a visit to a snippets admin page.
457 * Updated to CodeMirror 3.14
458 * Changes to filter and action hook API
459 * Added error message handling for import snippets page
460 * Don't encode HTML entities in database
461
462 = 1.7.1.2 (3 May 2013) =
463 * Correct path to admin menu icon. Fixes [#8](https://github.com/sheabunge/code-snippets/issues/8)
464
465 = 1.7.1.1 (29 April 2013) =
466 * Fixed a bug with custom capabilities and admin menus
467
468 = 1.7.1 (22 April 2013) =
469 * Fix a bug with snippet being set as deactivated when saved
470 * Updated PHP Documentation completely. [[View online](http://bungeshea.github.io/code-snippets/api)]
471 * Only load admin functions when viewing dashboard
472 * Added German translation thanks to [David Decker](http://deckerweb.de)
473 * Allow or deny site administrators access to snippet admin menus. Set your preference in the **Enable Administration Menus** setting under the *Settings > Network Settings* network admin menu.
474 * Improve database table creation and upgrade process
475 * Optimized to use less database queries
476
477 = 1.7 (26 Mar 2013) =
478 * Improved plugin API
479 * Fixed a bug with saving snippets per page option ([#](http://wordpress.org/support/topic/plugin-code-snippets-snippets-per-page-does-not-work#post-3710991))
480 * Updated CodeMirror to version 3.11
481 * Allow plugin to be activated on individual sites on multisite ([#](http://wordpress.org/support/topic/dont-work-at-multisite))
482 * Slimmed down the description visual editor
483 * Added icon for the new MP6 admin UI ([#](http://wordpress.org/support/topic/icon-disappears-with-mp6))
484 * Strip PHP tags from the beginning and end of a snippet on save ([#](http://wordpress.org/support/topic/php-tags))
485 * Changed to [MIT license](http://opensource.org/licenses/mit-license.php)
486 * Removed HTML, CSS and JavaScript CodeMirror modes that were messing things up
487 * Change label in admin menu when editing a snippet
488 * Improved admin styling
489 * Made everything leaner, faster, and better
490
491 = 1.6.1 (29 Dec 2012) =
492 * Fixed a bug with permissions not being applied on install ([#](http://wordpress.org/support/topic/permissions-problem-after-install))
493 * Fixed a bug in the uninstall method ([#](http://wordpress.org/support/topic/bug-in-delete-script))
494
495 = 1.6 (22 Dec 2012) =
496 * Updated code editor to use CodeMirror 3
497 * Improved compatibility with Clean Options plugin
498 * Code improvements and optimization
499 * Changed namespace from `cs` to `code_snippets`
500 * Move css and js under assets
501 * Organized CodeMirror scripts
502 * Improved updating process
503 * Current line of code editor is now highlighted
504 * Highlight matches of selected text in code editor
505 * Only create snippet tables when needed
506 * Store multisite only options in site options table
507 * Fixed compatibility bugs with WordPress 3.5
508
509 = 1.5 (18 Sep 2012) =
510 * Updated CodeMirror to version 2.33
511 * Updated the 'Manage Snippets' page to use the WP_List_Table class
512 * Added 'Screen Options' tab to 'Manage Snippets' page
513 * Added search capability to 'Manage Snippets' page
514 * Added views to easily filter activated, deactivated and recently activated snippets
515 * Added ID column to 'Manage Snippets' page
516 * Added sortable name and ID column on 'Manage Snippets' page ([#](http://wordpress.org/support/topic/plugin-code-snippets-suggestion-sort-by-snippet-name))
517 * Added custom capabilities
518 * Improved API
519 * Added 'Export to PHP' feature ([#](http://wordpress.org/support/topic/plugin-code-snippets-suggestion-bulk-export-to-php))
520 * Lengthened snippet name field to 64 characters ([#](http://wordpress.org/support/topic/plugin-code-snippets-snippet-title-limited-to-36-characters))
521 * Added i18n
522
523 = 1.4 (20 Aug 2012) =
524 * Added interface to Network Dashboard
525 * Updated uninstall to support multisite
526 * Replaced EditArea with [CodeMirror](http://codemirror.net)
527 * Small improvements
528
529 = 1.3.2 (17 Aug 2012) =
530 * Fixed a bug with version 1.3.1
531
532 = 1.3.1 (17 Aug 2012) =
533 * Changed plugin website URI
534 * Cleaned up some code
535
536 = 1.3 (1 Aug 2012) =
537 * Added export option to 'Manage Snippets' page
538 * Added 'Import Snippets' page
539
540 = 1.2 (29 July 2012) =
541 * Minor improvements
542 * Added code highlighting
543 * Removed 'Uninstall Plugin' page
544 * Data will now be cleaned up when plugin is deleted through WordPress admin
545
546 = 1.1 (24 June 2012) =
547 * Fixed a permissions bug with `DISALLOW_FILE_EDIT` being set to true ([#](http://wordpress.org/support/topic/plugin-code-snippets-cant-add-new))
548 * Fixed a bug with the page title reading 'Add New Snippet' on the 'Edit Snippets' page
549 * Fixed a bug not allowing the plugin to be Network Activated ([#](http://wordpress.org/support/topic/plugin-code-snippets-network-activate-does-not-create-snippets-tables))
550
551 = 1.0 (13 June 2012) =
552 * Stable version released.
553
554 == Upgrade Notice ==
555
556 = 2.11.0 =
557 Snippet priorities and other small features
558
559 = 2.10.0 =
560 Improvements for multisite and new single-use snippet scope
561
562 = 2.9.5 =
563 Fixed issue with saving snippets on multisite
564
565 = 2.8.5 =
566 Prevents snippets from displaying twice in snippets table on multisite
567
568 = 2.8.4 =
569 Fixes error with previous version on non-multisite
570
571 = 2.8.3 =
572 Fixes potential security exploit; please update immediately
573
574 = 2.8.2 =
575 Fixed fatal error preventing activated snippets from saving
576
577 = 2.8.0 =
578 Interface tweaks
579
580 = 2.7.2 =
581 Update to German translation by Mario Siegmann
582
583 = 2.7.0 =
584 Fix translation loading and description importing
585
586 = 2.5.1 =
587 Prevent Don't Panic message from being triggered accidentally
588
589 = 2.5.0 =
590 Now detects errors in snippet code when saving
591
592 = 2.4.1 =
593 Fixed CodeMirror themes not being detected on settings page
594
595 = 2.4.0 =
596 New snippet sharing feature for multisite networks; new Snippet class
597
598 = 2.3.0 =
599 Numerous fixes and Russian translation update. Props to @signo and @achumakov.
600
601 = 2.2.3 =
602 Fixed error when exporting; snippet scopes can now be imported
603
604 = 2.2.2 =
605 Fix error with PHP 5.2 added statuses for scopes to manage snippets table
606
607 = 2.2.1 =
608 New snippet scope feature; fixed bug with translations not loading; minified all css and js
609
610 = 2.1.0 =
611 Minor improvements to settings component; added description editor settings; minor security fixes
612
613 = 2.0.2 =
614 Fix snippets not saving
615
616 = 2.0 =
617 Improved import/export; new settings page; improved core code; more translations
618
619 = 1.9.1.1 =
620 Add capability check to snippets importer
621
622 = 1.9.1 =
623 UI improvements for WordPress 3.8
624
625 = 1.8.1 =
626 Minimize CSS and JS; updated CodeMirror; fixed export files
627
628 = 1.8 =
629 Setting a snippet name and code are now optional; better table creation method; changes to API; bug fixes
630
631 = 1.7.1.2 =
632 Fixes the admin menu icon not loading
633
634 = 1.7.1.1 =
635 Fixes a minor bug with custom capabilities and admin menus
636
637 = 1.7.1 =
638 Added German translation thanks to David Decker; bug fixes and improvements
639
640 = 1.7 =
641 Many improvements and optimization. Download "Code Snippets Tags" plugin to add tags to snippets
642
643 = 1.6 =
644 Improvements and optimization with WordPress 3.5
645
646 = 1.5 =
647 Improvements on the 'Manage Snippets' page and localization
648
649 = 1.4 =
650 Better code highlighting and improved multisite support
651
652 = 1.3 =
653 Added import/export feature
654
655 = 1.2 =
656 Minor improvements |
657 Added code highlighting |
658 Plugin data will now be cleaned up when you delete the plugin.
659
660 = 1.1 =
661 Minor bug fixes and improvements on the the 'Edit Snippet' page
662