Skip to content

Commit

Permalink
Start version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkatz committed Oct 2, 2015
1 parent 57a5a84 commit 9b2baa6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions gravityview.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Plugin Name: GravityView
* Plugin URI: http://gravityview.co
* Description: Create directories based on a Gravity Forms form, insert them using a shortcode, and modify how they output.
* Version: 1.14.4-beta
* Version: 1.15
* Author: Katz Web Services, Inc.
* Author URI: http://www.katzwebservices.com
* Text Domain: gravityview
Expand Down Expand Up @@ -90,7 +90,7 @@
*/
final class GravityView_Plugin {

const version = '1.14.4-beta';
const version = '1.15';

private static $instance;

Expand Down
10 changes: 5 additions & 5 deletions includes/class-gravityview-entry-notes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Class GravityView_Entry_Notes
* @since TODO
* @since 1.15
*/
class GravityView_Entry_Notes {

Expand All @@ -14,7 +14,7 @@ public function __construct() {
}

/**
* @since TODO
* @since 1.15
*/
private function add_hooks() {
add_filter( 'gform_notes_avatar', array( 'GravityView_Entry_Notes', 'filter_avatar' ), 10, 2 );
Expand All @@ -24,7 +24,7 @@ private function add_hooks() {
/**
* Alias for GFFormsModel::add_note() with default note_type of 'gravityview'
* @see GFFormsModel::add_note()
* @since TODO
* @since 1.15
* @param int $lead_id ID of the Entry
* @param int $user_id ID of the user creating the note
* @param string $user_name User name of the user creating the note
Expand Down Expand Up @@ -72,7 +72,7 @@ public static function get_notes( $entry_id ) {

/**
* @filter `gravityview/entry_notes/get_notes` Modify the notes array for an entry
* @since TODO
* @since 1.15
* @param stdClass[] $notes Integer-keyed array of note objects
* @param int $entry_id Entry to get notes for
*/
Expand All @@ -84,7 +84,7 @@ public static function get_notes( $entry_id ) {
/**
* Use the GravityView avatar for notes created by GravityView
* Note: The function is static so that it's easier to remove the filter: `remove_filter( 'gform_notes_avatar', array( 'GravityView_Entry_Notes', 'filter_avatar' ) );`
* @since TODO
* @since 1.15
* @param string $avatar Avatar image, if available. 48px x 48px by default.
* @param object $note Note object with id, user_id, date_created, value, note_type, user_name, user_email vars
* @return string Possibly-modified avatar
Expand Down

0 comments on commit 9b2baa6

Please sign in to comment.