Plugin Directory

Changeset 2333508


Ignore:
Timestamp:
07/01/2020 12:55:58 PM (6 years ago)
Author:
yoannspace
Message:

->1.1.0 release

Location:
display-your-zenodo-community
Files:
5 added
10 edited
12 copied

Legend:

Unmodified
Added
Removed
  • display-your-zenodo-community/tags/1.1.0/CHANGELOG.md

    r2308089 r2333508  
    66
    77## [Unreleased]
     8
     9## [1.1.0] - 2020-07-01
     10### Added
     11- The plugin now allows users to retrieve their publications with their ORCID and not only Community publications
     12### Changed
     13- Change name of plugin (old `Display your Zenodo Community`)
     14- Screenshots have been updated
    815
    916## [1.0.3] - 2020-05-19
  • display-your-zenodo-community/tags/1.1.0/README.md

    r2308086 r2333508  
    1 # Display your Zenodo Community
     1# Display your Zenodo Publications
    22
    3 This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
     3This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community or the publications of an author using an ORCID on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
    44To do so, access to the [Zenodo REST API](https://developers.zenodo.org/) is required, without it, the
    55plugin will not work. When using this plugin, you will also need to accept the Zenodo’s [Privacy Policy](https://about.zenodo.org/privacy-policy/) and its [Terms of Use](https://about.zenodo.org/terms/).
     
    1010# Install (via WordPress plugins)
    11111. Install via [WordPress plugins](https://www.wordpress.org/plugins/display-your-zenodo-community)
     121. Activate the plugin through the 'Plugins' menu in WordPress
    1213
    1314# Install (manually)
     
    15161. Activate the plugin through the 'Plugins' menu in WordPress
    1617
    17 A very simple administration page (in Settings -> Zenodo) to choose your Zenodo community (e.g. `dariah` or `operaseu`).
     18A very simple administration page (in Settings -> Zenodo) to choose your Zenodo community (e.g. `dariah` or `operaseu
     19`) or choose your personal ORCID.
    1820On the page you want to present the Zenodo data, add the shortcode `[display-your-zenodo-community]` to see the publications.
    1921# How does it work?
    20 With API request directly to Zenodo, with your community identifier added in the admin page, you can retrieve some
    21  information of disseminated data on Zenodo.
     22With API request directly to Zenodo, with your community identifier or your ORCID added in the admin page, you can
     23 retrieve some information of disseminated data on Zenodo.
  • display-your-zenodo-community/tags/1.1.0/README.txt

    r2308089 r2333508  
    1 === Display your Zenodo Community ===
     1=== Display your Zenodo Publications ===
    22Contributors: yoannspace
    33Donate link:
     
    66Tested up to: 5.4
    77Requires PHP: 5.6.35
    8 Stable tag: 1.0.3
     8Stable tag: 1.1.0
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
    1111
    12 This WordPress plugin allows users to see their Zenodo Community data.
     12This WordPress plugin allows users to see their Zenodo publications (either from a Community or related to their ORCID).
    1313
    1414== Description ==
    1515
    16 This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
     16This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community or the publications of an author using an ORCID on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
    1717To do so, access to the [Zenodo REST API](https://developers.zenodo.org/) is required, without it, the plugin will not work. When using this plugin, you will also need to accept the Zenodo’s [Privacy Policy](https://about.zenodo.org/privacy-policy/) and its [Terms of Use](https://about.zenodo.org/terms/).
    1818Originally, the plugin has been created for and by [DARIAH-EU](https://www.dariah.eu). You can find it implemented here: [https://www.dariah.eu/about/publications/](https://www.dariah.eu/about/publications/).
     
    2020== Installation ==
    2121
     22Via WordPress plugins
     231. Install via [WordPress plugins](https://www.wordpress.org/plugins/display-your-zenodo-community)
     241. Activate the plugin through the 'Plugins' menu in WordPress
     25
     26Manually
    22271. Upload directory `display-your-zenodo-community` to the `/wp-content/plugins/` directory
    23281. Activate the plugin through the 'Plugins' menu in WordPress
     
    2833== Frequently Asked Questions ==
    2934
    30 None
     35= I don't have an ORCID, can I still use the plugin to display my publications with my name? =
     36Unfortunately, no. The reason being that queries to the Zenodo API do not work well with names since they can't
     37differentiate authors.
    3138
    3239== Screenshots ==
     
    34411. Display of the Zenodo Community data on the DARIAH-EU website
    35422. Very simple administration page to choose your Zenodo community
     433. Very simple administration page to choose your ORCID
    3644
    3745== Changelog ==
     46
     47= 1.1.0 =
     48* The plugin now allows users to retrieve their publications with their ORCID and not only Community publications
     49* Change name of plugin (old `Display your Zenodo Community`)
     50* Screenshots have been updated
    3851
    3952= 1.0.3 =
  • display-your-zenodo-community/tags/1.1.0/admin/class-display-your-zenodo-community-admin.php

    r2294132 r2333508  
    127127     */
    128128    public function options_update() {
    129         register_setting( $this->plugin_name, $this->plugin_name, array( 'sanitize_callback' => array( $this, 'validate' ), 'default' => array( 'id_community' => '' ) ) );
     129        register_setting( $this->plugin_name, $this->plugin_name, array( 'sanitize_callback' => array( $this, 'validate' ), 'default' => array( 'id_community_orcid' => '', 'choice' => '' ) ) );
    130130    }
    131131    /**
     
    137137        // All checkboxes inputs
    138138        $valid = array();
    139         $valid['id_community'] = (isset($input['id_community']) && !empty($input['id_community'])) ? sanitize_text_field($input['id_community']) : '';
     139        $valid['id_community_orcid'] = (isset($input['id_community_orcid']) && !empty($input['id_community_orcid'])) ?
     140            sanitize_text_field($input['id_community_orcid']) : '';
     141        $valid['choice'] = sanitize_text_field($input['choice']);
    140142        return $valid;
    141143    }
  • display-your-zenodo-community/tags/1.1.0/admin/partials/display-your-zenodo-community-admin-display.php

    r2308086 r2333508  
    2121
    2222    <h2 class="nav-tab-wrapper">Zenodo Settings</h2>
     23    <p>Please select in the dropdown list either "Community" or "ORCID" and enter the value corresponding.</p>
     24    <p>If you select "Community", please enter a value such as "dariah" so a query on
     25        https://zenodo.org/api/records/?communities=dariah returns results.</p>
     26    <p>If you select "ORCID", please enter a value such as "0000-0002-5350-067X" so a query on
     27        https://zenodo.org/api/records/?q=creators.orcid:"0000-0002-5350-067X" returns results.</p>
    2328
    2429    <form method="post" name="display_your_zenodo_community_options" action="options.php">
     
    2732        //Grab all options
    2833        $display_your_zenodo_community_options = get_option( $this->plugin_name );
    29         $id_community = $display_your_zenodo_community_options['id_community'];
     34        $choice = $display_your_zenodo_community_options['choice'];
     35        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
    3036
    3137        $html = "<tr>
    3238                    <th scope=\"row\">
    33                         <label for=\"" . $this->plugin_name . "-id-community\">" . translate('Name of community (e.g. dariah)',
     39                        <label for=\"" . $this->plugin_name . "-choice\">" . translate('Choice of community or orcid',
     40                $this->plugin_name) . "</label>
     41                    </th>
     42                    <td>
     43                        <select name=\"" . $this->plugin_name . "[choice]\" id=\"" . $this->plugin_name . "-choice\">
     44                            <option value=\"community\"" . (($choice=='community')?" selected=\"selected\"":"") . ">Community</option>
     45                            <option value=\"orcid\"" . (($choice=='orcid')?" selected=\"selected\"":"") . ">ORCID</option>
     46                        </select>
     47                    </td>
     48                </tr>";
     49        $html .= "<tr>
     50                    <th scope=\"row\">
     51                        <label for=\"" . $this->plugin_name . "-id-community-orcid\">" . translate('Value (e.g. dariah or 0000-0002-5350-067X)',
    3452                $this->plugin_name) . "</label>
    3553                    </th>
    3654                    <td>
    37                         <input name=\"" . $this->plugin_name . "[id_community]\" id=\"" . $this->plugin_name
    38                         . "-id-community\" value=\"" . $id_community . "\" type=\"text\">
     55                        <input name=\"" . $this->plugin_name . "[id_community_orcid]\" id=\"" . $this->plugin_name
     56                        . "-id-community-orcid\" value=\"" . $id_community_orcid . "\" type=\"text\">
    3957                    </td>
    4058                </tr>";
  • display-your-zenodo-community/tags/1.1.0/includes/class-display-your-zenodo-community.php

    r2308089 r2333508  
    5454            $this->version = ZENODO_PLUGIN_VERSION;
    5555        } else {
    56             $this->version = '1.0.3';
     56            $this->version = '1.1.0';
    5757        }
    5858        $this->plugin_name = 'display-your-zenodo-community';
  • display-your-zenodo-community/tags/1.1.0/public/class-display-your-zenodo-community-public.php

    r2300116 r2333508  
    9696     */
    9797    public function display_zenodo_data() {
     98        $display_your_zenodo_community_options = get_option( $this->plugin_name );
     99        $choice = $display_your_zenodo_community_options['choice'];
     100        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
     101
    98102        $page = 1;
    99103        if( is_numeric( get_query_var( 'zenodo_page' ) ) ) {
     
    109113            $html .= "<span class=\"wphal-nbtot\">";
    110114            $html .= $result_api->aggregations->access_right->buckets[0]->doc_count;
    111             $html .= "</span>" . " documents";
     115            $html .= "</span>" . " documents (from " . ($choice=='community'?"Community \"":"ORCID \"") .
     116                     $id_community_orcid . "\")";
    112117            $html .= "</div>";
    113118        }
     
    129134            }
    130135            if( isset( $hit->metadata->version ) ) {
    131                 $html .= " (Version " . $hit->metadata->version . ").";
    132             }
    133             $html .= " Zenodo.";
     136                $html .= " (Version " . $hit->metadata->version . ")";
     137            }
     138            $html .= ". Zenodo.";
    134139            if( isset( $hit->links->doi ) ) {
    135140                $html .= " <a href='" . $hit->links->doi . "'>" . $hit->links->doi . "</a>";
     
    215220    public function zp_retrieve_json( $page = 1 ) {
    216221        $display_your_zenodo_community_options = get_option( $this->plugin_name );
    217         $id_community = $display_your_zenodo_community_options['id_community'];
    218         if( $id_community !== '' ) {
    219             $zenodo_api_url = "https://zenodo.org/api/records/?sort=mostrecent&size=10&communities=" . $id_community;
     222        $choice = $display_your_zenodo_community_options['choice'];
     223        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
     224
     225        $zenodo_api_url = "";
     226        if( $choice == 'community' ) {
     227            $zenodo_api_url = "https://zenodo.org/api/records/?sort=mostrecent&size=10&communities=" . $id_community_orcid;
    220228            $zenodo_api_url .= "&page=" . $page;
    221 
    222 
     229        } elseif ( $choice == 'orcid' ) {
     230            $zenodo_api_url = "https://zenodo.org/api/records/?q=creators.orcid:%22" . $id_community_orcid . "%22";
     231            $zenodo_api_url .= "&page=" . $page;
     232        }
     233        if( $id_community_orcid !== '' && $zenodo_api_url !== '' ) {
    223234            $request = wp_remote_get( $zenodo_api_url );
    224235            if( is_wp_error( $request ) ) {
  • display-your-zenodo-community/tags/1.1.0/zenodo-plugin.php

    r2308089 r2333508  
    1414 *
    1515 * @wordpress-plugin
    16  * Plugin Name:       Display your Zenodo Community
     16 * Plugin Name:       Display your Zenodo Publications
    1717 * Plugin URI:        https://github.com/dariah-eric/display-your-zenodo-community
    1818 * Description:       This plugin allows user to view their community data from Zenodo on WordPress
    19  * Version:           1.0.3
     19 * Version:           1.1.0
    2020 * Author:            DARIAH-EU
    2121 * Author URI:        https://www.dariah.eu
  • display-your-zenodo-community/trunk/CHANGELOG.md

    r2308089 r2333508  
    66
    77## [Unreleased]
     8
     9## [1.1.0] - 2020-07-01
     10### Added
     11- The plugin now allows users to retrieve their publications with their ORCID and not only Community publications
     12### Changed
     13- Change name of plugin (old `Display your Zenodo Community`)
     14- Screenshots have been updated
    815
    916## [1.0.3] - 2020-05-19
  • display-your-zenodo-community/trunk/README.md

    r2308086 r2333508  
    1 # Display your Zenodo Community
     1# Display your Zenodo Publications
    22
    3 This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
     3This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community or the publications of an author using an ORCID on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
    44To do so, access to the [Zenodo REST API](https://developers.zenodo.org/) is required, without it, the
    55plugin will not work. When using this plugin, you will also need to accept the Zenodo’s [Privacy Policy](https://about.zenodo.org/privacy-policy/) and its [Terms of Use](https://about.zenodo.org/terms/).
     
    1010# Install (via WordPress plugins)
    11111. Install via [WordPress plugins](https://www.wordpress.org/plugins/display-your-zenodo-community)
     121. Activate the plugin through the 'Plugins' menu in WordPress
    1213
    1314# Install (manually)
     
    15161. Activate the plugin through the 'Plugins' menu in WordPress
    1617
    17 A very simple administration page (in Settings -> Zenodo) to choose your Zenodo community (e.g. `dariah` or `operaseu`).
     18A very simple administration page (in Settings -> Zenodo) to choose your Zenodo community (e.g. `dariah` or `operaseu
     19`) or choose your personal ORCID.
    1820On the page you want to present the Zenodo data, add the shortcode `[display-your-zenodo-community]` to see the publications.
    1921# How does it work?
    20 With API request directly to Zenodo, with your community identifier added in the admin page, you can retrieve some
    21  information of disseminated data on Zenodo.
     22With API request directly to Zenodo, with your community identifier or your ORCID added in the admin page, you can
     23 retrieve some information of disseminated data on Zenodo.
  • display-your-zenodo-community/trunk/README.txt

    r2308089 r2333508  
    1 === Display your Zenodo Community ===
     1=== Display your Zenodo Publications ===
    22Contributors: yoannspace
    33Donate link:
     
    66Tested up to: 5.4
    77Requires PHP: 5.6.35
    8 Stable tag: 1.0.3
     8Stable tag: 1.1.0
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
    1111
    12 This WordPress plugin allows users to see their Zenodo Community data.
     12This WordPress plugin allows users to see their Zenodo publications (either from a Community or related to their ORCID).
    1313
    1414== Description ==
    1515
    16 This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
     16This WordPress plugin allows users to display content of their [Zenodo](https://zenodo.org/) Community or the publications of an author using an ORCID on Wordpress pages, for instance, if they wish to integrate a dynamic bibliography of their work with their blog or website.
    1717To do so, access to the [Zenodo REST API](https://developers.zenodo.org/) is required, without it, the plugin will not work. When using this plugin, you will also need to accept the Zenodo’s [Privacy Policy](https://about.zenodo.org/privacy-policy/) and its [Terms of Use](https://about.zenodo.org/terms/).
    1818Originally, the plugin has been created for and by [DARIAH-EU](https://www.dariah.eu). You can find it implemented here: [https://www.dariah.eu/about/publications/](https://www.dariah.eu/about/publications/).
     
    2020== Installation ==
    2121
     22Via WordPress plugins
     231. Install via [WordPress plugins](https://www.wordpress.org/plugins/display-your-zenodo-community)
     241. Activate the plugin through the 'Plugins' menu in WordPress
     25
     26Manually
    22271. Upload directory `display-your-zenodo-community` to the `/wp-content/plugins/` directory
    23281. Activate the plugin through the 'Plugins' menu in WordPress
     
    2833== Frequently Asked Questions ==
    2934
    30 None
     35= I don't have an ORCID, can I still use the plugin to display my publications with my name? =
     36Unfortunately, no. The reason being that queries to the Zenodo API do not work well with names since they can't
     37differentiate authors.
    3138
    3239== Screenshots ==
     
    34411. Display of the Zenodo Community data on the DARIAH-EU website
    35422. Very simple administration page to choose your Zenodo community
     433. Very simple administration page to choose your ORCID
    3644
    3745== Changelog ==
     46
     47= 1.1.0 =
     48* The plugin now allows users to retrieve their publications with their ORCID and not only Community publications
     49* Change name of plugin (old `Display your Zenodo Community`)
     50* Screenshots have been updated
    3851
    3952= 1.0.3 =
  • display-your-zenodo-community/trunk/admin/class-display-your-zenodo-community-admin.php

    r2294132 r2333508  
    127127     */
    128128    public function options_update() {
    129         register_setting( $this->plugin_name, $this->plugin_name, array( 'sanitize_callback' => array( $this, 'validate' ), 'default' => array( 'id_community' => '' ) ) );
     129        register_setting( $this->plugin_name, $this->plugin_name, array( 'sanitize_callback' => array( $this, 'validate' ), 'default' => array( 'id_community_orcid' => '', 'choice' => '' ) ) );
    130130    }
    131131    /**
     
    137137        // All checkboxes inputs
    138138        $valid = array();
    139         $valid['id_community'] = (isset($input['id_community']) && !empty($input['id_community'])) ? sanitize_text_field($input['id_community']) : '';
     139        $valid['id_community_orcid'] = (isset($input['id_community_orcid']) && !empty($input['id_community_orcid'])) ?
     140            sanitize_text_field($input['id_community_orcid']) : '';
     141        $valid['choice'] = sanitize_text_field($input['choice']);
    140142        return $valid;
    141143    }
  • display-your-zenodo-community/trunk/admin/partials/display-your-zenodo-community-admin-display.php

    r2308086 r2333508  
    2121
    2222    <h2 class="nav-tab-wrapper">Zenodo Settings</h2>
     23    <p>Please select in the dropdown list either "Community" or "ORCID" and enter the value corresponding.</p>
     24    <p>If you select "Community", please enter a value such as "dariah" so a query on
     25        https://zenodo.org/api/records/?communities=dariah returns results.</p>
     26    <p>If you select "ORCID", please enter a value such as "0000-0002-5350-067X" so a query on
     27        https://zenodo.org/api/records/?q=creators.orcid:"0000-0002-5350-067X" returns results.</p>
    2328
    2429    <form method="post" name="display_your_zenodo_community_options" action="options.php">
     
    2732        //Grab all options
    2833        $display_your_zenodo_community_options = get_option( $this->plugin_name );
    29         $id_community = $display_your_zenodo_community_options['id_community'];
     34        $choice = $display_your_zenodo_community_options['choice'];
     35        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
    3036
    3137        $html = "<tr>
    3238                    <th scope=\"row\">
    33                         <label for=\"" . $this->plugin_name . "-id-community\">" . translate('Name of community (e.g. dariah)',
     39                        <label for=\"" . $this->plugin_name . "-choice\">" . translate('Choice of community or orcid',
     40                $this->plugin_name) . "</label>
     41                    </th>
     42                    <td>
     43                        <select name=\"" . $this->plugin_name . "[choice]\" id=\"" . $this->plugin_name . "-choice\">
     44                            <option value=\"community\"" . (($choice=='community')?" selected=\"selected\"":"") . ">Community</option>
     45                            <option value=\"orcid\"" . (($choice=='orcid')?" selected=\"selected\"":"") . ">ORCID</option>
     46                        </select>
     47                    </td>
     48                </tr>";
     49        $html .= "<tr>
     50                    <th scope=\"row\">
     51                        <label for=\"" . $this->plugin_name . "-id-community-orcid\">" . translate('Value (e.g. dariah or 0000-0002-5350-067X)',
    3452                $this->plugin_name) . "</label>
    3553                    </th>
    3654                    <td>
    37                         <input name=\"" . $this->plugin_name . "[id_community]\" id=\"" . $this->plugin_name
    38                         . "-id-community\" value=\"" . $id_community . "\" type=\"text\">
     55                        <input name=\"" . $this->plugin_name . "[id_community_orcid]\" id=\"" . $this->plugin_name
     56                        . "-id-community-orcid\" value=\"" . $id_community_orcid . "\" type=\"text\">
    3957                    </td>
    4058                </tr>";
  • display-your-zenodo-community/trunk/includes/class-display-your-zenodo-community.php

    r2308089 r2333508  
    5454            $this->version = ZENODO_PLUGIN_VERSION;
    5555        } else {
    56             $this->version = '1.0.3';
     56            $this->version = '1.1.0';
    5757        }
    5858        $this->plugin_name = 'display-your-zenodo-community';
  • display-your-zenodo-community/trunk/public/class-display-your-zenodo-community-public.php

    r2300116 r2333508  
    9696     */
    9797    public function display_zenodo_data() {
     98        $display_your_zenodo_community_options = get_option( $this->plugin_name );
     99        $choice = $display_your_zenodo_community_options['choice'];
     100        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
     101
    98102        $page = 1;
    99103        if( is_numeric( get_query_var( 'zenodo_page' ) ) ) {
     
    109113            $html .= "<span class=\"wphal-nbtot\">";
    110114            $html .= $result_api->aggregations->access_right->buckets[0]->doc_count;
    111             $html .= "</span>" . " documents";
     115            $html .= "</span>" . " documents (from " . ($choice=='community'?"Community \"":"ORCID \"") .
     116                     $id_community_orcid . "\")";
    112117            $html .= "</div>";
    113118        }
     
    129134            }
    130135            if( isset( $hit->metadata->version ) ) {
    131                 $html .= " (Version " . $hit->metadata->version . ").";
    132             }
    133             $html .= " Zenodo.";
     136                $html .= " (Version " . $hit->metadata->version . ")";
     137            }
     138            $html .= ". Zenodo.";
    134139            if( isset( $hit->links->doi ) ) {
    135140                $html .= " <a href='" . $hit->links->doi . "'>" . $hit->links->doi . "</a>";
     
    215220    public function zp_retrieve_json( $page = 1 ) {
    216221        $display_your_zenodo_community_options = get_option( $this->plugin_name );
    217         $id_community = $display_your_zenodo_community_options['id_community'];
    218         if( $id_community !== '' ) {
    219             $zenodo_api_url = "https://zenodo.org/api/records/?sort=mostrecent&size=10&communities=" . $id_community;
     222        $choice = $display_your_zenodo_community_options['choice'];
     223        $id_community_orcid = $display_your_zenodo_community_options['id_community_orcid'];
     224
     225        $zenodo_api_url = "";
     226        if( $choice == 'community' ) {
     227            $zenodo_api_url = "https://zenodo.org/api/records/?sort=mostrecent&size=10&communities=" . $id_community_orcid;
    220228            $zenodo_api_url .= "&page=" . $page;
    221 
    222 
     229        } elseif ( $choice == 'orcid' ) {
     230            $zenodo_api_url = "https://zenodo.org/api/records/?q=creators.orcid:%22" . $id_community_orcid . "%22";
     231            $zenodo_api_url .= "&page=" . $page;
     232        }
     233        if( $id_community_orcid !== '' && $zenodo_api_url !== '' ) {
    223234            $request = wp_remote_get( $zenodo_api_url );
    224235            if( is_wp_error( $request ) ) {
  • display-your-zenodo-community/trunk/zenodo-plugin.php

    r2308089 r2333508  
    1414 *
    1515 * @wordpress-plugin
    16  * Plugin Name:       Display your Zenodo Community
     16 * Plugin Name:       Display your Zenodo Publications
    1717 * Plugin URI:        https://github.com/dariah-eric/display-your-zenodo-community
    1818 * Description:       This plugin allows user to view their community data from Zenodo on WordPress
    19  * Version:           1.0.3
     19 * Version:           1.1.0
    2020 * Author:            DARIAH-EU
    2121 * Author URI:        https://www.dariah.eu
Note: See TracChangeset for help on using the changeset viewer.