@@ -24,10 +24,10 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php"; | |||||
<img src="https://graph.facebook.com/falktx/picture?type=normal" alt=""> | <img src="https://graph.facebook.com/falktx/picture?type=normal" alt=""> | ||||
| | ||||
</td><td> | </td><td> | ||||
<h3><a href="http://www.facebook.com/falktx" target="blank">Filipe Coelho (aka 'falkTX')</a></h3> | |||||
<h3><a href="http://www.falktx.com" target="blank">Filipe Coelho (aka 'falkTX')</a></h3> | |||||
<p><b>Project leader</b>, does the main code and overall management.<br/> | <p><b>Project leader</b>, does the main code and overall management.<br/> | ||||
He's also the leader of DISTRHO's parent project <a href="http://kxstudio.sf.net">KXStudio</a>.<br/> | |||||
Contact: <a href="mailto:falktx@gmail.com">falktx@gmail.com</a></p> | |||||
He's also the leader of DISTRHO's parent project <a href="http://kxstudio.linuxaudio.org">KXStudio</a>.<br/> | |||||
Contact: <a href="mailto:falktx@falktx.com">falktx@falktx.com</a></p> | |||||
</td></tr> | </td></tr> | ||||
<tr><td><p><br/></p></td><td><p><br/></p></td></tr> | <tr><td><p><br/></p></td><td><p><br/></p></td></tr> | ||||
<tr><td> | <tr><td> | ||||
@@ -6,7 +6,21 @@ | |||||
<input type="submit" name="changeColorNow" value="Switch Color Theme"/> | <input type="submit" name="changeColorNow" value="Switch Color Theme"/> | ||||
</form> | </form> | ||||
</div> | </div> | ||||
<div><p style="font-size: 90%;">© 2012-2014 DISTRHO <span style="float:right;"> Sponsored by <a href="http://kxstudio.sf.net" target="_blank">KXStudio</a> | All the plugins and linux ports here are free, please consider a <a href="http://kxstudio.sourceforge.net/Donations" target="_blank">donation</a> if possible.</span></p></div> | |||||
<div> | |||||
<p style="font-size: 90%;"> | |||||
© | |||||
2012-2018 DISTRHO | |||||
| |||||
<span style="float:right;"> | |||||
Sponsored by | |||||
<a href="http://kxstudio.linuxaudio.org" target="_blank">KXStudio</a> | |||||
| | |||||
All the plugins and linux ports here are free, please consider a | |||||
<a href="http://kxstudio.sourceforge.net/Donations" target="_blank">donation</a> | |||||
if possible. | |||||
</span> | |||||
</p> | |||||
</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</footer> | </footer> | ||||
@@ -1,11 +1,11 @@ | |||||
<?php | <?php | ||||
function changeColor() | |||||
{ | |||||
if ($GLOBALS["THEME"] == "white") | |||||
function changeColor() { | |||||
if ($GLOBALS["THEME"] == "white") { | |||||
$GLOBALS["THEME"] = "black"; | $GLOBALS["THEME"] = "black"; | ||||
else | |||||
} else { | |||||
$GLOBALS["THEME"] = "white"; | $GLOBALS["THEME"] = "white"; | ||||
} | |||||
setcookie("color-theme", $GLOBALS["THEME"], time() + (365 * 24 * 60 * 60)); // expires in 1 year | setcookie("color-theme", $GLOBALS["THEME"], time() + (365 * 24 * 60 * 60)); // expires in 1 year | ||||
@@ -14,18 +14,21 @@ function changeColor() | |||||
exit(); | exit(); | ||||
} | } | ||||
if (file_exists("/Shared/Personal/FOSS/")) | |||||
if (file_exists("/Shared/Personal/FOSS/")) { | |||||
$ROOT = "/distrho"; | $ROOT = "/distrho"; | ||||
else | |||||
} else { | |||||
$ROOT = ""; | $ROOT = ""; | ||||
} | |||||
if (isset($_COOKIE["color-theme"])) | |||||
if (isset($_COOKIE["color-theme"])) { | |||||
$GLOBALS["THEME"] = htmlspecialchars($_COOKIE["color-theme"]); | $GLOBALS["THEME"] = htmlspecialchars($_COOKIE["color-theme"]); | ||||
else | |||||
} else { | |||||
$GLOBALS["THEME"] = "white"; | $GLOBALS["THEME"] = "white"; | ||||
} | |||||
if (isset($_POST["changeColorNow"])) | |||||
if (isset($_POST["changeColorNow"])) { | |||||
changeColor(); | changeColor(); | ||||
} | |||||
?> | ?> | ||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
@@ -51,12 +54,13 @@ if (isset($_POST["changeColorNow"])) | |||||
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/scriptaculous.js?load=effects,builder"></script> | <script type="text/javascript" src="<?php echo $ROOT; ?>/js/scriptaculous.js?load=effects,builder"></script> | ||||
<script type="text/javascript"> | <script type="text/javascript"> | ||||
<?php | <?php | ||||
if ($CURRENT_PAGE == "plugins") | |||||
if ($CURRENT_PAGE == "plugins") { | |||||
$menuClasses = array("miniseries", "prom"); | $menuClasses = array("miniseries", "prom"); | ||||
else if ($CURRENT_PAGE == "ports") | |||||
} else if ($CURRENT_PAGE == "ports") { | |||||
$menuClasses = array("arctican", "dexed", "drowaudio", "easyssp", "juced", "klangfalter", "lufsmeter", "luftikus", "mverb", "nekobi", "obxd", "pitcheddelay", "tal", "stereosourceseparator", "vex", "wolpertinger"); | $menuClasses = array("arctican", "dexed", "drowaudio", "easyssp", "juced", "klangfalter", "lufsmeter", "luftikus", "mverb", "nekobi", "obxd", "pitcheddelay", "tal", "stereosourceseparator", "vex", "wolpertinger"); | ||||
else | |||||
} else { | |||||
$menuClasses = array(); | $menuClasses = array(); | ||||
} | |||||
?> | ?> | ||||
jQuery(document).ready(function() { | jQuery(document).ready(function() { | ||||
<?php for ($i = 0; $i < count($menuClasses); $i++) { ?> | <?php for ($i = 0; $i < count($menuClasses); $i++) { ?> | ||||
@@ -25,6 +25,11 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php"; | |||||
<h2>Recent <span>News</span></h2> | <h2>Recent <span>News</span></h2> | ||||
<!-- .news --> | <!-- .news --> | ||||
<ul class="news"> | <ul class="news"> | ||||
<li> | |||||
<figure><strong>10 Mar</strong><p>2018<p></figure> | |||||
<h3>New release and fixes</h3> | |||||
<p>New plugins, lots of internal changes.</p> | |||||
</li> | |||||
<li> | <li> | ||||
<figure><strong>26 Aug</strong><p>2014<p></figure> | <figure><strong>26 Aug</strong><p>2014<p></figure> | ||||
<h3>New plugins and minor fixing</h3> | <h3>New plugins and minor fixing</h3> | ||||
@@ -40,11 +45,6 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php"; | |||||
<h3>New release pack</h3> | <h3>New release pack</h3> | ||||
<p>We just released our own custom plugins and more ports now with LV2 versions.</p> | <p>We just released our own custom plugins and more ports now with LV2 versions.</p> | ||||
</li> | </li> | ||||
<li> | |||||
<figure><strong>07 Oct</strong><p>2011<p></figure> | |||||
<h3>New and updated ports</h3> | |||||
<p>We updated the Linux ports, and added a few more too.</p> | |||||
</li> | |||||
</ul> | </ul> | ||||
<!-- /.news --> | <!-- /.news --> | ||||
</aside> | </aside> | ||||
@@ -62,11 +62,11 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php"; | |||||
LV2 and VST versions are always available, sometimes with LADSPA and DSSI as well. | LV2 and VST versions are always available, sometimes with LADSPA and DSSI as well. | ||||
</p> | </p> | ||||
<p> | <p> | ||||
The last release is '2014-07-16'.<br/> | |||||
The last release is '2018-05-10'.<br/> | |||||
You can find the entire <b>source code at <a href="https://github.com/DISTRHO/" target="_blank">https://github.com/DISTRHO/</a></b>. | You can find the entire <b>source code at <a href="https://github.com/DISTRHO/" target="_blank">https://github.com/DISTRHO/</a></b>. | ||||
</p> | </p> | ||||
<p> | <p> | ||||
Check the <b><a href="<?php echo $ROOT; ?>/plugins">plugins</a></b> and <b><a href="<?php echo $ROOT; ?>/ports">[Linux] ports</a></b> sections to see the full list or download binaries.<br/> | |||||
Check the <b><a href="<?php echo $ROOT; ?>/plugins">plugins</a></b> and <b><a href="<?php echo $ROOT; ?>/ports">(Linux) ports</a></b> sections to see the full list or download binaries.<br/> | |||||
</p> | </p> | ||||
</article> | </article> | ||||
</section> | </section> | ||||
@@ -7,6 +7,43 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php"; | |||||
<h2>News</h2> | <h2>News</h2> | ||||
<ul class="news"> | <ul class="news"> | ||||
<li> | |||||
<figure><strong>10 Mar</strong><p>2018</p></figure> | |||||
<h2 class="pointer">New major release</h2> | |||||
<p> | |||||
A new release after years without one!<br/> | |||||
A lot of changes happened on the underlying plugin frameworks (DPF and Juce). | |||||
</p> | |||||
<p> | |||||
The following new ports were added:<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
</p> | |||||
<p> | |||||
The DPF-based plugins had some changes too:<br/> | |||||
- ... added<br/> | |||||
- ProM ...<br/> | |||||
- DPF-Plugins repo for easy packaging<br/> | |||||
- ...<br/> | |||||
</p> | |||||
<p> | |||||
Since last release, a few projects have appeared that use DPF. Here's a few:<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
- ...<br/> | |||||
</p> | |||||
<p> | |||||
Other small changes relevant to the project:<br/> | |||||
- Nekobi moved to plugins (used to be in ports), as original developer is happy with it (has git repo RW access too)<br/> | |||||
- DPF with ... transport, jack, etc<br/> | |||||
- ...<br/> | |||||
</p> | |||||
<p><a href="..." target="_blank">Comments and discussion</a> | |||||
</li> | |||||
<li> | <li> | ||||
<figure><strong>26 Aug</strong><p>2014</p></figure> | <figure><strong>26 Aug</strong><p>2014</p></figure> | ||||
<h2 class="pointer">New plugins and minor fixing</h2> | <h2 class="pointer">New plugins and minor fixing</h2> | ||||