Signed-off-by: falkTX <falktx@falktx.com>pull/19/head
@@ -16,6 +16,13 @@ function print_feed_title($title) { | |||
$title = strstr($title, ':', true); | |||
echo strrchr($title, ' '); | |||
} | |||
function print_content($content) { | |||
$content2 = strstr($content, 'Signed-off-by', true); | |||
if (! $content2) { | |||
$content2 = $content; | |||
} | |||
echo trim($content2); | |||
} | |||
$feed = new SimplePie(); | |||
$feed->set_cache_location("/home/falktx/bin/simplepie/cache"); | |||
@@ -68,7 +75,7 @@ foreach ($feed->get_items() as $item): | |||
if ($lastdate != null) { ?> <hr/> <?php } | |||
$lastdate = $date; | |||
?> | |||
<h3 id="<?php echo $date ?>"># <a href="#<?php echo $date ?>"><?php echo $item->get_gmdate('F j, Y') ?></a></h3> | |||
<h3 id="<?php echo $date ?>">§ <a href="#<?php echo $date ?>"><?php echo $item->get_gmdate('F j, Y') ?></a></h3> | |||
<?php | |||
} | |||
?> | |||
@@ -85,12 +92,7 @@ foreach ($feed->get_items() as $item): | |||
<!-- <?php echo $item->get_title(); ?></a> --> | |||
in | |||
<b><?php print_feed_title($item->get_feed()->get_title()); ?></b> | |||
<?php | |||
$content = $item->get_content(true); | |||
if ($content) { ?> | |||
<br/> | |||
<?php echo $content; | |||
} ?> | |||
<div class="box box-description"><?php print_content($item->get_content(true)); ?></div> | |||
</p> | |||
</div> | |||
@@ -8,6 +8,41 @@ include_once("includes/header.php"); | |||
<p><b>THIS IS A FAKE PAGE, KXSTUDIO NEWS USES A DYNAMIC MODULE NOW</b></p> | |||
<p> | |||
<span style="font-size: 20px">> Carla 2.3.2 has been released</span><br/> | |||
On <i>2021-08-08</i> by<i> falkTX</i> | |||
</p> | |||
<p> | |||
This is a bugfix for Carla version v2.3 series, mostly fixing a few regressions with the previous release. | |||
</p> | |||
<h3>Changelog</h3> | |||
<ul> | |||
<li>Add 32x32 icon</li> | |||
<li>Do not show --gdb in usage/help when not installed system-wide</li> | |||
<li>Fix default SF2 search path</li> | |||
<li>Fix keyboard focus for bridges on macOS</li> | |||
<li>Fix X11-UIs related regressions in v2.3.1</li> | |||
</ul> | |||
<h3>Downloads</h3> | |||
<p> | |||
To download Carla binaries or source code, jump on over to the <a href="https://kx.studio/Downloads" class="external free" rel="nofollow" target="_blank">KXStudio downloads section</a>.<br/> | |||
If you're using the KXStudio repositories, you can simply install "carla".<br/> | |||
Bug reports and feature requests are welcome! Jump on over to the <a href="https://github.com/falkTX/Carla" class="external free" rel="nofollow" target="_blank">Carla's Github project</a> page for those. | |||
</p> | |||
| |||
<p> | |||
As always, if you appreciate the kind of work I do, please | |||
<a href="https://kx.studio/Donations">consider a donation</a>.<br/> | |||
Thank you in advance for your support, and stay safe out there!<br/> | |||
</p> | |||
<hr/> | |||
<p> | |||
<span style="font-size: 20px">> KXStudio Monthly Report (July 2021)</span><br/> | |||
On <i>2021-07-31</i> by<i> falkTX</i> | |||
@@ -51,6 +51,7 @@ ${ trigger.call("head") } | |||
</div> | |||
</li> | |||
<li id="item-board"><a href="/Board">Board</a></li> | |||
<li id="item-development"><a href="/Development">Development</a></li> | |||
<li id="item-documentation"><a href="/Documentation">Documentation</a></li> | |||
<li id="item-donate"><a href="/Donations">Donations</a></li> | |||
<li id="item-downloads"><a href="/Downloads">Downloads</a></li> | |||
@@ -114,15 +114,27 @@ function isMobile() { | |||
<?php } else if ($PAGE_TYPE == "DEVELOPMENT") { ?> | |||
<!-- Special Development CSS --> | |||
<style type="text/css"> | |||
h3 > a, | |||
b > a { | |||
h3 > a { | |||
color: #F0F0F0 !important; | |||
} | |||
p { | |||
.changeset p { | |||
margin: 0.25em 15px !important; | |||
font-weight: lighter; | |||
} | |||
.changeset a { | |||
font-weight: normal; | |||
} | |||
.changeset b { | |||
font-weight: bold; | |||
} | |||
.changeset b > a { | |||
color: #F0F0F0 !important; | |||
} | |||
pre { | |||
font-size: 1.25em !important; | |||
.changeset pre { | |||
font-size: 1.4em !important; | |||
background-color: unset; | |||
border: none; | |||
margin: 0.5em 1em; | |||
} | |||
</style> | |||
<?php } else if ($PAGE_TYPE == "DONATIONS") { ?> | |||
@@ -318,6 +330,7 @@ function isMobile() { | |||
</div> | |||
</li> | |||
<li id="item-board"><a href="<?php echo $ROOT; ?>/Board">Board</a></li> | |||
<li id="item-development"><a href="<?php echo $ROOT; ?>/Development">Development</a></li> | |||
<li id="item-documentation"><a href="<?php echo $ROOT; ?>/Documentation">Documentation</a></li> | |||
<li id="item-downloads"><a href="<?php echo $ROOT; ?>/Downloads">Downloads</a></li> | |||
<li id="item-donate"><a href="<?php echo $ROOT; ?>/Donations">Donations</a></li> | |||