KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

250 lines
12KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Downloads";
  3. $PAGE_TYPE = "DOWNLOADS";
  4. $PAGE_SOURCE_1 = ARRAY("/Downloads");
  5. $PAGE_SOURCE_2 = ARRAY("Downloads");
  6. include_once("includes/header.php");
  7. if (isset($_GET["id"])) {
  8. $DOWNLOAD_IDS = ARRAY();
  9. // KXStudio ISOs
  10. $DOWNLOAD_IDS["101"] = "KXStudio_12.04.1_32bit.iso";
  11. $DOWNLOAD_IDS["102"] = "KXStudio_12.04.1_64bit.iso";
  12. // Cadence binaries
  13. $DOWNLOAD_IDS["201"] = "Cadence-0.8-beta2-linux32.tar.xz";
  14. $DOWNLOAD_IDS["202"] = "Cadence-0.8-beta2-linux64.tar.xz";
  15. $DOWNLOAD_IDS["205"] = "Cadence-0.8-beta2-win32.zip";
  16. // Carla binaries
  17. $DOWNLOAD_IDS["211"] = "Carla-0.8-linux32.tar.xz";
  18. $DOWNLOAD_IDS["212"] = "Carla-0.8-linux64.tar.xz";
  19. $DOWNLOAD_IDS["215"] = "Carla-0.8-win32.zip";
  20. // Deprecated binaries
  21. $DOWNLOAD_IDS["301"] = "festige-1.0.2-x86.tar.gz";
  22. $dlId = htmlspecialchars($_GET["id"]);
  23. if (array_key_exists($dlId, $DOWNLOAD_IDS)) {
  24. // Set sizes
  25. $SIZE_IDS["101"] = "1745909760";
  26. $SIZE_IDS["102"] = "1863237632";
  27. $SIZE_IDS["201"] = "13419996";
  28. $SIZE_IDS["202"] = "21380936";
  29. $SIZE_IDS["205"] = "28950659";
  30. $SIZE_IDS["211"] = "19637728";
  31. $SIZE_IDS["212"] = "21272596";
  32. $SIZE_IDS["215"] = "18927509";
  33. $SIZE_IDS["301"] = "3705332";
  34. $dlFile = $DOWNLOAD_IDS[$dlId];
  35. $dlPath = "http://downloads.sourceforge.net/kxstudio/" . $dlFile;
  36. $dlSize = $SIZE_IDS[$dlId];
  37. ?>
  38. <p class="p_bigger_text">
  39. You are now downloading the file <b><?php echo $dlFile; ?></b><br/>
  40. If the download doesn't start automatically, click
  41. <a href="<?php echo $dlPath; ?>" class="external free" rel="nofollow" target="_blank">here</a>.
  42. </p>
  43. <a href="http://www.wargsang.de/KXStudioDownload.php?file=<?php echo $dlPath; ?>&size=<?php echo $dlSize; ?>" id="downloadRefId" style="display:none"></a>
  44. <hr>
  45. <p>
  46. Thank you for your interest on KXStudio and/or its software. <b>Please consider a donation</b> while the download takes place.<br/>
  47. Donations will help ensure that developers have the needed enthusiasm and motivation to keep working hard on the project.<br/>
  48. Just because we're open-source doesn't mean we're allergic to money. ;)
  49. </p>
  50. <p>
  51. Currently the KXStudio project accepts donations via Flattr or PayPal.<br/>
  52. You can do a one-time donation or subscribe monthly.<br/>
  53. In either case, we thank you in advance for any donation you make!<br/>
  54. <br/>
  55. </p>
  56. <table>
  57. <tr><td width="40px;">
  58. </td><td valign="bottom" width="150px">
  59. <a class="FlattrButton" style="display:none;" href="http://kxstudio.sourceforge.net/"></a>
  60. <noscript>
  61. <a href="http://flattr.com/thing/1098067/KXStudio" target="_blank">
  62. <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a>
  63. </noscript>
  64. </td><td valign="bottom" width="150px">
  65. <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
  66. <input type="hidden" name="cmd" value="_s-xclick">
  67. <input type="hidden" name="hosted_button_id" value="A8QZW5UPVZGTW">
  68. <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal">
  69. <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
  70. </form>
  71. </td><td align="center" valign="bottom" width="220px">
  72. <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
  73. <input type="hidden" name="cmd" value="_s-xclick">
  74. <input type="hidden" name="hosted_button_id" value="7G5AKFSNVDBX8">
  75. <table>
  76. <tr><td>
  77. <input type="hidden" name="on0" value="Quantity">Quantity</td></tr>
  78. <tr><td>
  79. <select name="os0">
  80. <option value="Small">Small : €5.00 EUR - monthly</option>
  81. <option value="Medium">Medium : €10.00 EUR - monthly</option>
  82. <option value="Large">Large : €25.00 EUR - monthly</option>
  83. </select>
  84. </td></tr>
  85. </table>
  86. <input type="hidden" name="currency_code" value="EUR">
  87. <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="PayPal">
  88. <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
  89. </form>
  90. </td></tr>
  91. </table>
  92. <?php
  93. } else { // array_key_exists
  94. ?>
  95. <p class="error">
  96. Invalid download Id.
  97. </p>
  98. <?php
  99. } // array_key_exists
  100. ?>
  101. <p><br/></p>
  102. <?php
  103. } else { // isset
  104. ?>
  105. <ul id="Artwork" name="Artwork">
  106. <li><b>Artwork</b></li>
  107. <p>
  108. The KXStudio artwork, which includes:<br/>
  109. &nbsp;&nbsp;- KDE4 color scheme<br/>
  110. &nbsp;&nbsp;- KDM theme<br/>
  111. &nbsp;&nbsp;- KSplash theme<br/>
  112. &nbsp;&nbsp;- Plymouth theme<br/>
  113. &nbsp;&nbsp;- QtCurve config<br/>
  114. &nbsp;&nbsp;- Gtk2/Qt3/Qt4 theme (using qtcurve engine)<br/>
  115. &nbsp;&nbsp;- Gtk3 theme (using solidity engine, incomplete)<br/>
  116. &nbsp;&nbsp;- Metacity theme<br/>
  117. &nbsp;&nbsp;- XFWM4 theme<br/>
  118. &nbsp;&nbsp;- Wallpapers<br/>
  119. </p>
  120. <p>
  121. By using QtCurve, our theme can perfectly match Gtk2, Qt3, KDE3, Qt4 and KDE4 applications.<br/>
  122. See the <a href="<?php echo $ROOT; ?>/Artwork">KXStudio Artwork</a> section for screenshots of various Desktop Environments using the KXStudio theme.<br/>
  123. </p>
  124. <p class="p_extra_spaced">
  125. Downloads:<br/>
  126. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/artwork/kxstudio-artwork_20121222.tar.bz2/download" class="external free a_bigger_text" rel="nofollow" target="_blank">
  127. <img src="images/ico_kxstudio.png" alt="" class="img_text_align"/> KXStudio Artwork</a> (version 2012-12-22)
  128. </p>
  129. </ul>
  130. <p><br/></p>
  131. <ul id="Binaries" name="Binaries">
  132. <li><b>Binary Releases</b></li>
  133. <p>
  134. Software developed by the KXStudio Team, pre-compiled and ready to run.<br/>
  135. </p>
  136. <p class="p_extra_spaced">
  137. Linux Downloads:<br/>
  138. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/cadence/Cadence-0.8.1-linux32.tar.xz/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  139. <img src="images/ico_cadence.png" alt="" class="img_text_align"/> Cadence</a> (32bit, version 0.8.1)<br/>
  140. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/cadence/Cadence-0.8.1-linux64.tar.xz/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  141. <img src="images/ico_cadence.png" alt="" class="img_text_align"/> Cadence</a> (64bit, version 0.8.1)<br/>
  142. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/carla/Carla-1.2.3-linux32.tar.xz/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  143. <img src="images/ico_carla.png" alt="" class="img_text_align"/> Carla</a> (32bit, version 1.2.3)<br/>
  144. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/carla/Carla-1.2.3-linux64.tar.xz/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  145. <img src="images/ico_carla.png" alt="" class="img_text_align"/> Carla</a> (64bit, version 1.2.3)<br/>
  146. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/festige/festige-1.0.2-x86.tar.gz/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  147. <img src="images/ico_festige.png" alt="" class="img_text_align"/> FeSTige</a> (32bit, version 1.0.2)<br/>
  148. </p>
  149. <p class="p_extra_spaced">
  150. Windows Downloads:<br/>
  151. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/cadence/Cadence-0.8.1-win32.zip/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  152. <img src="images/ico_cadence.png" alt="" class="img_text_align"/> Cadence</a> (32bit, version 0.8.1)<br/>
  153. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/carla/Carla-1.2.3-win32.zip/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  154. <img src="images/ico_carla.png" alt="" class="img_text_align"/> Carla</a> (32bit, version 1.2.3)<br/>
  155. </p>
  156. </ul>
  157. <p><br/></p>
  158. <ul id="SourceCode" name="SourceCode">
  159. <li><b>Source Code Releases</b></li>
  160. <p>
  161. Software developed by the KXStudio Team, released as source tarball so that distros other than Ubuntu (or advanced users) can pick it up.<br/>
  162. If you're running an Ubuntu based system, please use the <a href="<?php echo $ROOT; ?>/Repositories">KXStudio Repositories</a> instead.
  163. </p>
  164. <p class="p_extra_spaced">
  165. Downloads:<br/>
  166. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/cadence/Cadence-0.8.1-src.tar.bz2/download" class="external free a_bigger_text" rel="nofollow" target="_blank">
  167. <img src="images/ico_cadence.png" alt="" class="img_text_align"/> Cadence</a> (version 0.8.1)<br/>
  168. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/carla/Carla-1.1.0-src.tar.bz2/download" class="external free a_bigger_text" rel="nofollow" target="_blank">
  169. <img src="images/ico_carla.png" alt="" class="img_text_align"/> Carla</a> (version 1.1.0)<br/>
  170. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/festige/festige-1.0.2-src.tar.gz/download" class="external free a_bigger_text" rel="nofollow" target="_blank">
  171. <img src="images/ico_festige.png" alt="" class="img_text_align"/> FeSTige</a> (version 1.0.2)<br/>
  172. <a href="http://sourceforge.net/projects/kxstudio/files/Releases/klaudia/klaudia-1.0.2.tar.gz/download" class="external free a_bigger_text" rel="nofollow" target="_blank">
  173. <img src="images/ico_klaudia.png" alt="" class="img_text_align"/> Klaudia</a> (version 1.0.2)<br/>
  174. </p>
  175. </ul>
  176. <hr/>
  177. <ul id="LiveDVD" name="LiveDVD">
  178. <li><b>KXStudio 12.04.3 Live-DVD</b></li>
  179. <p>
  180. This is an Ubuntu 12.04.3 LTS based Live-DVD, used to test-drive KXStudio and/or install it to your HDD.<br/>
  181. It contains a snapshot of the KXStudio features as of <b>Oct 17, 2013</b> or <b>17/10/2013</b>. It uses KDE4 as Desktop Environment.
  182. </p>
  183. <p class="p_extra_spaced">
  184. Downloads:<br/>
  185. </p>
  186. <p>
  187. <a href="http://sourceforge.net/projects/kxstudio/files/Live/KXStudio_12.04.3_32bit.iso/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  188. <img src="images/ico_disc.png" alt="" class="img_text_align"/> KXStudio 12.04.3 Live-DVD <strong>- 32bit</strong></a><br/>
  189. &nbsp;&nbsp;&nbsp;&nbsp;md5sum: 2e937f1249e6608369f9d17401b16887<br/>
  190. &nbsp;&nbsp;&nbsp;&nbsp;size: 1.8 Gb
  191. </p>
  192. <p>
  193. <a href="http://sourceforge.net/projects/kxstudio/files/Live/KXStudio_12.04.3_64bit.iso/download" class="external text a_bigger_text" rel="nofollow" target="_blank">
  194. <img src="images/ico_disc.png" alt="" class="img_text_align"/> KXStudio 12.04.3 Live-DVD <strong>- 64bit</strong></a><br/>
  195. &nbsp;&nbsp;&nbsp;&nbsp;md5sum: ecd0b53bfaddfdf96454c1840f05a90b<br/>
  196. &nbsp;&nbsp;&nbsp;&nbsp;size: 1.9 Gb
  197. </p>
  198. <p>
  199. <b>*Please* make sure to read the <a href="<?php echo $ROOT; ?>/Documentation:KXStudio12043:ReleaseNotes">Release Notes</a></b> before using this DVD.<br/>
  200. You need to burn the ISO file into a DVD to make it usable, more details <a href="https://help.ubuntu.com/community/BurningIsoHowto" class="external free" rel="nofollow" target="_blank">here</a>.
  201. </p>
  202. </ul>
  203. <p><br/></p>
  204. <hr/>
  205. <ul id="AllDownloads" name="AllDownloads">
  206. <li><b>All Downloads</b></li>
  207. <p>
  208. You can access all the KXStudio downloads using the KXStudio SourceForge project page:<br/>
  209. <a href="http://sourceforge.net/projects/kxstudio/files/" class="external free" rel="nofollow" target="_blank">http://sourceforge.net/projects/kxstudio/files/</a>
  210. </p>
  211. </ul>
  212. <p><br/></p>
  213. <?php
  214. } // isset
  215. include_once("includes/footer.php");
  216. ?>