PluginProbe
Code Snippets / 2.12.0
Code Snippets v2.12.0
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.0, at readme.txt

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