Plugin Directory

Changeset 734093


Ignore:
Timestamp:
06/29/2013 06:58:10 PM (13 years ago)
Author:
sealsystems
Message:

6.2.1

  • Updated: Apple's RSS generator is now at https://rss.itunes.apple.com/
  • Fixed: Issue with Display element without accordian was not respecting setting [Thanks Aslan Guseinov & broetchen]
  • Fixed: 'No Featured Image Found' was not displaying properly when adding Featured Images [Thanks doone]
Location:
app-store-assistant
Files:
2 deleted
5 edited
33 copied

Legend:

Unmodified
Added
Removed
  • app-store-assistant/tags/6.2.1/app-store-assistant.php

    r719552 r734093  
    22/*
    33Plugin Name: App Store Assistant
    4 Version: 6.2.0
     4Version: 6.2.1
    55Text Domain: appStoreAssistant
    66Plugin URI: http://TheiPhoneAppsList.com/
  • app-store-assistant/tags/6.2.1/includes/app-store-admin_functions.php

    r719552 r734093  
    775775        return;
    776776    } else {
    777         echo "<hr>"._('No Featured Image Found',appStoreAssistant)."<br />";
     777        echo "<hr>".__('No Featured Image Found',appStoreAssistant)."<br />";
    778778    }
    779779   
  • app-store-assistant/tags/6.2.1/includes/app-store-functions.php

    r719552 r734093  
    10651065
    10661066function getAccordionCode ($DisplayElement,$cssClass,$accState, $Description="Section") {
     1067    $baseCSSClass = "accordion-$cssClass";
    10671068    $cssClass = $cssClass.'-'.rand();
    10681069    $AccordionCode = "";
    1069     if ($accState == "open" || $accState = "closed") {
     1070    if ($accState == "open" || $accState == "closed") {
    10701071        $AccordionCode = "<script>\r";
    10711072        $AccordionCode .= "jQuery(function() {\r";
     
    10781079        $AccordionCode .= "</script>\r";
    10791080        $AccordionCode .= '<div style="clear:left;">&nbsp;</div>';
     1081        $AccordionCode .= '<div class="'.$baseCSSClass.'">';
    10801082        $AccordionCode .= '<div id="accordion-'.$cssClass.'">';
    10811083        $AccordionCode .= "<h3>$Description</h3>";
    10821084        $AccordionCode .= '<div class="'.$cssClass.'">';
    10831085        $AccordionCode .=  $DisplayElement;
    1084         $AccordionCode .= '</div></div>';
     1086        $AccordionCode .= '</div></div></div>';
     1087
    10851088    } elseif($accState == "yes") {
    10861089        $AccordionCode = '<div style="clear:left;">&nbsp;</div>';
     
    13961399     
    13971400     if ($elementOnly) return $element;
    1398      return getAccordionCode ($element,"appStore-appDetails",appStore_setting('displayappdetailssection'),"App Details");
    1399 
     1401     return getAccordionCode ($element,"appStore-appDetails",appStore_setting('displayappdetailssection'),__('App Details',appStoreAssistant));
    14001402}
    14011403
  • app-store-assistant/tags/6.2.1/includes/options_pages/options_help_shortcodes.php

    r719552 r734093  
    5050<li>[asaf_atomfeed atomurl="http://iTunes.apple.com/us/rss/toppaidmacapps/limit=25" mode="iOS" more_info_text="open in App Store..."]<p>Displays the items from the ATOM feed in a formatted view</p>
    5151    <ul>
    52     <li>atomurl: feed URL supplied by Apple RSS Generator<p>These feeds can be generated here: <i>http://itunes.apple.com/rss</i>.</p></li>
     52    <li>atomurl: feed URL supplied by Apple RSS Generator<p>These feeds can be generated here: <i>https://rss.itunes.apple.com/</i>.</p></li>
    5353    <li>mode: [iOS, Mac or iTunes]</li>
    5454    <li>more_info_text: Excerpt "more info" link text (optional)</li>
  • app-store-assistant/tags/6.2.1/readme.txt

    r719552 r734093  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 6.2.0
     7Stable tag: 6.2.1
    88License: GPLv3 or later
    99
     
    114114== Changelog ==
    115115
     116= 6.2.1 =
     117* Updated: Apple's RSS generator is now at https://rss.itunes.apple.com/
     118* Fixed: Issue with Display element without accordian was not respecting setting [Thanks Aslan Guseinov & broetchen]
     119* Fixed: 'No Featured Image Found' was not displaying properly when adding Featured Images [Thanks doone]
     120
    116121= 6.2.0 =
    117122* Added: You can now display elements in an open/closable accordion view
  • app-store-assistant/trunk/app-store-assistant.php

    r719552 r734093  
    22/*
    33Plugin Name: App Store Assistant
    4 Version: 6.2.0
     4Version: 6.2.1
    55Text Domain: appStoreAssistant
    66Plugin URI: http://TheiPhoneAppsList.com/
  • app-store-assistant/trunk/includes/app-store-admin_functions.php

    r719552 r734093  
    775775        return;
    776776    } else {
    777         echo "<hr>"._('No Featured Image Found',appStoreAssistant)."<br />";
     777        echo "<hr>".__('No Featured Image Found',appStoreAssistant)."<br />";
    778778    }
    779779   
  • app-store-assistant/trunk/includes/app-store-functions.php

    r719552 r734093  
    10651065
    10661066function getAccordionCode ($DisplayElement,$cssClass,$accState, $Description="Section") {
     1067    $baseCSSClass = "accordion-$cssClass";
    10671068    $cssClass = $cssClass.'-'.rand();
    10681069    $AccordionCode = "";
    1069     if ($accState == "open" || $accState = "closed") {
     1070    if ($accState == "open" || $accState == "closed") {
    10701071        $AccordionCode = "<script>\r";
    10711072        $AccordionCode .= "jQuery(function() {\r";
     
    10781079        $AccordionCode .= "</script>\r";
    10791080        $AccordionCode .= '<div style="clear:left;">&nbsp;</div>';
     1081        $AccordionCode .= '<div class="'.$baseCSSClass.'">';
    10801082        $AccordionCode .= '<div id="accordion-'.$cssClass.'">';
    10811083        $AccordionCode .= "<h3>$Description</h3>";
    10821084        $AccordionCode .= '<div class="'.$cssClass.'">';
    10831085        $AccordionCode .=  $DisplayElement;
    1084         $AccordionCode .= '</div></div>';
     1086        $AccordionCode .= '</div></div></div>';
     1087
    10851088    } elseif($accState == "yes") {
    10861089        $AccordionCode = '<div style="clear:left;">&nbsp;</div>';
     
    13961399     
    13971400     if ($elementOnly) return $element;
    1398      return getAccordionCode ($element,"appStore-appDetails",appStore_setting('displayappdetailssection'),"App Details");
    1399 
     1401     return getAccordionCode ($element,"appStore-appDetails",appStore_setting('displayappdetailssection'),__('App Details',appStoreAssistant));
    14001402}
    14011403
  • app-store-assistant/trunk/includes/options_pages/options_help_shortcodes.php

    r719552 r734093  
    5050<li>[asaf_atomfeed atomurl="http://iTunes.apple.com/us/rss/toppaidmacapps/limit=25" mode="iOS" more_info_text="open in App Store..."]<p>Displays the items from the ATOM feed in a formatted view</p>
    5151    <ul>
    52     <li>atomurl: feed URL supplied by Apple RSS Generator<p>These feeds can be generated here: <i>http://itunes.apple.com/rss</i>.</p></li>
     52    <li>atomurl: feed URL supplied by Apple RSS Generator<p>These feeds can be generated here: <i>https://rss.itunes.apple.com/</i>.</p></li>
    5353    <li>mode: [iOS, Mac or iTunes]</li>
    5454    <li>more_info_text: Excerpt "more info" link text (optional)</li>
  • app-store-assistant/trunk/readme.txt

    r719552 r734093  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 6.2.0
     7Stable tag: 6.2.1
    88License: GPLv3 or later
    99
     
    114114== Changelog ==
    115115
     116= 6.2.1 =
     117* Updated: Apple's RSS generator is now at https://rss.itunes.apple.com/
     118* Fixed: Issue with Display element without accordian was not respecting setting [Thanks Aslan Guseinov & broetchen]
     119* Fixed: 'No Featured Image Found' was not displaying properly when adding Featured Images [Thanks doone]
     120
    116121= 6.2.0 =
    117122* Added: You can now display elements in an open/closable accordion view
Note: See TracChangeset for help on using the changeset viewer.