├── .gitignore ├── .gitmodules ├── CONTRIBUTORS.md ├── LICENSE.md ├── Procfile ├── README.md ├── client ├── examples │ ├── README.md │ └── UnlockExample │ │ ├── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── license_data.cpp │ │ └── UnlockExample.jucer ├── modules │ └── licensing │ │ ├── Client │ │ ├── Connection.cpp │ │ ├── Connection.h │ │ ├── LicensingData.h │ │ ├── Unlocker.cpp │ │ └── Unlocker.h │ │ ├── GUI │ │ ├── LicensingGUI.cpp │ │ ├── LicensingGUI.h │ │ ├── WelcomePopup.cpp │ │ └── WelcomePopup.h │ │ ├── licensing.cpp │ │ └── licensing.h └── product_template.h ├── requirements.txt └── server ├── LicenseServer ├── LicenseServer │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Licenses │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── fixture.json │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── manage.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/README.md -------------------------------------------------------------------------------- /client/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/README.md -------------------------------------------------------------------------------- /client/examples/UnlockExample/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /client/examples/UnlockExample/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/Source/PluginEditor.h -------------------------------------------------------------------------------- /client/examples/UnlockExample/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /client/examples/UnlockExample/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/Source/PluginProcessor.h -------------------------------------------------------------------------------- /client/examples/UnlockExample/Source/license_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/Source/license_data.cpp -------------------------------------------------------------------------------- /client/examples/UnlockExample/UnlockExample.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/examples/UnlockExample/UnlockExample.jucer -------------------------------------------------------------------------------- /client/modules/licensing/Client/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/Client/Connection.cpp -------------------------------------------------------------------------------- /client/modules/licensing/Client/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/Client/Connection.h -------------------------------------------------------------------------------- /client/modules/licensing/Client/LicensingData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/Client/LicensingData.h -------------------------------------------------------------------------------- /client/modules/licensing/Client/Unlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/Client/Unlocker.cpp -------------------------------------------------------------------------------- /client/modules/licensing/Client/Unlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/Client/Unlocker.h -------------------------------------------------------------------------------- /client/modules/licensing/GUI/LicensingGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/GUI/LicensingGUI.cpp -------------------------------------------------------------------------------- /client/modules/licensing/GUI/LicensingGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/GUI/LicensingGUI.h -------------------------------------------------------------------------------- /client/modules/licensing/GUI/WelcomePopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/GUI/WelcomePopup.cpp -------------------------------------------------------------------------------- /client/modules/licensing/GUI/WelcomePopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/GUI/WelcomePopup.h -------------------------------------------------------------------------------- /client/modules/licensing/licensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/licensing.cpp -------------------------------------------------------------------------------- /client/modules/licensing/licensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/client/modules/licensing/licensing.h -------------------------------------------------------------------------------- /client/product_template.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/LicenseServer/LicenseServer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/LicenseServer/LicenseServer/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/LicenseServer/asgi.py -------------------------------------------------------------------------------- /server/LicenseServer/LicenseServer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/LicenseServer/settings.py -------------------------------------------------------------------------------- /server/LicenseServer/LicenseServer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/LicenseServer/urls.py -------------------------------------------------------------------------------- /server/LicenseServer/LicenseServer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/LicenseServer/wsgi.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/admin.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/apps.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/fixtures/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/fixtures/fixture.json -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/models.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/tests.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/urls.py -------------------------------------------------------------------------------- /server/LicenseServer/Licenses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/Licenses/views.py -------------------------------------------------------------------------------- /server/LicenseServer/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/LicenseServer/manage.py -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/LicenseServer/HEAD/server/README.md --------------------------------------------------------------------------------