Cristi Burcă

Results 30 issues of Cristi Burcă

The `satis build` command does a couple of things: 1. Scans repositories for new versions. 2. Generates a `packages.json` file. 3. Generates an `index.html` file. When tweaking the Twig template...

nice-to-have
feature

On the http://www.hsluv.org/ homepage, there's an interactive color "wheel". The outer circle presumably represents maximum saturation in the HSL colour space, but I have no idea what the smaller circle...

[fbprophet](https://pypi.org/project/fbprophet/) version: 0.7.1 [prophet](https://pypi.org/project/prophet/) version: 1.0.1

It's already possible to display connections for each post in the admin list table; it would be useful to add/remove those connections too. UI possibilities: A. Box for each connection...

`each_connected()` is confusing because it doesn't return anything; instead, it produces side-effects on the $wp_query object. It would be better if it returned something which the user could explicitly manipulate....

See https://github.com/scribu/wp-scb-framework/pull/47

It would be useful to have the connection metabox show up when editing a user in wp-admin, not just when editing posts. http://wordpress.org/support/topic/user-meta-boxes

metabox

``` register_post_type( 'movie', array( 'label' => 'Movies', 'public' => true ) ); ``` is transformed into: ``` php register_post_type( 'movie', array( 'label' => 'Movies', 'public' => true ) ); ```...

Currently, when the user un-checks the "Enable the WYSIWYG editor" setting, you get a basic textarea, with no controls at all. See http://wordpress.org/support/topic/adding-quicktags-when-editing-instead-of-wysiwyg-editor

feature

WordPress 3.5 has a completey revamped media handling interface, but FEE still uses the old Thickbox UI. This post should be useful in making the change: http://mikejolley.com/2012/12/using-the-new-wordpress-3-5-media-uploader-in-plugins/

enhancement