You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Users/ffont/Developer/FreesoundUploader/FreesoundUploader/Source/FreesoundUpload.h:225:7: No viable conversion from 'const char [49]' to 'juce::URL'
/Users/ffont/Developer/FreesoundUploader/FreesoundUploader/Source/PluginEditor.h:571:7: No viable conversion from 'const char [43]' to 'juce::URL'
Fixed them by replacing URL url = "http://example.com"; by URL url = URL("http://example.com"); so URL constructor is used instead of converting from String. See JUCE URL class reference.
After the changes above I could compile the project. These are some comments.
Had to disable VST2 target to compile.
I can load plugin as standalone and I can log in to Freesound.
Plugin (AU) fails validation in Logic Pro auvaltool so I could not use it in Logic Pro.
Plugin loads in Bitwig Studio, I can log in to Freesound but I can't drop any audio (drop does not work).
Using the standalone version, I tried to upload a sound and it failed, but no error message was shown. I was not able to do any successful upload.
Would be nice to show uploading percentage.
Make username visible when logged in. You could show the user avatar.
I had the following compilation errors:
Fixed them by replacing
URL url = "http://example.com";
byURL url = URL("http://example.com");
soURL
constructor is used instead of converting fromString
. See JUCE URL class reference.After the changes above I could compile the project. These are some comments.
auvaltool
so I could not use it in Logic Pro.The text was updated successfully, but these errors were encountered: