Author SHA1 Message Date
klemek fe5c0f94b2 chore: 1.7.2
Python Lint CI / ruff (push) Successful in 7m14s
Python Lint CI / ruff-format-check (push) Successful in 7m8s
Python Lint CI / ty (push) Successful in 6m54s
TS Lint / ESLint (push) Successful in 5m39s
Docker Build / build (push) Successful in 13m11s
TS Lint / Oxlint (push) Failing after 5m35s
TS Lint / TypeScript (push) Successful in 5m14s
2026-07-31 16:09:18 +02:00
klemek 664b47aa75 fix: cron input
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled
2026-07-31 16:09:09 +02:00
4 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tout-doux",
"version": "1.7.1",
"version": "1.7.2",
"private": true,
"type": "module",
"engines": {
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "tout-doux"
version = "1.7.1"
version = "1.7.2"
description = ""
requires-python = ">=3.14"
dependencies = [
+8 -6
View File
@@ -219,14 +219,16 @@ watch(cron, () => {
class="input font-mono flex-1"
@change="onChangeCronValue"
/>
<label class="label flex-1 basis-full">
<label
v-if="
cronType === CronType.EVERY_N_DAYS ||
cronType === CronType.EVERY_N_WEEKS ||
cronType === CronType.EVERY_N_MONTHS
"
class="label flex-1 basis-full"
>
{{ $t("cron.rrule_start") }}
<date-input
v-if="
cronType === CronType.EVERY_N_DAYS ||
cronType === CronType.EVERY_N_WEEKS ||
cronType === CronType.EVERY_N_MONTHS
"
v-model="cronDate"
required
class="input font-mono"
Generated
+1 -1
View File
@@ -323,7 +323,7 @@ asyncpg = [
[[package]]
name = "tout-doux"
version = "1.7.1"
version = "1.7.2"
source = { editable = "." }
dependencies = [
{ name = "flask", extra = ["async"] },