Plugin Directory

Changeset 3356897


Ignore:
Timestamp:
09/05/2025 08:49:41 PM (3 months ago)
Author:
boonebgorges
Message:

Create tag 5.9.3.

Location:
pressforward
Files:
18 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pressforward/tags/5.9.3/Core/Bookmarklet/NominateThisCore.php

    r3207176 r3356897  
    697697     */
    698698    public function register_nomination_success_panel() {
     699        $base_cap = get_option(
     700            'pf_menu_nominate_this_access',
     701            pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     702        );
     703
    699704        add_submenu_page(
    700705            '',
    701706            __( 'Nomination Success', 'pressforward' ),
    702707            __( 'Nomination Success', 'pressforward' ),
    703             'edit_posts',
     708            $base_cap,
    704709            'pf-nomination-success',
    705710            [ $this, 'nomination_success_panel' ]
  • pressforward/tags/5.9.3/Core/Schema/Feeds.php

    r3330426 r3356897  
    432432        }
    433433
    434         if ( ! current_user_can( 'edit_page', $post_id ) ) {
     434        if ( ! current_user_can( 'edit_post', $post_id ) ) {
    435435            return false;
    436436        }
  • pressforward/tags/5.9.3/Core/Schema/Nominations.php

    r3017244 r3356897  
    5959                'hook'   => 'manage_edit-nomination_sortable_columns',
    6060                'method' => 'nomination_sortable_columns',
     61            ),
     62            array(
     63                'hook'   => 'user_has_cap',
     64                'method' => 'add_assign_post_tags_cap',
     65                'args'   => 4,
    6166            ),
    6267        );
     
    8893            'show_ui'              => true,
    8994            // But not the default UI, we want to attach it to the plugin menu.
    90             'show_in_menu'         => false,
     95            'show_in_menu'         => 'pf-menu',
    9196            'show_in_rest'         => true,
    9297            // Linking in the metabox building function.
    9398            'register_meta_box_cb' => array( $this, 'nominations_meta_boxes' ),
    94             'capability_type'      => 'post',
    9599            // The type of input (besides the metaboxes) that it supports.
    96100            'supports'             => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'revisions' ),
     
    100104        );
    101105
     106        $cap_keys = [
     107            'edit_post',
     108            'read_post',
     109            'delete_post',
     110            'edit_posts',
     111            'edit_others_posts',
     112            'publish_posts',
     113            'read_private_posts',
     114            'delete_posts',
     115            'delete_private_posts',
     116            'delete_published_posts',
     117            'delete_others_posts',
     118            'edit_private_posts',
     119            'edit_published_posts',
     120            'create_posts',
     121        ];
     122
     123        $caps = array_fill_keys(
     124            $cap_keys,
     125            get_option(
     126                'pf_menu_nominate_this_access',
     127                pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     128            )
     129        );
     130
     131        $args['capabilities'] = $caps;
     132        $args['map_meta_cap'] = false;
     133
    102134        register_post_type( $this->post_type, $args );
     135    }
     136
     137    /**
     138     * Grants users with the 'pf_menu_nominate_this_access' capability the ability to assign tags to nominations.
     139     *
     140     * @param array    $allcaps All capabilities of the user.
     141     * @param array    $caps    Actual capabilities being checked.
     142     * @param array    $args    Arguments that accompany the capability check.
     143     * @param \WP_User $user    The user whose capabilities are being checked.
     144     * @return array
     145     */
     146    public function add_assign_post_tags_cap( $allcaps, $caps, $args, $user ) {
     147        $base_cap = get_option(
     148            'pf_menu_nominate_this_access',
     149            pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     150        );
     151
     152        if ( ! defined( 'REST_REQUEST' ) || ! REST_REQUEST ) {
     153            return $allcaps;
     154        }
     155
     156        global $wp;
     157        if ( empty( $wp->query_vars['rest_route'] ) || 0 !== strpos( $wp->query_vars['rest_route'], '/wp/v2/nomination' ) ) {
     158            return $allcaps;
     159        }
     160
     161        if ( in_array( 'edit_posts', $caps, true ) && user_can( $user->ID, $base_cap ) ) {
     162            $allcaps['edit_posts'] = true;
     163        }
     164
     165        return $allcaps;
    103166    }
    104167
  • pressforward/tags/5.9.3/constants.php

    r3350611 r3356897  
    1414define( 'PF_FILE_PATH', PF_ROOT . '/pressforward.php' );
    1515define( 'PF_URL', plugins_url( '/', __FILE__ ) );
    16 define( 'PF_VERSION', '5.9.2' );
     16define( 'PF_VERSION', '5.9.3' );
  • pressforward/tags/5.9.3/languages/pressforward.pot

    r3350611 r3356897  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: PressForward 5.9.1\n"
     5"Project-Id-Version: PressForward 5.9.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pressforward\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-08-26T12:01:18-05:00\n"
     12"POT-Creation-Date: 2025-09-05T15:46:19-05:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    296296#: Controllers/Metas.php:638
    297297#: Core/Admin/Menu.php:189
    298 #: Core/Schema/Nominations.php:73
    299 #: Core/Schema/Nominations.php:139
     298#: Core/Schema/Nominations.php:78
     299#: Core/Schema/Nominations.php:202
    300300#: parts/welcome/nominations.php:29
    301301msgid "Nominations"
     
    10991099
    11001100#: Core/Admin/Nominated.php:742
    1101 #: Core/Schema/Nominations.php:142
     1101#: Core/Schema/Nominations.php:205
    11021102#: assets/src/blocks/blocks.js:225
    11031103#: build/blocks.js:1
     
    15041504#: Core/Admin/PFTemplater.php:1131
    15051505#: Core/Bookmarklet/NominateThisCore.php:124
    1506 #: Core/Schema/Nominations.php:75
     1506#: Core/Schema/Nominations.php:80
    15071507#: assets/src/reader/util.js:284
    15081508#: build/reader.js:5
     
    19111911msgstr ""
    19121912
    1913 #: Core/Bookmarklet/NominateThisCore.php:701
    1914 #: Core/Bookmarklet/NominateThisCore.php:702
     1913#: Core/Bookmarklet/NominateThisCore.php:706
     1914#: Core/Bookmarklet/NominateThisCore.php:707
    19151915msgid "Nomination Success"
    19161916msgstr ""
    19171917
    1918 #: Core/Bookmarklet/NominateThisCore.php:721
     1918#: Core/Bookmarklet/NominateThisCore.php:726
    19191919#: includes/nomthis/nominate-this-core.php:165
    19201920msgid "Your nomination has been saved."
    19211921msgstr ""
    19221922
    1923 #: Core/Bookmarklet/NominateThisCore.php:722
     1923#: Core/Bookmarklet/NominateThisCore.php:727
    19241924#: includes/nomthis/nominate-this-core.php:166
    19251925msgid "See all nominations"
    19261926msgstr ""
    19271927
    1928 #: Core/Bookmarklet/NominateThisCore.php:723
     1928#: Core/Bookmarklet/NominateThisCore.php:728
    19291929#: includes/nomthis/nominate-this-core.php:167
    19301930#: includes/nomthis/nominate-this-core.php:177
     
    22242224msgstr ""
    22252225
    2226 #: Core/Schema/Nominations.php:74
     2226#: Core/Schema/Nominations.php:79
    22272227msgid "Nomination"
    22282228msgstr ""
    22292229
    2230 #: Core/Schema/Nominations.php:76
     2230#: Core/Schema/Nominations.php:81
    22312231msgid "Add New Nomination"
    22322232msgstr ""
    22332233
    2234 #: Core/Schema/Nominations.php:77
     2234#: Core/Schema/Nominations.php:82
    22352235msgid "Edit Nomination"
    22362236msgstr ""
    22372237
    2238 #: Core/Schema/Nominations.php:78
     2238#: Core/Schema/Nominations.php:83
    22392239msgid "New Nomination"
    22402240msgstr ""
    22412241
    2242 #: Core/Schema/Nominations.php:79
     2242#: Core/Schema/Nominations.php:84
    22432243msgid "View Nomination"
    22442244msgstr ""
    22452245
    2246 #: Core/Schema/Nominations.php:80
     2246#: Core/Schema/Nominations.php:85
    22472247msgid "Search Nominations"
    22482248msgstr ""
    22492249
    2250 #: Core/Schema/Nominations.php:81
     2250#: Core/Schema/Nominations.php:86
    22512251msgid "No nominations found"
    22522252msgstr ""
    22532253
    2254 #: Core/Schema/Nominations.php:82
     2254#: Core/Schema/Nominations.php:87
    22552255msgid "No nominations found in Trash"
    22562256msgstr ""
    22572257
    2258 #: Core/Schema/Nominations.php:84
     2258#: Core/Schema/Nominations.php:89
    22592259msgid "Posts from around the internet nominated for consideration to public posting"
    22602260msgstr ""
    22612261
    2262 #: Core/Schema/Nominations.php:118
     2262#: Core/Schema/Nominations.php:181
    22632263msgid "Nomination Data"
    22642264msgstr ""
    22652265
    2266 #: Core/Schema/Nominations.php:137
     2266#: Core/Schema/Nominations.php:200
    22672267msgid "Title"
    22682268msgstr ""
    22692269
    2270 #: Core/Schema/Nominations.php:138
     2270#: Core/Schema/Nominations.php:201
    22712271msgid "Last Modified"
    22722272msgstr ""
    22732273
    2274 #: Core/Schema/Nominations.php:140
     2274#: Core/Schema/Nominations.php:203
    22752275msgid "Nominated By"
    22762276msgstr ""
    22772277
    2278 #: Core/Schema/Nominations.php:141
     2278#: Core/Schema/Nominations.php:204
    22792279msgid "Original Author"
    22802280msgstr ""
    22812281
    22822282#. translators: Name of the site.
    2283 #: Core/Schema/Nominations.php:208
     2283#: Core/Schema/Nominations.php:271
    22842284#, php-format
    22852285msgid "An item you nominated on %s has been published"
     
    22872287
    22882288#. translators: Title of the post.
    2289 #: Core/Schema/Nominations.php:216
     2289#: Core/Schema/Nominations.php:279
    22902290#, php-format
    22912291msgid "Title: %s"
     
    22932293
    22942294#. translators: URL of the post.
    2295 #: Core/Schema/Nominations.php:224
     2295#: Core/Schema/Nominations.php:287
    22962296#, php-format
    22972297msgid "URL: %s"
  • pressforward/tags/5.9.3/package.json

    r3350611 r3356897  
    11{
    22    "name": "pressforward",
    3     "version": "5.9.2",
     3    "version": "5.9.3",
    44    "description": "PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. ",
    55    "main": "assets/js/pf.js",
  • pressforward/tags/5.9.3/pressforward.php

    r3350617 r3356897  
    44 * Plugin URI: http://pressforward.org/
    55 * Description: The PressForward Plugin is a tool by the Roy Rosenzweig Center for History and New Media for aggregating and curating web-based content within the WordPress dashboard.
    6  * Version: 5.9.2
     6 * Version: 5.9.3
    77 * GitHub Plugin URI: https://github.com/PressForward/pressforward
    88 * Author: Boone Gorges, Aram Zucker-Scharff, Jeremy Boggs
  • pressforward/tags/5.9.3/readme.txt

    r3350612 r3356897  
    1111PressForward provides an integrated workflow for curating content aggregated from the web.
    1212
     13
    1314== Description ==
    1415PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web.
     
    8182
    8283== Changelog ==
     84
     85= 5.9.3 =
     86* Fixed bug that prevented Subscribers from being able to use the entire Nominate This flow.
    8387
    8488= 5.9.2 =
  • pressforward/tags/5.9.3/vendor/composer/installed.php

    r3350611 r3356897  
    44        'pretty_version' => '5.9.x-dev',
    55        'version' => '5.9.9999999.9999999-dev',
    6         'reference' => '8caec5267053fb4bc710661c9b26d5a87205cc97',
     6        'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    8686            'pretty_version' => '5.9.x-dev',
    8787            'version' => '5.9.9999999.9999999-dev',
    88             'reference' => '8caec5267053fb4bc710661c9b26d5a87205cc97',
     88            'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2',
    8989            'type' => 'project',
    9090            'install_path' => __DIR__ . '/../../',
  • pressforward/trunk/Core/Bookmarklet/NominateThisCore.php

    r3207176 r3356897  
    697697     */
    698698    public function register_nomination_success_panel() {
     699        $base_cap = get_option(
     700            'pf_menu_nominate_this_access',
     701            pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     702        );
     703
    699704        add_submenu_page(
    700705            '',
    701706            __( 'Nomination Success', 'pressforward' ),
    702707            __( 'Nomination Success', 'pressforward' ),
    703             'edit_posts',
     708            $base_cap,
    704709            'pf-nomination-success',
    705710            [ $this, 'nomination_success_panel' ]
  • pressforward/trunk/Core/Schema/Feeds.php

    r3330426 r3356897  
    432432        }
    433433
    434         if ( ! current_user_can( 'edit_page', $post_id ) ) {
     434        if ( ! current_user_can( 'edit_post', $post_id ) ) {
    435435            return false;
    436436        }
  • pressforward/trunk/Core/Schema/Nominations.php

    r3017244 r3356897  
    5959                'hook'   => 'manage_edit-nomination_sortable_columns',
    6060                'method' => 'nomination_sortable_columns',
     61            ),
     62            array(
     63                'hook'   => 'user_has_cap',
     64                'method' => 'add_assign_post_tags_cap',
     65                'args'   => 4,
    6166            ),
    6267        );
     
    8893            'show_ui'              => true,
    8994            // But not the default UI, we want to attach it to the plugin menu.
    90             'show_in_menu'         => false,
     95            'show_in_menu'         => 'pf-menu',
    9196            'show_in_rest'         => true,
    9297            // Linking in the metabox building function.
    9398            'register_meta_box_cb' => array( $this, 'nominations_meta_boxes' ),
    94             'capability_type'      => 'post',
    9599            // The type of input (besides the metaboxes) that it supports.
    96100            'supports'             => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'revisions' ),
     
    100104        );
    101105
     106        $cap_keys = [
     107            'edit_post',
     108            'read_post',
     109            'delete_post',
     110            'edit_posts',
     111            'edit_others_posts',
     112            'publish_posts',
     113            'read_private_posts',
     114            'delete_posts',
     115            'delete_private_posts',
     116            'delete_published_posts',
     117            'delete_others_posts',
     118            'edit_private_posts',
     119            'edit_published_posts',
     120            'create_posts',
     121        ];
     122
     123        $caps = array_fill_keys(
     124            $cap_keys,
     125            get_option(
     126                'pf_menu_nominate_this_access',
     127                pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     128            )
     129        );
     130
     131        $args['capabilities'] = $caps;
     132        $args['map_meta_cap'] = false;
     133
    102134        register_post_type( $this->post_type, $args );
     135    }
     136
     137    /**
     138     * Grants users with the 'pf_menu_nominate_this_access' capability the ability to assign tags to nominations.
     139     *
     140     * @param array    $allcaps All capabilities of the user.
     141     * @param array    $caps    Actual capabilities being checked.
     142     * @param array    $args    Arguments that accompany the capability check.
     143     * @param \WP_User $user    The user whose capabilities are being checked.
     144     * @return array
     145     */
     146    public function add_assign_post_tags_cap( $allcaps, $caps, $args, $user ) {
     147        $base_cap = get_option(
     148            'pf_menu_nominate_this_access',
     149            pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' )
     150        );
     151
     152        if ( ! defined( 'REST_REQUEST' ) || ! REST_REQUEST ) {
     153            return $allcaps;
     154        }
     155
     156        global $wp;
     157        if ( empty( $wp->query_vars['rest_route'] ) || 0 !== strpos( $wp->query_vars['rest_route'], '/wp/v2/nomination' ) ) {
     158            return $allcaps;
     159        }
     160
     161        if ( in_array( 'edit_posts', $caps, true ) && user_can( $user->ID, $base_cap ) ) {
     162            $allcaps['edit_posts'] = true;
     163        }
     164
     165        return $allcaps;
    103166    }
    104167
  • pressforward/trunk/constants.php

    r3350611 r3356897  
    1414define( 'PF_FILE_PATH', PF_ROOT . '/pressforward.php' );
    1515define( 'PF_URL', plugins_url( '/', __FILE__ ) );
    16 define( 'PF_VERSION', '5.9.2' );
     16define( 'PF_VERSION', '5.9.3' );
  • pressforward/trunk/languages/pressforward.pot

    r3350611 r3356897  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: PressForward 5.9.1\n"
     5"Project-Id-Version: PressForward 5.9.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pressforward\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-08-26T12:01:18-05:00\n"
     12"POT-Creation-Date: 2025-09-05T15:46:19-05:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    296296#: Controllers/Metas.php:638
    297297#: Core/Admin/Menu.php:189
    298 #: Core/Schema/Nominations.php:73
    299 #: Core/Schema/Nominations.php:139
     298#: Core/Schema/Nominations.php:78
     299#: Core/Schema/Nominations.php:202
    300300#: parts/welcome/nominations.php:29
    301301msgid "Nominations"
     
    10991099
    11001100#: Core/Admin/Nominated.php:742
    1101 #: Core/Schema/Nominations.php:142
     1101#: Core/Schema/Nominations.php:205
    11021102#: assets/src/blocks/blocks.js:225
    11031103#: build/blocks.js:1
     
    15041504#: Core/Admin/PFTemplater.php:1131
    15051505#: Core/Bookmarklet/NominateThisCore.php:124
    1506 #: Core/Schema/Nominations.php:75
     1506#: Core/Schema/Nominations.php:80
    15071507#: assets/src/reader/util.js:284
    15081508#: build/reader.js:5
     
    19111911msgstr ""
    19121912
    1913 #: Core/Bookmarklet/NominateThisCore.php:701
    1914 #: Core/Bookmarklet/NominateThisCore.php:702
     1913#: Core/Bookmarklet/NominateThisCore.php:706
     1914#: Core/Bookmarklet/NominateThisCore.php:707
    19151915msgid "Nomination Success"
    19161916msgstr ""
    19171917
    1918 #: Core/Bookmarklet/NominateThisCore.php:721
     1918#: Core/Bookmarklet/NominateThisCore.php:726
    19191919#: includes/nomthis/nominate-this-core.php:165
    19201920msgid "Your nomination has been saved."
    19211921msgstr ""
    19221922
    1923 #: Core/Bookmarklet/NominateThisCore.php:722
     1923#: Core/Bookmarklet/NominateThisCore.php:727
    19241924#: includes/nomthis/nominate-this-core.php:166
    19251925msgid "See all nominations"
    19261926msgstr ""
    19271927
    1928 #: Core/Bookmarklet/NominateThisCore.php:723
     1928#: Core/Bookmarklet/NominateThisCore.php:728
    19291929#: includes/nomthis/nominate-this-core.php:167
    19301930#: includes/nomthis/nominate-this-core.php:177
     
    22242224msgstr ""
    22252225
    2226 #: Core/Schema/Nominations.php:74
     2226#: Core/Schema/Nominations.php:79
    22272227msgid "Nomination"
    22282228msgstr ""
    22292229
    2230 #: Core/Schema/Nominations.php:76
     2230#: Core/Schema/Nominations.php:81
    22312231msgid "Add New Nomination"
    22322232msgstr ""
    22332233
    2234 #: Core/Schema/Nominations.php:77
     2234#: Core/Schema/Nominations.php:82
    22352235msgid "Edit Nomination"
    22362236msgstr ""
    22372237
    2238 #: Core/Schema/Nominations.php:78
     2238#: Core/Schema/Nominations.php:83
    22392239msgid "New Nomination"
    22402240msgstr ""
    22412241
    2242 #: Core/Schema/Nominations.php:79
     2242#: Core/Schema/Nominations.php:84
    22432243msgid "View Nomination"
    22442244msgstr ""
    22452245
    2246 #: Core/Schema/Nominations.php:80
     2246#: Core/Schema/Nominations.php:85
    22472247msgid "Search Nominations"
    22482248msgstr ""
    22492249
    2250 #: Core/Schema/Nominations.php:81
     2250#: Core/Schema/Nominations.php:86
    22512251msgid "No nominations found"
    22522252msgstr ""
    22532253
    2254 #: Core/Schema/Nominations.php:82
     2254#: Core/Schema/Nominations.php:87
    22552255msgid "No nominations found in Trash"
    22562256msgstr ""
    22572257
    2258 #: Core/Schema/Nominations.php:84
     2258#: Core/Schema/Nominations.php:89
    22592259msgid "Posts from around the internet nominated for consideration to public posting"
    22602260msgstr ""
    22612261
    2262 #: Core/Schema/Nominations.php:118
     2262#: Core/Schema/Nominations.php:181
    22632263msgid "Nomination Data"
    22642264msgstr ""
    22652265
    2266 #: Core/Schema/Nominations.php:137
     2266#: Core/Schema/Nominations.php:200
    22672267msgid "Title"
    22682268msgstr ""
    22692269
    2270 #: Core/Schema/Nominations.php:138
     2270#: Core/Schema/Nominations.php:201
    22712271msgid "Last Modified"
    22722272msgstr ""
    22732273
    2274 #: Core/Schema/Nominations.php:140
     2274#: Core/Schema/Nominations.php:203
    22752275msgid "Nominated By"
    22762276msgstr ""
    22772277
    2278 #: Core/Schema/Nominations.php:141
     2278#: Core/Schema/Nominations.php:204
    22792279msgid "Original Author"
    22802280msgstr ""
    22812281
    22822282#. translators: Name of the site.
    2283 #: Core/Schema/Nominations.php:208
     2283#: Core/Schema/Nominations.php:271
    22842284#, php-format
    22852285msgid "An item you nominated on %s has been published"
     
    22872287
    22882288#. translators: Title of the post.
    2289 #: Core/Schema/Nominations.php:216
     2289#: Core/Schema/Nominations.php:279
    22902290#, php-format
    22912291msgid "Title: %s"
     
    22932293
    22942294#. translators: URL of the post.
    2295 #: Core/Schema/Nominations.php:224
     2295#: Core/Schema/Nominations.php:287
    22962296#, php-format
    22972297msgid "URL: %s"
  • pressforward/trunk/package.json

    r3350611 r3356897  
    11{
    22    "name": "pressforward",
    3     "version": "5.9.2",
     3    "version": "5.9.3",
    44    "description": "PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. ",
    55    "main": "assets/js/pf.js",
  • pressforward/trunk/pressforward.php

    r3350617 r3356897  
    44 * Plugin URI: http://pressforward.org/
    55 * Description: The PressForward Plugin is a tool by the Roy Rosenzweig Center for History and New Media for aggregating and curating web-based content within the WordPress dashboard.
    6  * Version: 5.9.2
     6 * Version: 5.9.3
    77 * GitHub Plugin URI: https://github.com/PressForward/pressforward
    88 * Author: Boone Gorges, Aram Zucker-Scharff, Jeremy Boggs
  • pressforward/trunk/readme.txt

    r3350612 r3356897  
    1111PressForward provides an integrated workflow for curating content aggregated from the web.
    1212
     13
    1314== Description ==
    1415PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web.
     
    8182
    8283== Changelog ==
     84
     85= 5.9.3 =
     86* Fixed bug that prevented Subscribers from being able to use the entire Nominate This flow.
    8387
    8488= 5.9.2 =
  • pressforward/trunk/vendor/composer/installed.php

    r3350611 r3356897  
    44        'pretty_version' => '5.9.x-dev',
    55        'version' => '5.9.9999999.9999999-dev',
    6         'reference' => '8caec5267053fb4bc710661c9b26d5a87205cc97',
     6        'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    8686            'pretty_version' => '5.9.x-dev',
    8787            'version' => '5.9.9999999.9999999-dev',
    88             'reference' => '8caec5267053fb4bc710661c9b26d5a87205cc97',
     88            'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2',
    8989            'type' => 'project',
    9090            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.