PluginProbe
Code Snippets / 2.13.2
Code Snippets v2.13.2
4.0.0-beta.2 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 All 65 releases
code-snippets / readme.txt

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

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