Release v0.1.1 #1

Merged
kqjy merged 20 commits from next into main 2025-11-22 12:31:27 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 5350d04ba5 - Show all commits

View File

@@ -1,7 +1,7 @@
"""Central location for the application version string."""
from __future__ import annotations
APP_VERSION = "0.1.0b2"
APP_VERSION = "0.1.1"
def get_version() -> str:

View File

@@ -18,6 +18,7 @@
</div>
<div class="card-body">
<form method="POST" action="{{ url_for('ui.create_connection') }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required placeholder="e.g. Production Backup">
@@ -71,6 +72,7 @@
<td><code>{{ conn.access_key }}</code></td>
<td>
<form method="POST" action="{{ url_for('ui.delete_connection', connection_id=conn.id) }}" onsubmit="return confirm('Are you sure?');" style="display: inline;">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<button type="submit" class="btn btn-sm btn-danger">Delete</button>
</form>
</td>