Well, there is the problem that we no longer host the libraries on GitHub though, so this will be pointing to outdated libraries. We need to do something with this for v6 to update it at least.
The plugin uses GitHub specific download formatting, so we can't move it to GitLab. Users would need to input their own GitHub repositories if they want to use their libraries on GitHub
For v7, does it make sense to add support for (remote) git libraries? E.g. using libgit2 to automatically sync the repo into some user directory. This should be a suitable replacement for the Github plugin, and is even offline capable.
Directly handling git even with libgit2 is going to crawl so far up the "workflow" domain that someone will be constantly fixing complaints. "I want it to pull --rebase each time!" "I want it to shallow pull" "I want it to merge!" "I want it to give me a diff and let me cherry pick!"
For v7, does it make sense to add support for (remote) git libraries? E.g. using libgit2 to automatically sync the repo into some user directory. This should be a suitable replacement for the Github plugin, and is even offline capable.
I am hesitant to go down this road, and in the past we have said we really don't want to integrate version control systems into our code (why should we reimplement a git client when there are plenty of them?)
The plugin uses GitHub specific download formatting, so we can't move it to GitLab. Users would need to input their own GitHub repositories if they want to use their libraries on GitHub
Then I definitely am questioning why we are going to provide links to the official KiCad libraries that are no longer being updated as the default for the plugin. I think this is better left to the docs, so they explain how to use the plugin, and as part of that what the proper environment variable to set is to use it. If we do that, I think we should remove the variable (or at least change it to something like please change me so it is obvious).
I'm in favor of removing the GitHub plugin altogether. It hasn't been updated this entire release cycle and only minimally touched during v5 only to fix a caching bug and make it harder to find. We're not really supporting it. I don't see the value in maintaining a feature that was never fully implemented, has caused considerable problems and no one is invested in updating. The major version release is the correct time to remove this.
You might want to do a quick poll on the user forum and the developer mailing list just to make sure no one is actually still using it before removing it. Otherwise, be prepared for the blow back if they are.
Owner of V4 repositories might want to check Insights/Traffic page on GitHub to estimate if the repositories are used. I don't know if access from KiCad shows there though.
For v7, does it make sense to add support for (remote) git libraries? E.g. using libgit2 to automatically sync the repo into some user directory. This should be a suitable replacement for the Github plugin, and is even offline capable.
Of course it does !!!! We are in 2020, 10 years after this 'thing' was written. At the time, there was not a real lib as of today. You probably had to roam the internet to find the symbol somewhere.
All that 'shit' is from the past.'fplibtables' has to be blown. That was used to limit memory probably, deal with lots of sources too.
Now 90% of symbols footprints are available and when you create some, you just expect to save them in your project's implicit auto created directory !
And when the librarian team will be functional, a personaly created footprint will be submitted, revised, published and globaly distributed in less than 30 days (dream).
@Franck78 You have been warned multiple times about posting abusive comments to the KiCad issue tracker. We have an established code of conduct that all members of the KiCad team abide by. As a bug reporter, you are also expected to follow these minimal requirements for professional behavior.
Because you have not followed these requirements, you currently have a 30 day suspension from posting to the KiCad issue tracker. Any comments or issues that you post during this time will be deleted.
After 30 days, we will lift the suspension. If you continue to post abusive, vulgar or derogatory comments, we will permanently ban you from the KiCad issue tracker.
It is more than a 'get zipfile plugin'. See here 9ed6cdd9 (Line 510)
There is a code-path for github, and one for just zip files.
Quite a lot of stuff is hard-coded for github, check the diff of 9ed6cdd9 for more locations.
But you are right, this is also a zipfile-plugin. A workaround for your usecase is to use a few lines of bash to archive the same thing. Download the file and extract it. Or is there something else?
It is more than a 'get zipfile plugin'. See here 9ed6cdd9 (Line 510) There is a code-path for github, and one for just zip files.
Quite a lot of stuff is hard-coded for github, check the diff of 9ed6cdd9 for more locations.
Yes I know them well, am currently cleaning all that stuff in my branch (+renaming it) to keep the plugin remote/zip only.
A workaround for your usecase is to use a few lines of bash to archive the same thing. Download the file and extract it.
Yes, that's the default way (a git pull list all files unzip all script), every body can tweek to meet the need.
Kicad now isn't only for hobby use, many are using it in a professional context.
The thing is that in a company, the paradigm is different from hobby, you kill any wasting/useless operation. Specially when you work very often in a new board.
When you hire someone you can either say the first day: "you need to get the script, and lunch it before every run, and check that the libs are updated....etc" -> 10% the time he calls you "I didn't find the component" then you answer, "did you run the script?" he says yes, then on so on so on... (true story)
Or, rather prefer saying: "run kicad, and all updated"
In our case we automated everything, and even working on a mysql plugin to be able to track the updates at the level of the component.
As I said it was late when I saw the group email. It would be preferable if the KIGITHUB env var was removed as a first step, and clean the function step by step, not remove all at once.
I'll try to fix drawbacks to make it more stable for a large panel of user.