Compare commits

...

2 commits

Author SHA1 Message Date
9893b278e2
chore: bump to 0.1.3
Some checks failed
Checks / check (push) Failing after -5m57s
Build and Push Docker Image / Build and Push Image (push) Has been cancelled
2024-12-09 21:02:49 +02:00
c7b4373aef
feat: show day delta 2024-12-09 21:01:47 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
<div :for={exam <- @exams} class="py-2 flex gap-2">
<div class="grow">
<div class="font-bold"><%= exam.subject %></div>
<div class="font-sm"><%= exam.date %></div>
<div class="font-sm"><%= exam.date %> | In <b><%= Date.diff(exam.date, Date.utc_today()) %></b> days</div>
</div>
<button
phx-click="edit"

View file

@ -4,7 +4,7 @@ defmodule Exmr.MixProject do
def project do
[
app: :exmr,
version: "0.1.2",
version: "0.1.3",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,