On Wed, 16 Jan 2019 14:09:00 +0000 Lyberta wrote: > https://lyberta.net/articles/tech/free_sw_untrusted.html
i think you are quite mistaken about JUCE - it does indeed contain a phone "home feature"; which caused a huge fuss within the community, which lasted for about 2 days, until everyone realized how harmless and un-intrusive it actually was that anti-feature is a restriction only on those who opt in for the free tier of the commercial license; in order to write proprietary software with JUCE without a licensing fee - so any JUCE-based program with that feature enable is almost certainly not "free software" but JUCE may also be taken as GPL, which naturally gives the developer and all users the option to disable that feature (and any other undesirable ones) - those features are fully disclosed and simple to disable with a single #define #define JUCER_ENABLE_GPL_MODE 1 doing so, will disable the new anti-features by default in any program you create with your copy of JUCE, including the one in question here: #define JUCE_REPORT_APP_USAGE 0 that is done in the same way and in the same file as where all JUCE sub-features have been enabled/disabled all along, along with others such as: #define JUCE_USE_FLAC 1 #define JUCE_USE_OGGVORBIS 1 _______________________________________________ libreplanet-discuss mailing list [email protected] https://lists.libreplanet.org/mailman/listinfo/libreplanet-discuss
