Code Monkey home page Code Monkey logo

Comments (2)

0015 avatar 0015 commented on August 19, 2024 1

@per1234 Thanks. It's updated!

from library-registry.

per1234 avatar per1234 commented on August 19, 2024

Hi @0015. After the initial addition of the library, the indexer job periodically checks each of the libraries in the index and picks up any new release/tag that meets the requirements listed here:
https://github.com/arduino/library-registry/blob/main/FAQ.md#what-are-the-requirements-for-publishing-new-releases-of-libraries-already-in-the-library-manager-list

This means there is no need to take any additional action to add new releases of your library to Library Manager. They will be added automagically! It does take a little time for the indexer job to run, and then some additional time after that for the update to propagate through the CDN and the local cache. But it will get there.

You can monitor the indexing of the library releases by checking the library's dedicated indexer logs web page:
http://downloads.arduino.cc/libraries/logs/github.com/0015/TP_Arduino_DigitalRain_Anim/


The relevant lines of the logs are these:

2021/11/09 04:16:04 Checking out tag: 1.2.0
2021/11/09 04:16:04 Release Digital Rain Animation for TFT_eSPI:1.1.1 already loaded, skipping

Unfortunately, the logs don't communicate about this particular thing very well, but what this tells us is that you forgot to update the version value in library.properties before making the 1.2.0 release:
https://github.com/0015/TP_Arduino_DigitalRain_Anim/blob/1.2.0/library.properties#L2

version=1.1.1

One of the requirements I mentioned above is that each release must have a unique version value. Since this one didn't, it was not indexed. I see you have updated the version value since then, but the indexer works only from Git tags, so it can't see that.

The solution is to do this:

  1. Update the version value in library.properties to 1.2.1:
    version=1.2.1
    
  2. Make a 1.2.1 release/Git tag of the library.

Even though the 1.2.0 release won't be in Library Manager, the 1.2.1 release is almost identical, so the version skip won't be an issue for the users.

from library-registry.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.