Jump to content

Adriano Faria

Clients
  • Posts

    31,859
  • Joined

  • Days Won

    475

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by Adriano Faria

  1. The error itself is because you seem to have restricted the number of messages per minute. You need to try to find the reason why it is trying to send multiple messages to same person instead of just one. Disable all 3rd-party resources that changes something in the messenger and test it.
  2. I’ll do it in the morning, when I reach my PC and will send you a message. If I can find a good API, I can give some thought yes.
  3. Sure, it’s a language bit. You can change it in your ACP. It’s per forum/member group. I mean, you can set Members group to have 1 topic in Forum1 per day/week/month/year, so this restriction will be applied for all users in Members group.
  4. Let me know if you need to use it after your tests. I can set-up a test account on my board tomorrow.
  5. I’ll check it out tomorrow and will release a fix.
  6. It has some fixes (above in this topic) that isn't fine for some users to perform file edits so I'll have to release it soon.
  7. Ok, went ahead and create the widget. So now you have: 1: a contextual sidebar block (not a widget) to display subcategories of the category you're browing and it is enabled/disabled via setting; if you're on index, then all categories will show up (first block in the image below). 2: a widget where will display ALL existing categories, no matter where you are ( second block in the image below). --------------------------------------------------------------------- I'm working on another feature so expect a new version later next week.
  8. Not a widget. It's a "hardcoded" block eanbled by a setting but yes, missing in category. I'll add in next version. It's in the script: if( \IPS\Settings::i()->movies_sidebar_category ) { \IPS\Output::i()->sidebar['contextual'] = \IPS\Theme::i()->getTemplate( 'browse' )->indexSidebar( \IPS\movies\Category::canOnAny('add'), $category ); } but not in the settings form indeed.
  9. I’ll improve it by passing the type as a parameter too in next version. I can provide a file edit later, if that helps.
  10. Couldn't agree more.
  11. @ChrisVanMeer, it works in 4.5. I will adjust it to the new rules so it shows up in the ACP Marketplace but you can use it by downloading it, as you always did before.
  12. @Malwarebytes Forums, it works in 4.5. I will adjust it to the new rules so it shows up in the ACP Marketplace but you can use it by downloading it.
  13. Sorting: It works in 4.5. I will adjust it to the new rules so it shows up in the ACP Marketplace but you can use it by downloading it.
  14. In categories it shows its subcategories.
  15. It is basically a ")" in a wrong place. I had this right now in my app: The error: $type == 'tv' ? $data['number_of_episodes'] :? 0 : 0; :? instead of ?: Hope it helps.
  16. Change this one to: $movie->episodes = $type == 'tv' ? $data['number_of_episodes'] ?: 0 : 0; Also, change in applications\movies\sources\Movie\Movie.php from $this->release_date = \IPS\Request::i()->movie_release_date; to: $this->release_date = \IPS\Request::i()->movie_release_date ?: NULL; This one also doesn't has Genres, so it will show empty in the movie view: I've fixed this for the next version. If you are ok editing template too, then in the view template, find: <li class="ipsDataItem"> <span class="ipsDataItem_generic ipsDataItem_size3"><strong>{lang="movie_genres"}</strong></span> {{$genres = \IPS\movies\Movie::getGenreName( explode( ',', $movie->genres ) );}} <span class="ipsDataItem_generic">{$genres}</span> </li> Change to: {{if $movie->genres}} <li class="ipsDataItem"> <span class="ipsDataItem_generic ipsDataItem_size3"><strong>{lang="movie_genres"}</strong></span> {{$genres = \IPS\movies\Movie::getGenreName( explode( ',', $movie->genres ) );}} <span class="ipsDataItem_generic">{$genres}</span> </li> {{endif}} I will send you a PM in a few minutes with an account on my board so you can post bugs in the Tracker. 👍
  17. There’s a reimport data in Movie Actions menu. It will update all data saved, which is everything except the tabs content.
  18. @ChrisTERiS, can you tell me the name of the tv show and the language used so I can try the fix? ------------------ EDIT: Got it from your error. The fix is simple. Via FTP, download and open the file applications\movies\modules\front\movies\view.php and find: $movie->runtime = $time; Change to: $movie->runtime = $time ?: 0; Save and upload.
  19. New version submitted to fix this issue. Follow the file to get notified when IPS review and approve it.
  20. There was a notice about two columns in the previous version but it is fixed in the current version.
  21. Thanks. This app adds records in 3 different places. Knowing where it is will help. I’ll check all of them anyway. Stuart mentioned a fix in the Community Map about the CSS issue. I mean, I think he’s talking about it and not about the app. Make sure you have this patch.
  22. Also, I can make any topic here on IPS be the most viewed topic in whole IPS history by simply installing a browser extension that refreshes the page at X seconds, like https://chrome.google.com/webstore/detail/page-refresh/hmooaemjmediafeacjplpbpenjnpcneg?hl=pt-BR Boom, my topic will be the most important with absolutely no relevant content in it. Just #views increased.
×
×
  • Create New...