osoumen / C700

Software Sampler plugin for AU/VST and MacOSX/Windows
GNU Lesser General Public License v2.1
258 stars 16 forks source link

English manual translation #2

Open czchmate opened 7 years ago

czchmate commented 7 years ago

I translated the manual to English as best as I could. Here is the html file.

I saved it as a TXT file so that I could upload it. Just change the file type back to html and it should load fine. how_to_use_thec700(eng).txt

osoumen commented 7 years ago

@czchmate Great! What this document we may be distributed bundled and plug-ins ?

czchmate commented 7 years ago

You can distribute it.

Here are the 32-bit and 64-bit VST plug-ins compiled in the latest Visual Studio 2015 with Windows 10.0.10586.0 set as the target platform.

czchmate commented 7 years ago

Sorry. Here we go again. Just rename .txt to .dll and these plug-ins should work.

C700.txt C700_64.txt

osoumen commented 7 years ago

@czchmate Thank you. In , at the time of the next version up , it will also distribute English document .

Current binary of c700 is built with Visualstudio2013. What this is there was something of compatibility problems caused ? I am , if it is necessary , use the VisualStudio2015.

czchmate commented 7 years ago

Line 23 of C700_Prefix_VST.pch needs to be:

if _MSC_VER < 1900

#define snprintf _snprintf

endif

In Lines 522 and 523, the abs function needs to be fabs to utilize the double buf:

    if (max < fabs(buf[i]))
        max=fabs(buf[i]);

After those changes, Visual Studio 2015 should compile correctly.

osoumen commented 7 years ago

I agree. I wanted to know why do we need to build in Visual Studio 2015 the c700. Since I do not know much about Windows, and binary built with Visual Studio 2013, I do not know what is the difference in the build was a binary in Visual Studio 2015.

akirna commented 2 years ago

@czchmate, thanks for the translation!