Browse Source

Fix change-color form resend; Add new plugin info (no pics)

master
falkTX 11 years ago
parent
commit
5bf25df937
5 changed files with 249 additions and 68 deletions
  1. +3
    -3
      inc_footer.php
  2. +27
    -23
      inc_header.php
  3. +2
    -2
      index.php
  4. +14
    -15
      plugins.php
  5. +203
    -25
      ports.php

+ 3
- 3
inc_footer.php View File

@@ -2,11 +2,11 @@
<div class="container">
<div class="wrapper">
<div style="position:relative; top: 0px;left: 0px;">
<form class="formleftside" action="<?php echo $_server['script_name']; ?>" method="post">
<input type="submit" name="changecolornow" value="switch color-theme"/>
<form class="formleftside" action="<?php echo $_server["script_name"]; ?>" method="post">
<input type="submit" name="changeColorNow" value="switch-color-theme"/>
</form>
</div>
<div><p style="font-size: 90%;">&#0169; 2012 DISTRHO&nbsp; &nbsp;<span style="float:right;"> Sponsored by <a href="http://kxstudio.sf.net" target="_blank">KXStudio</a>&nbsp; &nbsp;|&nbsp; &nbsp;All the plugins and linux ports here are free, please consider a <a href="http://sourceforge.net/donate/index.php?group_id=539284" target="_blank">donation</a> if possible.</p></span></div>
<div><p style="font-size: 90%;">&#0169; 2012-2014 DISTRHO&nbsp; &nbsp;<span style="float:right;"> Sponsored by <a href="http://kxstudio.sf.net" target="_blank">KXStudio</a>&nbsp; &nbsp;|&nbsp; &nbsp;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.</p></span></div>
</div>
</div>
</footer>


+ 27
- 23
inc_header.php View File

@@ -8,6 +8,10 @@ function changeColor()
$GLOBALS["THEME"] = "white";

setcookie("color-theme", $GLOBALS["THEME"], time() + (365 * 24 * 60 * 60)); // expires in 1 year

// force page reload
header("location: " . $_server["script_name"]);
exit();
}

if (file_exists("/home/falk2/"))
@@ -20,7 +24,7 @@ if (isset($_COOKIE["color-theme"]))
else
$GLOBALS["THEME"] = "white";

if (isset($_POST['changeColorNow']))
if (isset($_POST["changeColorNow"]))
changeColor();

?>
@@ -29,28 +33,28 @@ if (isset($_POST['changeColorNow']))
<head>
<title>DISTRHO - Cross-Platform Audio Plugins</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/css-<?php echo $GLOBALS["THEME"]; ?>/reset.css" type="text/css" media="all">
<link rel="stylesheet" href="/css-<?php echo $GLOBALS["THEME"]; ?>/style.css" type="text/css" media="all">
<link rel="stylesheet" href="<?php echo $ROOT; ?>/css-<?php echo $GLOBALS["THEME"]; ?>/reset.css" type="text/css" media="all">
<link rel="stylesheet" href="<?php echo $ROOT; ?>/css-<?php echo $GLOBALS["THEME"]; ?>/style.css" type="text/css" media="all">
<?php if ($CURRENT_PAGE == "index") { ?>
<link rel="stylesheet" href="/css-<?php echo $GLOBALS["THEME"]; ?>/style-mini-news.css" type="text/css" media="all">
<link rel="stylesheet" href="<?php echo $ROOT; ?>/css-<?php echo $GLOBALS["THEME"]; ?>/style-mini-news.css" type="text/css" media="all">
<?php } ?>
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Raleway:200,300' type='text/css' media="all">
<script type="text/javascript" src="/js/jquery-1.4.2.min.js" ></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/jquery-1.4.2.min.js" ></script>
<?php if ($CURRENT_PAGE == "index") { ?>
<script type="text/javascript" src="/js/roundabout.js"></script>
<script type="text/javascript" src="/js/roundabout_shapes.js"></script>
<script type="text/javascript" src="/js/gallery_init.js"></script>
<script type="text/javascript" src="/js/responsiveslides.min.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/roundabout.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/roundabout_shapes.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/gallery_init.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/responsiveslides.min.js"></script>
<?php } else if ($CURRENT_PAGE == "plugins" || $CURRENT_PAGE == "ports") { ?>
<script type="text/javascript" src="/js/prototype.js"></script>
<script type="text/javascript" src="/js/lightbox.js"></script>
<script type="text/javascript" src="/js/scriptaculous.js?load=effects,builder"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/prototype.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/lightbox.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/scriptaculous.js?load=effects,builder"></script>
<script type="text/javascript">
<?php
if ($CURRENT_PAGE == "plugins")
$menuClasses = array("miniseries", "nekobi");
$menuClasses = array("miniseries", "prom");
else if ($CURRENT_PAGE == "ports")
$menuClasses = array("arctican", "drowaudio", "juced", "tal", "wolpertinger");
$menuClasses = array("arctican", "dexed", "drowaudio", "juced", "klangfalter", "mverb", "nekobi", "obxd", "pitcheddelay", "tal", "vex", "wolpertinger");
else
$menuClasses = array();
?>
@@ -74,24 +78,24 @@ if (isset($_POST['changeColorNow']))
});
</script>
<!--[if lt IE 7]>
<link rel="stylesheet" href="css/ie/ie6.css" type="text/css" media="all">
<link rel="stylesheet" href="<?php echo $ROOT; ?>/css/ie/ie6.css" type="text/css" media="all">
<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5.js"></script>
<script type="text/javascript" src="js/IE9.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/html5.js"></script>
<script type="text/javascript" src="<?php echo $ROOT; ?>/js/IE9.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<h1><a href="/index.html"><img src="/images/distrho-logo.png" alt="DISTRHO"/></a></h1>
<h1><a href="<?php echo $ROOT; ?>/"><img src="<?php echo $ROOT; ?>/images/distrho-logo.png" alt="DISTRHO"/></a></h1>
<nav>
<ul>
<li><a href="/" <?php if ($CURRENT_PAGE == "index") { ?> class="current" <?php } ?>>Home</a></li>
<li><a href="/news" <?php if ($CURRENT_PAGE == "news") { ?> class="current" <?php } ?>>News</a></li>
<li><a href="/plugins" <?php if ($CURRENT_PAGE == "plugins") { ?> class="current" <?php } ?>>Plugins</a></li>
<li><a href="/ports" <?php if ($CURRENT_PAGE == "ports") { ?> class="current" <?php } ?>>Ports</a></li>
<li><a href="/about" <?php if ($CURRENT_PAGE == "about") { ?> class="current" <?php } ?>>About</a></li>
<li><a href="<?php echo $ROOT; ?>/" <?php if ($CURRENT_PAGE == "index") { ?> class="current" <?php } ?>>Home</a></li>
<li><a href="<?php echo $ROOT; ?>/news" <?php if ($CURRENT_PAGE == "news") { ?> class="current" <?php } ?>>News</a></li>
<li><a href="<?php echo $ROOT; ?>/plugins" <?php if ($CURRENT_PAGE == "plugins") { ?> class="current" <?php } ?>>Plugins</a></li>
<li><a href="<?php echo $ROOT; ?>/ports" <?php if ($CURRENT_PAGE == "ports") { ?> class="current" <?php } ?>>Ports</a></li>
<li><a href="<?php echo $ROOT; ?>/about" <?php if ($CURRENT_PAGE == "about") { ?> class="current" <?php } ?>>About</a></li>
</ul>
</nav>
</div>


+ 2
- 2
index.php View File

@@ -58,13 +58,13 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
DISTRHO is an open-source project for <b>Cross-Platform Audio Plugins</b>.<br/>
</p>
<p>
We provide our own <b><a href="/plugins">plugins</a></b> and <b><a href="/ports">Linux ports</a></b>, everything being <b>open-source</b>.<br/>
We provide our own <b><a href="<?php echo $ROOT; ?>/plugins">plugins</a></b> and <b><a href="<?php echo $ROOT; ?>/ports">Linux ports</a></b>, everything being <b>open-source</b>.<br/>
LADSPA, DSSI, LV2 and VST versions are available for our own plugins, while the Linux ports have LV2 and VST.
</p>
<p>
The last release is '2012-05-18'.<br/>
You can find the <b>source code <a href="http://sourceforge.net/projects/distrho/files/" target="_blank">here</a></b>, together with pre-compiled binaries.<br/>
Please check the <b><a href="/plugins">plugins</a></b> and <b><a href="/ports">[Linux] ports</a></b> sections to know more about those.
Please 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 know more about those.
</p>
</article>
</section>


+ 14
- 15
plugins.php View File

@@ -24,40 +24,39 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<li>3-Band Splitter</i>
<li>Ping Pong Pan</i>
</ul>
<p>
<p><div class="button">
</p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_miniseries" />
<ul class="the_menu the_menu_miniseries">
<li><a href="#" target="_blank">DISTRHO Mini-Series - Linux</a></li>
<li><a href="#" target="_blank">DISTRHO Mini-Series - MacOS</a></li>
<li><a href="#" target="_blank">DISTRHO Mini-Series - Windows</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>
<!-- Nekobi -->
<!-- ProM -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/distrho-nekobi.png" rel="lightbox[nekobi]"><img src="images/screenshots/distrho-nekobi_thumb.png" alt=""/></a><br/>Nekobi&nbsp;&nbsp;
<a href="images/screenshots/distrho-prom.png" rel="lightbox[prom]"><img src="images/screenshots/distrho-prom_thumb.png" alt=""/></a><br/>ProM&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>DISTRHO Nekobi</h2>
<p>TODO.</p>
<p>Another TODO line.</p>
<p>
<p><div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_nekobi" />
<h2>DISTRHO ProM</h2>
<p><a href="http://projectm.sourceforge.net/" target="_blank">projectM</a> is an awesome music visualizer.</p>
<p>DISTRHO ProM makes it work as an audio plugin (LV2 and VST).</p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_prom" />
<ul class="the_menu the_menu_nekobi">
<li><a href="#" target="_blank">DISTRHO Nekobi - Linux</a></li>
<li><a href="#" target="_blank">DISTRHO Nekobi - MacOS</a></li>
<li><a href="#" target="_blank">DISTRHO Nekobi - Windows</a></li>
<li><a href="#" target="_blank">DISTRHO ProM - Linux</a></li>
<!--<li><a href="#" target="_blank">DISTRHO ProM - MacOS</a></li>-->
<!--<li><a href="#" target="_blank">DISTRHO ProM - Windows</a></li>-->
</ul>
</p></div>
</div>
</article>
</section>
</div></div>


+ 203
- 25
ports.php View File

@@ -17,15 +17,39 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<article>
<h2>Arctican Plugins</h2>
<p>These are simple but useful plugins, "developed as there was nothing similar out there".<br>
In the pack you will find 2 Arctican plugins - "The Function" and "The Pilgrim".</p>
In the pack you will find 2 Arctican plugins: "The Function" and "The Pilgrim".</p>
<p>Official website: <a href="http://arcticanaudio.com" target="_blank">http://arcticanaudio.com</a></p>
<p><div class="button">
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_arctican" />
<ul class="the_menu the_menu_arctican">
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Arctican-Plugins/arctican-plugins_linux32_20120518.7z/download" target="_blank">Arctican Plugins - Linux 32bit</a></li>
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Arctican-Plugins/arctican-plugins_linux64_20120518.7z/download" target="_blank">Arctican Plugins - Linux 64bit</a></li>
<li><a href="#" target="_blank">Arctican Plugins - Linux 32bit</a></li>
<li><a href="#" target="_blank">Arctican Plugins - Linux 64bit</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>
<!-- Dexed -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/dexed.png" rel="lightbox[dexed]"><img src="images/screenshots/dexed_thumb.png" alt=""/></a><br/>Dexed&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>Dexed</h2>
<p>Dexed is a plugin synth that is closely modeled on the Yamaha DX7.</p>
<p>The goal of this synth is to be a tool/companion for the original DX7.</p>
<p>Official project page: <a href="https://github.com/asb2m10/dexed" target="_blank">https://github.com/asb2m10/dexed</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_dexed" />
<ul class="the_menu the_menu_dexed">
<li><a href="#" target="_blank">Dexed - Linux 32bit</a></li>
<li><a href="#" target="_blank">Dexed - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
@@ -45,14 +69,14 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<article>
<h2>dRowAudio Plugins</h2>
<p>Professional grade audio plugin suite from dRowAudio, now available for Linux.<p>
<p>Official website - <a href="http://www.drowaudio.co.uk" target="_blank">http://www.drowaudio.co.uk</a></p>
<p><div class="button">
<p>Official website: <a href="http://www.drowaudio.co.uk" target="_blank">http://www.drowaudio.co.uk</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_drowaudio" />
<ul class="the_menu the_menu_drowaudio">
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/dRowAudio-Plugins/drowaudio-plugins_linux32_20120518.7z/download" target="_blank">dRowAudio Plugins - Linux 32bit</a></li>
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/dRowAudio-Plugins/drowaudio-plugins_linux64_20120518.7z/download" target="_blank">dRowAudio Plugins - Linux 64bit</a></li>
<li><a href="#" target="_blank">dRowAudio Plugins - Linux 32bit</a></li>
<li><a href="#" target="_blank">dRowAudio Plugins - Linux 64bit</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>
@@ -69,16 +93,148 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<article>
<h2>Juced Plugins</h2>
<p>Plugins originally in the <a href="http://www.anticore.org/jucetice/" target="_blank">Jucetice</a> project, then moved to <a href="http://code.google.com/p/juced/" target="_blank">Juced</a>.<br>
In DISTRHO we took Capsaicin, DrumSynth and EQinox, making it work with new Juce code and in LV2 format.<br>
(SoundCrab is broken and will not be ported).</p>
<p>Official website - <a href="http://www.anticore.org/jucetice/?page_id=7" target="_blank">http://www.anticore.org/jucetice/?page_id=7</a></p>
<p><div class="button">
In DISTRHO we took DrumSynth and EQinox, making it work with new Juce code and in LV2 format.<br>
(Capsaicin and SoundCrab are broken and will not be ported).</p>
<p>Official website: <a href="http://www.anticore.org/jucetice/?page_id=7" target="_blank">http://www.anticore.org/jucetice/?page_id=7</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_juced" />
<ul class="the_menu the_menu_juced">
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Juced-plugins/juced-plugins_linux32_20120518-2.7z/download" target="_blank">Juced Plugins - Linux 32bit</a></li>
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Juced-plugins/juced-plugins_linux64_20120518.7z/download" target="_blank">Juced Plugins - Linux 64bit</a></li>
<li><a href="#" target="_blank">Juced Plugins - Linux 32bit</a></li>
<li><a href="#" target="_blank">Juced Plugins - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
<!-- KlangFalter -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/klangfalter.png" rel="lightbox[klangfalter]"><img src="images/screenshots/klangfalter_thumb.png" alt=""/></a><br/>KlangFalter&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>KlangFalter</h2>
<p>KlangFalter is a convolution audio plugin.</p>
<p>It features:</p>
<ul>
<li>Low/no latency convolution plugin</li>
<li>Easy user interface</li>
<li>Support for true stereo impulse responses</li>
<li>Simple high and low shelf EQ</li>
<li>Freely modifiable envelope for the impulse response</li>
<li>Basically no limit on impulse response length - as long as your computer can handle it...</li>
<li>Intuitive and flexible loading of impulse response files</li>
</ul>
<p>Official project page: <a href="https://github.com/HiFi-LoFi/KlangFalter" target="_blank">https://github.com/HiFi-LoFi/KlangFalter</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_klangfalter" />
<ul class="the_menu the_menu_klangfalter">
<li><a href="#" target="_blank">KlangFalter - Linux 32bit</a></li>
<li><a href="#" target="_blank">KlangFalter - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
<!-- MVerb -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/mverb.png" rel="lightbox[mverb]"><img src="images/screenshots/mverb_thumb.png" alt=""/></a><br/>MVerb&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>MVerb</h2>
<p>MVerb is a studio quality, open-source reverb.</p>
<p>Its release was intended to provide a practical demonstration of Dattorro’s figure-of-eight reverb structure and
provide the open source community with a high quality reverb.</p>
<p>This is a port of <a href="https://github.com/martineastwood/mverb/" target="_blank">MVerb</a>, allowing a proper Linux version with UI.</p>
<p>Port project page: <a href="https://github.com/DISTRHO/MVerb" target="_blank">https://github.com/DISTRHO/MVerb</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_mverb" />
<ul class="the_menu the_menu_mverb">
<li><a href="#" target="_blank">MVerb - Linux 32bit</a></li>
<li><a href="#" target="_blank">MVerb - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
<!-- Nekobi -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/nekobi.png" rel="lightbox[nekobi]"><img src="images/screenshots/nekobi_thumb.png" alt=""/></a><br/>Nekobi&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>Nekobi</h2>
<p>Nekobi is a simple single-oscillator synth based on the Roland TB-303.</p>
<p>This is a port of <a href="https://github.com/gordonjcp/nekobee" target="_blank">nekobee</a>, allowing LV2 and VST builds of the plugin,<br/>
plus a nicer UI with a simple cat animation. ;)</p>
<p>Port project page: <a href="https://github.com/DISTRHO/Nekobi" target="_blank">https://github.com/DISTRHO/Nekobi</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_nekobi" />
<ul class="the_menu the_menu_nekobi">
<li><a href="#" target="_blank">Nekobi - Linux 32bit</a></li>
<li><a href="#" target="_blank">Nekobi - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
<!-- Obxd -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/obxd.png" rel="lightbox[obxd]"><img src="images/screenshots/obxd_thumb.png" alt=""/></a><br/>Obxd&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>Obxd</h2>
<p>Obxd is emulation of famous ob-x, ob-xa and ob8 synths.<p>
<p>While not copying originals, some of the features were taken to a better point.<p>
<p>Official project page: <a href="https://github.com/2DaT/Obxd" target="_blank">https://github.com/2DaT/Obxd</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_obxd" />
<ul class="the_menu the_menu_obxd">
<li><a href="#" target="_blank">Obxd - Linux 32bit</a></li>
<li><a href="#" target="_blank">Obxd - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
<!-- Pitched Delay -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/pitcheddelay.png" rel="lightbox[pitcheddelay]"><img src="images/screenshots/pitcheddelay_thumb.png" alt=""/></a><br/>Pitched Delay&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>Pitched Delay</h2>
<p>PitchedDelay is a delay that allows the pitching the delayed signal.</p>
<p>This can be done within or outside the feedback loop.</p>
<p>Official project page: <a href="https://code.google.com/p/lkjb-dc12/" target="_blank">https://code.google.com/p/lkjb-dc12/</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_pitcheddelay" />
<ul class="the_menu the_menu_pitcheddelay">
<li><a href="#" target="_blank">Pitched Delay - Linux 32bit</a></li>
<li><a href="#" target="_blank">Pitched Delay - Linux 64bit</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>
@@ -103,14 +259,36 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<p>This is a plugin pack from TAL (Togu Audio Line), now available for Linux. Not all plugins were ported, only those that were made using Juce (the more recent ones).<br>
In this pack you will find TAL Dub 3, Filter 1 &amp; 2, NoiseMaker, Reverb 1, 2 &amp; 3 and Vocoder 2.<br>
A Special thanks goes to Patrick Kunz for making these awesome plugins!</p>
<p>Official website - <a href="http://kunz.corrupt.ch" target="_blank">http://kunz.corrupt.ch</a></p>
<p><div class="button">
<p>Official website: <a href="http://kunz.corrupt.ch" target="_blank">http://kunz.corrupt.ch</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_tal" />
<ul class="the_menu the_menu_tal">
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/TAL-Plugins/tal-plugins_linux32_20120518.7z/download" target="_blank">TAL Plugins - Linux 32bit</a></li>
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/TAL-Plugins/tal-plugins_linux64_20120518.7z/download" target="_blank">TAL Plugins - Linux 64bit</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>
<!-- Vex -->
<div class="inside"><div class="wrapper">
<aside>
<p style="font-size:0.8em; text-align:right">
<a href="images/screenshots/vex.png" rel="lightbox[vex]"><img src="images/screenshots/vex_thumb.png" alt=""/></a><br/>Vex&nbsp;&nbsp;
</p>
</aside>
<section class="content">
<article>
<h2>Vex</h2>
<p>Vex is a 3 oscillator subtractive waverom synth</p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_vex" />
<ul class="the_menu the_menu_vex">
<li><a href="#" target="_blank">Vex - Linux 32bit</a></li>
<li><a href="#" target="_blank">Vex - Linux 64bit</a></li>
</ul>
</div>
</article>
</section>
</div></div>
@@ -126,14 +304,14 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc_header.php";
<article>
<h2>Wolpertinger</h2>
<p>Wolpertinger is a subtractive, antialiased polyphonic software synthesizer, now working as a LV2 plugin.</p>
<p>Official website - <a href="http://tumbetoene.tuxfamily.org" target="_blank">http://tumbetoene.tuxfamily.org</a></p>
<p><div class="button">
<p>Official website: <a href="http://tumbetoene.tuxfamily.org" target="_blank">http://tumbetoene.tuxfamily.org</a></p>
<div class="button">
<img src="images/download_<?php echo $GLOBALS["THEME"]; ?>.png" width="92" height="16" class="menu_class_wolpertinger" />
<ul class="the_menu the_menu_wolpertinger">
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Wolpertinger/wolpertinger_linux32_20120518-2.7z/download" target="_blank">Wolpertinger - Linux 32bit</a></li>
<li><a href="http://sourceforge.net/projects/distrho/files/Ports/Wolpertinger/wolpertinger_linux64_20120518.7z/download" target="_blank">Wolpertinger - Linux 64bit</a></li>
<li><a href="#" target="_blank">Wolpertinger - Linux 32bit</a></li>
<li><a href="#" target="_blank">Wolpertinger - Linux 64bit</a></li>
</ul>
</p></div>
</div>
</article>
</section>
</div></div>


Loading…
Cancel
Save