Skip to content
Snippets Groups Projects
Commit 0fd23b2c authored by chrissi^'s avatar chrissi^
Browse files

Parker: Add firmware overview

parent e34b7a3b
Branches
No related tags found
No related merge requests found
Pipeline #1739 passed
......@@ -5,6 +5,9 @@ blog:
- date: 2020-06-03
title: Project Parker - Öffentlicher Test
body: Die Project Parker Webseite wurde neu strukturiert. Die Inhalte wurden klarer zwischen Anwender und Profis getrennt.
- date: 2020-11-15
title: Project Parker - Öffentlicher Test
body: Es gibt nun auch eine Firmware-Historie für das Projekt-Parker.
Freifunk Project Parker: Neue Technik für Freifunk
......@@ -13,9 +16,10 @@ Freifunk Project Parker: Neue Technik für Freifunk
.. ffbsbox::
| **Schnellzugriff**:
| `Firmware Download <https://w.freifunk-bs.de/parker_beta/>`__
| `Firmware Download </parker/firmware.html>`__
| `Karte <https://w.freifunk-bs.de/meshviewer/>`__ und `Meshansicht <https://w.freifunk-bs.de/meshviewer/#!/de/graph>`__
| `Statistiken <https://w.freifunk-bs.de/grafana/d/LqfM5XSWz/global?orgId=1>`__
| `Statistiken <https://w.freifunk-bs.de/grafana/d/LqfM5XSWz/global?orgId=1>`__
Project Parker ist eine Initiative des Freifunk Braunschweig eine neue
Freifunk-Technik zu entwickeln.
......
template: firmware_parker.html
title: Firmware
sort: 105
Firmware
========
Diese Seite gibt einen Überblick über die Änderungen zwischen unterschiedlichen
Versionen der Freifunk Braunschweig Firmware.
Die aktuellste Firmware kann über den folgenden Link heruntergeladen werden.
Solltest du eine ältere Firmware benötigen kannst du dich über
`Kontakt </kontakt.html>`__ an uns wenden.
:raw-html:`<a class="btn btn-success" style="display: inline-flex; align-items:center;" href="https://w.freifunk-bs.de/" ><i class="fas fa-download" style="font-size:150%; margin-right:0.5em;"></i> Firmware herunterladen</a>`
branches:
- name: v2020.2.1-21-g6b7ce449_parker_beta_20201031-2101-parker_beta
channel: parker_beta
date: 2020-10-31
site: "https://gitli.stratum0.org/ffbs/ffbs-site/-/commit/7ef8185d7834dd5dc4b0a3fad0e5a02bd37780f7"
gluon: "https://gitli.stratum0.org/ffbs/ffbs-gluon/-/commit/6b7ce449c83007ccfee9f3a00c3e497a242a52fc"
rtd: "https://gluon.readthedocs.io/en/v2020.2.1/"
v2020.2.1-21-g6b7ce449_parker_beta_20201031-2101
================================================
* Respektiere die Config-Mode VPN Einstellung
branches:
- name: v2020.2.1-21-g6b7ce449_parker_beta_20201102-2224-parker_beta
channel: parker_beta
date: 2020-11-02
site: "https://gitli.stratum0.org/ffbs/ffbs-site/-/commit/4fd27996d5948f03b8513f65c995e3e188c79c78"
gluon: "https://gitli.stratum0.org/ffbs/ffbs-gluon/-/commit/6b7ce449c83007ccfee9f3a00c3e497a242a52fc"
rtd: "https://gluon.readthedocs.io/en/v2020.2.1/"
v2020.2.1-21-g6b7ce449_parker_beta_20201102-2224
================================================
* Config-Mode: Zeige die Einstellungen für Mesh-VPN
an.
branches:
- name: v2020.2.1-22-ge652dec0_parker_beta_20201111-1928-parker_beta
channel: parker_beta
date: 2020-11-11
site: "https://gitli.stratum0.org/ffbs/ffbs-site/-/commit/4fd27996d5948f03b8513f65c995e3e188c79c78"
gluon: "https://gitli.stratum0.org/ffbs/ffbs-gluon/-/commit/e652dec0a119e4554a9cc907d92ede6ee20bb833"
rtd: "https://gluon.readthedocs.io/en/v2020.2.1/"
v2020.2.1-22-ge652dec0_parker_beta_20201111-1928
================================================
* Repariert die geringe Sendeleistung auf manchen
TP-Link Archer C50 v4.
{% extends "base.html" %}
{% block content %}
<style>
p .fab, p .fas { width:1.05em; }
</style>
<div class="container" >
<div class="page-header" >
<h1>{{ content.content_title }}</h1>
</div>
{{ content.content_body }}
{% with contents=context.contents.filter(path__startswith="parker/firmware/v").order_by("-content_title") %}
{% with latest_release=contents[:1].values("content_title")[0] %}
{% for content in contents %}
<hr>
<h2>{{content.content_title}}</h2>
{% if content.date is not none%}
<p>
<em>Freigegeben: {{ content.date }}</em>
</p>
{% endif %}
{% if content.branches is not none %}
<p style="border-left: 2px solid #444; padding-left:1em; margin-left:0.4em;">
{% with branches=content.branches %}
{% for branch in branches %}
<i class="fas fa-code-branch"></i>
Freigeben in {{ branch["channel"] }}
als <i>{{branch["name"]}}</i>{% if branch["date"] is defined %} am {{branch["date"]}}{% endif %}<br>
{% endfor %}
{% endwith %}
{% if content.site is not none %}
<i class="fab fa-gitlab"></i> <a href="{{content.site}}" >Site Git Repository</a><br>
{% endif %}
{% if content.gluon is not none %}
<i class="fab fa-gitlab"></i> <a href="{{content.gluon}}" >Gluon Git Repository</a><br>
{% endif %}
{% if content.rtd is not none %}
<i class="fas fa-book"></i> <a href="{{content.rtd}}" >Release Notes</a><br>
{% endif %}
<i class="fas fa-download" style=""></i>
{% if content.content_title == latest_release %}
<a href="https://w.freifunk-bs.de" >Hier herunterladen</a>
{% else %}
Nicht mehr online verfügbar. (<a href="/kontakt.html" >Kontakt</a>)
{% endif %}
</p>
{% endif %}
<h3 style="margin-top:9px;">Änderungen</h3>
{{content.content_body}}
{% endfor %}
{% endwith %}
{% endwith %}
</div>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment