Skip to content

Commit 10862d6

Browse files
uilianriesczoidoAbrilRBS
authored
[post] GameDev Raylib: Running on Android (#300)
* Add Raylib android post Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Add assets for Android blog Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Deprecate old Android posts Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Fix post url Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Polishing Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Add C/C++ to the title Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Collapse code content Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Use warning Co-authored-by: Carlos Zoido <mrgalleta@gmail.com> * Remove next steps section Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Simplify android profile Signed-off-by: Uilian Ries <uilianr@jfrog.com> * New title Co-authored-by: Carlos Zoido <mrgalleta@gmail.com> * Typo Co-authored-by: Carlos Zoido <mrgalleta@gmail.com> * Update _posts/2025-11-24-GameDev-Raylib-Android.markdown Co-authored-by: Abril Rincón Blanco <5364255+AbrilRBS@users.noreply.github.com> * Update release update for Gamedev android post date Signed-off-by: Uilian Ries <uilianr@jfrog.com> * Add example2 url in the post Signed-off-by: Uilian Ries <uilianr@jfrog.com> --------- Signed-off-by: Uilian Ries <uilianr@jfrog.com> Co-authored-by: Carlos Zoido <mrgalleta@gmail.com> Co-authored-by: Abril Rincón Blanco <5364255+AbrilRBS@users.noreply.github.com>
1 parent 7654d13 commit 10862d6

10 files changed

+551
-2
lines changed

_layouts/post.html

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,25 @@ <h1 class="post-title font-weight-bold" itemprop="name headline">{{ page.title }
1313
{% if page.subtitle %}
1414
<h2><small>{{ page.subtitle }}</small></h2>
1515
{% endif %}
16+
17+
{% if page.deprecated %}
18+
<div class="deprecated-warning" style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin-bottom: 20px;">
19+
<strong>⚠️ Deprecated:</strong>
20+
{% if page.deprecated_reason %}
21+
{{ page.deprecated_reason }}
22+
{% else %}
23+
This post contains outdated information.
24+
{% endif %}
25+
{% if page.deprecated_link %}
26+
<a href="{{ page.deprecated_link }}">View updated content</a>
27+
{% endif %}
28+
</div>
29+
{% endif %}
30+
31+
1632
<div class="spli-footer d-flex flex-wrap justify-content-between mt-2 mt-lg-3">
1733
<div class="post-meta pr-4 d-flex align-items-center">
18-
<!--
34+
<!--
1935
We want Google to show the most recent date so this post looks more relevant in search results
2036
https://developers.google.com/search/docs/appearance/publication-dates
2137
-->

_posts/2018-01-30-Cross-building-Boost-Android.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
layout: post
33
comments: false
44
title: Cross building Boost C++ libraries to Android with Conan
5+
deprecated: true
6+
deprecated_reason: "This information is outdated. See the updated post."
7+
deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html
8+
59
# other options
610
---
711

_posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
layout: post
33
comments: false
44
title: Android Studio project using Conan and C++ Boost libraries
5-
# other options
5+
deprecated: true
6+
deprecated_reason: "This information is outdated. See the updated post."
7+
deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html
68
---
79

810
In the previous blog post [Cross building Boost C++ libraries to Android with Conan](https://blog.conan.io/2018/01/30/Cross-building-Boost-Android.html)

0 commit comments

Comments
 (0)