Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pantaflex44 committed Dec 30, 2024
2 parents 27f2d80 + c1eea20 commit dfb9002
Show file tree
Hide file tree
Showing 20 changed files with 615 additions and 447 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_APP_MODE="development"

VITE_APP_WIZARD="false"
VITE_APP_WIZARD="true"

VITE_APP_BASE="/"
VITE_APP_LOCALE="fr-FR"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog



## [2.0.3] - 2024-01-31

### Améliorations

- Nouvelle fenêtre d'accueil lors de la création d'un nouveau projet.
- Amélioration de la mise en page lors de l'impression du projet.

### Corrections

- Nouvelle routine d'assignation des identifiants des modules avec correction des doublons, et filtrage des modules libres.
- Possibilité de réassigner automatiquement les identifiants des modules de l'ensemble du projet sur simple action manuelle (nouveau bouton dans la barre à outils des étiquettes).


## [2.0.2] - 2024-12-26

### Améliorations
Expand Down
18 changes: 17 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@

<meta name="author" content="Christophe LEMOINE" />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://pantaflex44.github.io/Tiquettes/" />
<link rel="canonical" href="https://www.tiquettes.fr/app/" />
<meta name="generator" content="pantaflex44"/>

<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png" />
Expand All @@ -40,6 +41,21 @@
<meta name="msapplication-TileColor" content="#00aba9" />
<meta name="theme-color" content="#ffffff" />

<meta property="og:locale" content="fr_FR"/>
<meta property="og:site_name" content="Tiquettes"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Générateur d'étiquettes pour tableaux et armoires électriques - Tiquettes"/>
<meta property="og:description" content="Sublimer vos tableaux électriques tout en répondant aux besoins de la norme en vigueur. Fonctionnalités et esthétisme pour tous vos projets."/>
<meta property="og:url" content="https://www.tiquettes.fr"/>
<meta property="og:image" content="https://www.tiquettes.fr/images/og.webp"/>
<meta property="og:image:secure_url" content="https://www.tiquettes.fr/images/og.webp"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Générateur d'étiquettes pour tableaux et armoires électriques - Tiquettes"/>
<meta name="twitter:description" content="Sublimer vos tableaux électriques tout en répondant aux besoins de la norme en vigueur. Fonctionnalités et esthétisme pour tous vos projets."/>
<meta name="twitter:image" content="https://www.tiquettes.fr/images/twitter.webp"/>

<link rel="stylesheet" type="text/css" href="./styles.css" />

<script>
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tiquettes",
"title": "Tiquettes",
"version": "2.0.2",
"version": "2.0.3",
"description": "Générateur d'étiquettes pour tableaux et armoires électriques.",
"keywords": [
"tableau",
Expand Down
61 changes: 59 additions & 2 deletions public/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -279,15 +279,22 @@ h1 sup {
}

button, .fakeButton {
background-color: #f0f0f0;
background-color: #f5f5f5;
border: 1px solid darkgray;
border-radius: 5px;
min-height: 32px;
min-height: 34px;
min-width: 32px;
font-weight: 500;
padding-block: 0.4em;
padding-inline: 0.8em;
cursor: pointer;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
column-gap: 0.25em;
transition: all 0.2s ease;
}

.fakeButton {
Expand Down Expand Up @@ -319,11 +326,13 @@ button:disabled img, .fakeButton:disabled img {
input[type="file"] {
min-height: 32px;
cursor: pointer;
transition: all 0.2s ease;
}

input[type="file"]::-webkit-file-upload-button {
min-height: 32px;
cursor: pointer;
transition: all 0.2s ease;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
Expand Down Expand Up @@ -519,4 +528,52 @@ input[type="range"] {
.box {
display: none;
}
}

input[type="range"] {
-webkit-appearance: none !important;;
appearance: none !important;;
background: transparent !important;;
cursor: pointer !important;;
border: none !important;
height: 15px !important;
padding-inline: 0 !important;
}

/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
background: darkgray;
height: 2px;
}

/******** Firefox ********/
input[type="range"]::-moz-range-track {
background: darkgray;
height: 2px;
}

/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
margin-top: -7px; /* Centers thumb on the track */
background-color: var(--primary-color);
height: 17px;
width: 17px;
border-radius: 50%;
border: 2px solid #f5f5f5;
}

/***** Firefox *****/
input[type="range"]::-moz-range-thumb {
background-color: var(--primary-color);
height: 17px;
width: 17px;
border-radius: 50%;
border: 2px solid #f5f5f5;
}

/* Removes default focus */
input[type="range"]:focus {
outline: none;
}
Loading

0 comments on commit dfb9002

Please sign in to comment.