Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Romain committed May 8, 2022
1 parent b4f1208 commit 03f5412
Show file tree
Hide file tree
Showing 23 changed files with 180 additions and 110 deletions.
6 changes: 3 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Tabliato 1.1.1
## Tabliato 1.2.0

- New: quand une note correspond à plusieurs bouttons possibles, c'est à dire quand l'utilisateur donne une note sans indication de rangée, toutes les possibilités sont affichées sur la tablature en rouge au lieu d'un message d'erreur.
- Bug: correction du système d'écriture de tablature par note
- New: le mode d'écriture par note plutôt que par bouton à été repensé, réparé et documenté. Plutôt que d'écire les boutons `p7' t8 ...` etc. il est aussi possible d'écrire les notes de musiques. Les correspondances muliples sont affichées sur la tabature. Quand une note correspond à plusieurs bouttons possibles, c'est à dire quand l'utilisateur donne une note sans indication de rangée ou de direction, toutes les possibilités sont affichées sur la tablature en rouge au lieu d'un message d'erreur.
- New: la page de documentation a été modifiée pour ajouter une partie sur ce mode d'écriture.
- Bug: tracking de la musique sur le rendu même si il n'y pas d'accompagnement main gauche.

## Tabliato 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: tabliato
Version: 1.1.1
Version: 1.2.0
Section: sound
Maintainer: Jean-Romain Roussel <jromain.roussel@gmail.com>
Homepage: https://jean-romain.github.io/Tabliato/
Expand Down
12 changes: 9 additions & 3 deletions docs/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
gtag('config', 'UA-10273320-3');
</script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/highlight.min.js"></script>

<script>
hljs.initHighlightingOnLoad();
</script>

<meta charset="UTF-8" />

<title>{{ page.title }} | {{ site.title }}</title>
Expand All @@ -27,8 +33,8 @@

<meta name="description" content="Logiciel d'écriture de tablatures de qualité pour accordéon diatonique" />
<meta name="keywords" content="tablature, logiciel, accordéon, tabliato, diatonique, Lilypond, GNU/Linux" />

<link rel="stylesheet" type="text/css" href="assets/main.css" title="Tabliato">

<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/styles/atom-one-light.min.css" />
<link rel="stylesheet" type="text/css" href="assets/main.css" title="Tabliato">
</head>
39 changes: 22 additions & 17 deletions docs/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,22 @@

html { font-size: 100%; font-family: sans-serif; }

body
{
background: #EAEAEA;
font-size:14px;
color:#484848;
margin:0;
line-height: 1.4;
body {
background: #EAEAEA;
font-size:14px;
color:#484848;
margin:0;
line-height: 1.4;
}

label
{
display: block;
width: 65px;
float: left;
label {
display: block;
width: 65px;
float: left;
}

fieldset
{

fieldset {
border : 2px solid #e3e7ec;
background-color: #f8fafd;
margin-bottom : 12px;
Expand All @@ -34,8 +32,7 @@ fieldset
-webkit-border-radius : 8px;
}

legend
{
legend {
padding-left : 8px;
padding-right : 8px;
background-color : #DBE5F4;
Expand Down Expand Up @@ -98,7 +95,15 @@ a:visited {text-decoration:dashed;}
p, pre { margin:1.5em 0;}
p:first-child {margin-top:0}

pre {color:white;background-color:black;padding:5px;font-family:Courier;font-size:15px}
.hljs {
border: 1px solid gray;
border-radius:7px;
margin-right:250px;
}

.hljs:hover {
border-color: #ff4754;
}

li {line-height: 1.7;}
li p {margin-top:0}
Expand Down
Loading

0 comments on commit 03f5412

Please sign in to comment.