Jump to content

CodingJungle

Clients
  • Posts

    3,066
  • Joined

  • Days Won

    31

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by CodingJungle

  1. hello 2.4.0 node app for babble has changed a decent amount from the previous version. in the changelog for 2.4.0 it mentions about following the new install guide to get the latest version running again: i would imagine you are getting the not connected error due to it running the old babble node app, since you didn't mention following the new guide or anything.
  2. ran out of steam about 11pm last night, and been at work all day today still got a few more hours of this grind, then when i get home i'll try to finish it off tonight blame n2a for the delay, i spent 3 times as long as i wanted to on it, fighting with it
  3. it is coming, i promise. hopefully later tonight, depends on how much steam i have left
  4. babble 2.4.0 self hosted has been released.
  5. showing off it fully implemented. there is a group setting, where you can set which groups can use it:
  6. been added to the "debug" list, will try to get to it after this weekend to see what could be causing it. as for your question, it will only grab links from content, it wont grab attachments, you will have to add those yourself. and here is a sneak peak of a new feature in names 2 avatar 3.3.0, user avatar builder:
  7. hopefully by monday i will have: babble 2.4.0 CJ Menu 4.2.4 Names 2 Avatar 3.3.0 and finally Downloads Plus 2.0.0 all ready and released
  8. you will need to either contact your host and ask them to increase the max upload size for your server or extract the contents of the n2a.tar and upload them in FTP to you server in applications/n2a (if the folder doesn't exist, create it first).
  9. well they aren't on automically, you have to enable them to begin with so if you want questions, you have to enable it. just a reminder i will be redesigning the layout of questions over the next few weeks, as they didn't turn out the way i wanted them too .
  10. that shouldn't be too hard to do, it might not be in the next version (where i'm adding several things from here). but i can certainly look at it and see which is the best way to approach it afterwards .
  11. no it just adds the tabs "details" "changelog" "support" and "questions", details is the "description" that you input when you create the download. "changelog" is what is put into the "whats new box" when you upload a new version. "support" and "questions" are custom things i've added in. support is in fact a content item i've created specifically for the use. you can also reorder the tabs. as for doing a "custom tabs", i'm sure it is doable but really depends on what you want to do with it. if you just want to "display" static information like details does, but something more eleborate like review/comments/support/questions would take some seriously thought and a bit of work to get done.
  12. it is suppose to be falling back to the "default" avatar in this case, but there seems to be a bug in n2a. I'll get an update out in a few days (as i am also updating how images are generated, to improve speed and what can be done with them. like the clubs feature if you used it, would have noticed it has an image overlay to it, with color's and text, i am planning on bringing a similar feature to the avatars/monsters/forums and downloads, but it needed a fair bit of work to the image generator.)
  13. @Unlucky could you provide me with ACP access to the site that is having the issue? as soon as i installed the update to my personal site last night, it went from 25 to page to 10 per page. it might be something else causing the issue.
  14. If you are currently registered at my site and have purchased an item from there and wish your invoice to be transferred here to the IPS market, please send me a PM with your username there and i can generate you a invoice here, please take note that renewal conditions are different here than they are at my store.
  15. To make things easier, all my apps will share a support topic. if need be, I'll separate them out.
  16. i think the right question would be, what can be done to satiate both requirements? i would like to use some of these things that traits would allow me too without using an item's class, and allow you to abstract to the metal.
  17. take the report system, if i wanted to use that and not use content/item/comment classes, i have to reproduce all that code for it. with a trait, i'd just call the trait... you also have like the 8k lines that Items.php has, would be greatly reduced. which would optimize and reduce memory usage for the core classes if traits were used. (i know not by much, but every little bit can help, and IPS is already heavy). so there are trade offs to the "interior decorator" design pattern as well.
  18. yeah its not a perfect idea, but its the price we pay living in a single inheritance language lol
  19. well not at the \IPS\Content, \IPS\Content\Item and \IPS\Content\Comment, you would need to do it in like \IPS\forums\Topic\Post to be able to overload it (as the trait would overload your overload via a hook). if they insist on using traits, i would suggest they make them merely wrappers for other classes, like move all the reactable methods to say reactableClass.php, then in reactable just do: public function removeReaction( \IPS\Member $member = null ){ \IPS\Content\Classes\reactableClass::removeReaction( $member ); } that way we can hook into reactableClass.php and the trait could be used as normal.
  20. yes, that is the forum level one, i was making sure that is the one you were talking about. I have a site where we do "live tv" comments, and was thinking this would come in handy in some of the topics. I will let you know if i develop something for it.
×
×
  • Create New...