ewerybody / a2

Autohotkey module managing and developing framework.
GNU General Public License v3.0
63 stars 10 forks source link

libs included by default #4

Open lipkau opened 9 years ago

lipkau commented 9 years ago

we should include some widely used libs by default

I am going to look into this and make a suggestion. I the place I will look into are:

ewerybody commented 9 years ago

the idea is also to have libs loaded on demand. So modules can request the use of a lib and if at least one is requesting: Its loaded. Otherwise not :]

ewerybody commented 5 years ago

I actually though about having a separate a2library repository on github. Where we can gather, develop and unittest the library... 🤔

What happened meanwhile is: libs moved to Autohotkey\libs which makes them super nicely flexible on demand.

Currently the dependencies with the packages and modules in place need to be sorted out first and ahklib sorted out ...

Generally: I'd like to see this handled like this: If a library is used by ONE module only: it does not goto the global lib right away but stays with the module. As soon as multiple (as in > 1) modules use the library lets look into global lib integration.