Jump to content

13.

Members
  • Posts

    1,233
  • Joined

  • Days Won

    6

 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 13.

  1. It looks like one important question was missed in the off-topic messages flow:
  2. Check if this problem exists in the default theme. If it reproduces even there, then submit a ticket with a bug report (ticket) in your client area.
  3. You (IPS) can load polyfills only when they are needed and don't waste the traffic for the majority of browsers.
  4. Also, I would love to see limits for the number of reactions of the specific types given to one user within some defined period, i.e.: Maximum number of positive reactions allowed to give per user [value] per [period] Maximum number of negative reactions allowed to give per user [value] per [period]
  5. 13.

    MS IE warning

    The easiest way to filter all ancient browsers from the IE epoch is just checking if CSS or CSS.supports are missed, because it present in all modern browsers and Edge 12+. if (typeof(CSS) === "undefined" || typeof(CSS.supports) === "undefined") { // Here you can do whatever you want to the visitors with ancient browsers from the IE epoch console.log('Your browser is out of date'); }
  6. 13.

    MS IE warning

    It looks like CSS Custom Properties currently are not used, so it would be easier to create correct checks if IPS tell us which exactly features not supported in older browsers they used in 4.5+.
  7. For IPS 4.4, changed this: <li><a class='ipsType_blendLinks' href='{$comment->item()->url()->setQueryString( array( 'do' => 'findComment', 'comment' => $comment->$idField ) )}' data-ipsTooltip title='{lang="share_this_post"}' data-ipsMenu data-ipsMenu-closeOnClick='false' id='elSharePost_{$comment->$idField}' data-role='shareComment'><i class='fa fa-share-alt'></i></a></li> to this: <li><a class='ipsType_blendLinks' href='{$comment->item()->url()->setQueryString( array( 'do' => 'findComment', 'comment' => $comment->$idField ) )}' data-ipsTooltip title='{lang="share_this_post"}' data-ipsMenu data-ipsMenu-closeOnClick='false' id='elSharePost_{$comment->$idField}' data-role='shareComment'>#{$comment->$idField} <i class='fa fa-share-alt'></i></a></li> In this template:
  8. 13.

    MS IE warning

    Actually not only IE but all browsers which do not support modern features like CSS Custom Properties, etc. Sticking to IE in these checks is a bad idea.
  9. 13.

    MS IE warning

    It would be better to implement it via JS and check the supported features instead of the user agent.
  10. I hope this will be fixed in the future. We need this feature working this way. This flaw is the reason why the "Flag as spammer" feature is completely disabled on my communities. It's too dangerous since its irreversible.
  11. The maximum height for the embeds and uploaded videos must have a limit. Here is why.
  12. Resizing is cool, but it's not related to the suggestion. It's about compression, not about resizing. What about the feature which chooses the optimal format automatically instead of PNG? In a lot of cases, it would be JPG (as IPS does not support webp yet).
  13. Squoosh is an image compression web app made by Google Chrome Labs. It allows you to dive into the advanced options provided by various image compressors. Squoosh is open source. and it could be integrated into IPS. Here is why it's important: 1. The image below was pasted directly into editor using CTRL+V, and it's size is 875 kb. 2. The image below was pasted into squoosh.app using CTRL+V, saved with default settings and then uploaded to the post. Its size is just 42kb (x20.8 times better). *If IPS supported webp, then it could be just 32 kb, x27.4 times better. My suggestion is to give us an ability to save pasted images in the most efficient format instead of PNG.
  14. Such restrictions do not benefit the community. An open community is a very cheap, stable, and efficient way to product promotion and user retention. It's funny (and sad at the same time) what IPS still hasn't figured it out. The client lounge could be read-only for not active clients. Contributors section, the same way, could be read-only for those who did not contribute yet, as it has some topics which are useful for those who are just on the way to contribute.
  15. Yet another thing causing a big disappointment about IPS is the strange restrictions on the content on this website. Thanks. I hope you will add a way to rebuild old content (including user profiles, signatures, etc.) and change existing images from HTTP to HTTPS where it possible.
  16. Suggestion for IPS core functionality. It would be awesome to have an ability to Insert external images only by HTTPS, because: Insertion by HTTP causes warnings in the browser's URL bar. Image proxy has some downsides and not always could be a choice.
  17. 13.

    U2F Support (2FA)

    Here are some related posts and topics on these forums:
  18. 13.

    U2F Support (2FA)

    +1 vote for the suggestion to support U2F in the IPS core. It is supported in all modern browsers now. https://caniuse.com/#search=U2F Also, U2F is widely adopted and supported by companies and governments. It's already implemented in Amazon, Google, Facebook, Twitter, Microsoft, GitHub, GitLab, Dropbox, and many other internet giants. U2F is much more convenient to use compared to all currently supported 2FA methods.
  19. +1 for this feature request. We need this in IPS.
  20. For my communities, I fixed this issue showing the unique ID of the post. You can see it in action here.
×
×
  • Create New...