Bump to v1.1.5: Personalize terminal header as hannesalbeiro@txt2md and update versioning.
This commit is contained in:
parent
e589749f60
commit
dbca80fa10
2
app.py
2
app.py
|
|
@ -11,7 +11,7 @@ app = Flask(__name__)
|
|||
app.secret_key = os.environ.get("FLASK_SECRET_KEY", "prod-secret-7721")
|
||||
|
||||
metrics = PrometheusMetrics(app)
|
||||
metrics.info('app_info', 'Application info', version='1.1.3')
|
||||
metrics.info('app_info', 'Application info', version='1.1.5')
|
||||
|
||||
|
||||
# API Configuration
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ header.terminal-header h1 {
|
|||
}
|
||||
|
||||
header.terminal-header h1::before {
|
||||
content: "root@txt2md:~/ ";
|
||||
content: "hannesalbeiro@txt2md:~/ ";
|
||||
font-size: 1.2rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>txt2md :: terminal</title>
|
||||
<!-- Cache-Buster v1.1.3 -->
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}?v=1.1.3">
|
||||
<!-- Cache-Buster v1.1.5 -->
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}?v=1.1.5">
|
||||
</head>
|
||||
<body class="terminal-bg">
|
||||
<div class="container">
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
<section class="input-section">
|
||||
<h2>[ INPUT_BUFFER ]</h2>
|
||||
<form id="convert-form" method="POST">
|
||||
<textarea name="text" placeholder="user@txt2md:~$ paste_your_text_here..." required>{{ original_text }}</textarea>
|
||||
<textarea name="text" placeholder="hannesalbeiro@txt2md:~$ paste_your_text_here..." required>{{ original_text }}</textarea>
|
||||
<button type="submit" id="convert-btn">
|
||||
<span class="spinner"></span>
|
||||
<span class="btn-text">EXECUTE CONVERSION</span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue