little-brother / sqlite-gui

Lightweight SQLite editor for Windows
GNU General Public License v2.0
1.07k stars 51 forks source link

Separate assets with extensions #147

Closed nalgeon closed 5 months ago

nalgeon commented 11 months ago

You've created some great custom extensions (odbc, ora etc). I'd be happy to add them to the SQLite package registry. But for this to work, the extensions should be distributed as a separate flat archive. For example:

extensions-x64.zip
├── exec.dll
├── odbc.dll
├── ora.dll
└── xml.dll

extensions-x86.zip
├── exec.dll
├── odbc.dll
├── ora.dll
└── xml.dll

Can you publish them as part of your release process?

little-brother commented 11 months ago

Hmmm, I'm not sure that these extensions should be regestered without changes (maybe except xml). odbc and exec can be run only on Windows. So they need *nix support. ora contains mostly random function set e.g. levenshtein-function have to be removed into lang-extension like distlib.

nalgeon commented 11 months ago

I think it's perfectly fine to have Windows-only extensions in the registry. There are a lot of Windows users, why not let them benefit from your extensions. But that's entirely up to you, of course.

little-brother commented 5 months ago

Check https://github.com/little-brother/sqlite-extensions I have created my own extension repository and I don't use yours because I need a some repository with binaries and help files to install extensions in the app by one click

изображение

nalgeon commented 5 months ago

Thank you! I've added your extensions to the registry.