Componenti aggiuntivi per Firefox
  • Estensioni
  • Temi
    • per Firefox
    • Dizionari e language pack
    • Altri siti
    • Componenti aggiuntivi per Android
Accedi
Icona componente aggiuntivo

Cronologia versioni di Itaku Enhancement Suite - 18 versioni

Itaku Enhancement Suite di foxyoreos

Non ci sono ancora valutazioni
0 stelle su 5
5
0
4
0
3
0
2
0
1
0
Cronologia versioni di Itaku Enhancement Suite - 18 versioni
  • Attenzione alle versioni datate. Sono visualizzate solamente per scopi di test e di riferimento.È raccomandato usare sempre l’ultima versione di un componente aggiuntivo.

  • Ultima versione

    Versione 0.8.6

    Rilasciato 18 gen 2024 - 539,35 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Features

    - Adds an option to highlight the "Suggest Tags/Maturity" button on images that contain the #tagme tag.

    ## Fixes

    - Fixes an Itaku issue where bookmarked images wouldn't show up in bookmark folders if they were unlisted.

    # Extension

    ## Fixes

    - Fixes an issue where blacklisted users would not show content warnings if they were unfiltered.

    - Fixes an issue where reshares of content from blacklisted users could break the page.

    - Fixes an issue where '#' and '"' were not stripped from pasted tags.

    - Fixes an issue where blocking user content would also block their comments.

    - Fixes an issue where blocking user content required refreshing the page to take effect.

    - Updates the site themes so that sticky headers work on all of them again.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Devi utilizzare Firefox per poter installare questa estensione
    Scarica Firefox e installa l’estensione
    Scarica file
  • Versioni precedenti

    Versione 0.8.5

    Rilasciato 24 dic 2023 - 537,36 kB
    Compatibile con firefox109.0a1 e successive
    # Extension

    ## Fixes

    - Updated privacy policy in main codebase

    - Fixed bug where extension settings were glitching out occasionally when being set.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.8.4

    Rilasciato 24 dic 2023 - 537,1 kB
    Compatibile con firefox109.0a1 e successive
    # Extension

    ## Fixes

    - Removed notification UI since the site has notification previews natively now :3

    - Fixed an issue where pages that were left open would "forget" the list of blocked users, causing them to show up on your feed again.

    - Added new routes in the submission notifications inbox to the extension.

    - Changed language around notification suppression to make it clearer that the default behavior isn't a bug, the extension is just making the behavior stricter and a bit more consistent.

    ## Privacy

    User id, blocked tags, and blocked users are now stored in localStorage, not just in sessionStorage. In practice, I don't think this changes much if anything about the privacy model, most user settings for the extension were already stored in there, and the same privacy guarantees apply. However, when possible I wanted to try and get away with using sessionStorage since it gets auto-cleared. Turns out it's not possible for this, it makes blocking a lot less reliable.

    I'm working in the future on getting more controls over exporting and deleting locally stored data within the extension, for now the privacy model is exactly the same, but more control should come in the future.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.8.3

    Rilasciato 13 dic 2023 - 537,02 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Fixes

    - The most recent Itaku update caused notifications to start showing up in the title even if you had submission notifications turned off, this causes them to respect the site setting again.

    # Extension

    ## Fixes

    - Fixes an issue where user overrides for content warnings weren't applied to posts.

    - Several styling fixes for sticky headers making them both more consistent and making folders on user profile pages stay visible when scrolling as well.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.8.2

    Rilasciato 6 dic 2023 - 536 kB
    Compatibile con firefox109.0a1 e successive
    # Extension

    ## Fixes

    - Fixes an issue where blocklist code could force settings changes to go into an infinite loop

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.8.1

    Rilasciato 6 dic 2023 - 536,02 kB
    Compatibile con firefox109.0a1 e successive
    # Extension

    ## Fixes

    - Fixed an issue where tabs being left idle could clear out the current cached user metadata and then would fail requests when trying to do blocking based on it.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.8.0

    Rilasciato 6 dic 2023 - 536,01 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Features

    - Search improvements: copy-paste controls and an option to discard tag auto-completions for tags that you've already added.

    - Added option to make feed headers "sticky" so that navigation and filtering controls stay visible even when scrolling.

    - Added content-warning overrides per-user.

    - Added (limited) support for using content warnings as tags for the purposes of blocklisting. This should help in scenarios where an artist has added a content warning but has forgotten to add the equivalent tags.

    ## Privacy

    - To enable tag conversions for content warnings, the user's list of blocked tags is stored alongside the username/id in session storage (cleared whenever the browser window closes).

    # Extension

    ## Architecture

    - Front-end architecture added for injecting clientside fixes directly into Angular state. This allows for some much more granular fixes since code can respond to and manipulate application state directly. Clientside fixes are strictly sandboxed from the rest of the extension and have no references back to extension code to help prevent any potential security issues. If bugs pop up, this architecture can currently be disabled via the "experimental" section of the extension settings, but I don't anticipate any problems.

    - Added back-end architecture to support tag expressions, but they aren't currently exposed in settings anywhere. There are a few more chores to take care of before this feature is launched.

    ## Fixes

    - Fixed an issue where the signed XPI was using a temporary ID, meaning that users that installed outside of the Mozilla Addon store might lose some of their settings when upgrading.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.7.0

    Rilasciato 13 nov 2023 - 528,19 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Features

    - Added option to bubble content warnings.

    - Improvements to strict blocking and tag blocking. The features should be more consistent and now shows more informative messages.

    - Added option to sort comments by ascending rather than descending.

    - Added option to hide your own posts from your home feed.

    - Added option to hide reshares of images that you've already starred on your home feed.

    ## Privacy

    - To enable strict blocking without breaking user blocking, the user's list of users to block showing content from is stored alongside the username/id in session storage (cleared whenever the browser window closes).

    # Extension

    ## Architecture

    - Reformated the code to make it easier to read and contribute to, and to pave the way for upcoming content-blocking features.

    ## Fixes

    - Blocklist bubbling is required now if strict blocking is enabled. This avoids some bugs with filtering reshares. It's possible this feature will be separated again in the future, but I don't have any current plans.

    - Removed image preview overhauls since Itaku's own image preview has now been improved to have the same features.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.6.0

    Rilasciato 19 set 2023 - 222,25 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Features

    * Added option to fully hide blocklisted tags everywhere

    * Added option to make blocklisted tags "bubble"

    ## Fixes

    * Allow searching for the "&" character in tags

    * More consistent handling of submission notification badge when submissions are muted

    # Extension

    ## Features

    * Collapsible categories and minor styling tweaks in settings

    ## Fixes

    * Fixes some styling issues with the full-page image viewer

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.5.0

    Rilasciato 13 ago 2023 - 218,89 kB
    Compatibile con firefox109.0a1 e successive
    # Site

    ## Features

    - Beta support for full-page image previews
    - Ability to hide follower counts
    - Hovering over notifications now shows larger text snippets

    ## Features

    - Settings are now part of the dropdown menu for the addon's icon in the Firefox toolbar. This should make them easier to access (and easier for me to maintain ;3)

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.4.2

    Rilasciato 24 lug 2023 - 124,01 kB
    Compatibile con firefox109.0a1 e successive
    # Extension Fixes

    - Fixes a bug where notifications would stop fetching text if the page was left open for a long time.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.4.1

    Rilasciato 7 lug 2023 - 123,76 kB
    Compatibile con firefox109.0a1 e successive
    Release notes:

    #site features
    - Better notification UI (notification dates are now visible again)

    #extension features
    - A small star icon next to the Itaku icon in the nav bar shows whether or not the extension is active on that page.

    #extension fixes
    - Notification caches are better at propagating across tabs
    - The notifications UI is better at recovering from being disconnected from the extension backend
    - In some instances, the profile link could get disconnected and stop working. This should be fixed now.
    - Hid temporary feature that would allow hiding follower counts (will return in a future version).

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.4

    Rilasciato 7 lug 2023 - 123,79 kB
    Compatibile con firefox109.0a1 e successive

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.3.3

    Rilasciato 18 giu 2023 - 120,34 kB
    Compatibile con firefox109.0a1 e successive
    # Extension changes

    - Upgraded to Manifest V3. This may break compatibility with older versions of Firefox, but I doubt anyone using this extension is on LTS releases of Firefox in the first place, and some of the privacy/security improvements are worth upgrading for.

    # Extension fixes

    - stability should be a bit better now, you should get fewer requests failing if you leave a page sitting for too long.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.3.2

    Rilasciato 18 giu 2023 - 120,04 kB
    Compatibile con firefox48.0 e successive
    #Extension fixes

    - fixes a bug where CW filters weren't persisting correctly

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.3.1

    Rilasciato 18 giu 2023 - 120,04 kB
    Compatibile con firefox48.0 e successive
    #extension fixes:

    - linked a missing CSS file

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.3

    Rilasciato 17 giu 2023 - 120,59 kB
    Compatibile con firefox48.0 e successive
    Release notes:

    #site features
    - Added beta support for extended notification descriptions in the notification drawer.

    #site fixes
    - Fixes an Itaku bug where clicking on content warning text didn't trigger the handler to show the content warning.
    - Fixes an Itaku bug where right-clicking on the user profile only gave you an image link instead of a link to your user profile.

    #extension fixes
    - Fixes a bug where blank lines for content warning keywords were treated as catch-all regexes, which could easily lead to unexpected filtering behavior.
    - Fixes a bug where content warnings on detailed views of posts with multiple images were not handled by the extension.

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
  • Versione 0.2

    Rilasciato 15 giu 2023 - 112,72 kB
    Compatibile con firefox48.0 e successive

    Codice sorgente rilasciato sotto licenza Licenza MIT

    Scarica file
Vai alla pagina principale del sito Mozilla

Componenti aggiuntivi

  • Informazioni
  • Blog sui componenti aggiuntivi per Firefox
  • Laboratorio estensioni
  • Centro di sviluppo
  • Criteri per sviluppatori
  • Blog della comunità
  • Forum
  • Segnala malfunzionamento
  • Guida per le recensioni

Browser

  • Desktop
  • Mobile
  • Enterprise

Prodotti

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Twitter (@firefox)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Informativa sulla privacy
  • Cookie
  • Note legali

Eccetto dove diversamente indicato, i contenuti su questo sito sono distribuiti con licenza Creative Commons Attribuzione Condividi allo stesso modo 3.0 o versioni successive.