mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
This commit is contained in:
parent
5afc5e6bb6
commit
cbfabdf0c2
4 changed files with 6 additions and 5 deletions
|
|
@ -6,7 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
---
|
||||
## [v2.1.7] - 2025-08-28
|
||||
## [v2.1.7] - 2025-08-30
|
||||
|
||||
### New
|
||||
- UI: Added a version check feature to the Settings page. This allows users to verify if their running DockFlare instance is up-to-date by comparing the local Docker image digest against the official repository or by checking the latest GitHub release tag.
|
||||
|
||||
### Changed
|
||||
- UI: Reorganized the Settings page to include a left-side sticky navigation and section anchors for improved discoverability and faster navigation.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
<a href="https://github.com/ChrispyBacon-dev/DockFlare/releases/tag/v2.1.6"><img src="https://img.shields.io/badge/Release-v2.1.6-blue.svg?style=for-the-badge" alt="Release"></a>
|
||||
<a href="https://github.com/ChrispyBacon-dev/DockFlare/releases/tag/v2.1.7"><img src="https://img.shields.io/badge/Release-v2.1.7-blue.svg?style=for-the-badge" alt="Release"></a>
|
||||
<a href="https://hub.docker.com/r/alplat/dockflare"><img src="https://img.shields.io/docker/pulls/alplat/dockflare?style=for-the-badge" alt="Docker Pulls"></a>
|
||||
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/Made%20with-Python-1f425f.svg?style=for-the-badge" alt="Python"></a>
|
||||
<a href="https://github.com/ChrispyBacon-dev/DockFlare/blob/main/LICENSE.MD"><img src="https://img.shields.io/badge/License-GPL--3.0-blue.svg?style=for-the-badge" alt="License"></a>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ import sys
|
|||
import logging
|
||||
|
||||
# --- DockFlare Version ---
|
||||
APP_VERSION = "v2.1.6"
|
||||
APP_VERSION = "v2.1.7"
|
||||
# --- web: https://dockflare.app ---
|
||||
# --- github: https://github.com/ChrispyBacon-dev/DockFlare ---
|
||||
|
||||
|
|
|
|||
|
|
@ -1422,7 +1422,6 @@ def create_access_group():
|
|||
flash(f"Success: Access Group '{display_name}' created.", "success")
|
||||
return redirect(url_for('web.access_policies_page'))
|
||||
|
||||
|
||||
@bp.route('/ui/access-groups/edit/<group_id>', methods=['POST'])
|
||||
def edit_access_group(group_id):
|
||||
with state_lock:
|
||||
|
|
@ -1456,7 +1455,6 @@ def edit_access_group(group_id):
|
|||
reconcile_state_threaded()
|
||||
return redirect(url_for('web.access_policies_page'))
|
||||
|
||||
|
||||
@bp.route('/ui/access-groups/delete/<group_id>', methods=['POST'])
|
||||
def delete_access_group(group_id):
|
||||
with state_lock:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue