Skip to content

Commit 49186e6

Browse files
committed
v1.3.0
1 parent 6c85513 commit 49186e6

File tree

10 files changed

+51
-3
lines changed

10 files changed

+51
-3
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Tabliato 1.3.0
2+
3+
- New: support d'ajout d'indications de doigté
4+
- Doc: ajout d'une section sur les indications doigté dans la documentation.
5+
16
## Tabliato 1.2.0
27

38
- 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.

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: tabliato
2-
Version: 1.2.0
2+
Version: 1.3.0
33
Section: sound
44
Maintainer: Jean-Romain Roussel <jromain.roussel@gmail.com>
55
Homepage: https://jean-romain.github.io/Tabliato/

docs/doc.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<li><a href="#Anacrouse">Mesure incomplète, anacrouse</a></li>
1818
<li><a href="#Liaisons">Liaisons</a></li>
1919
<li><a href="#Rythme">Rythme speciaux</a></li>
20+
<li><a href="#Doigts">Indications de doigté</a></li>
2021
<li><a href="#Plus">Aller plus loin</a></li>
2122
</ol>
2223

@@ -260,6 +261,25 @@ <h2 id="Rythme"><a href="#Top">Rythme spéciaux</a></h2>
260261
</code></pre>
261262

262263
<p><img src="img/doc-exemple11-2.png" /></p>
264+
265+
<h2 id="Doigts"><a href="#Top">Indications de doigté</a></h2>
266+
267+
Pour ajouter des indications de doigté tabliato utilise la syntaxe native de lilypond pour les numéros de cordes ou les doigtés. Pour cela il suffit d'ajouter un tiret ou un antislah suivit du numéro de doigt. 1 pour l'index puis 2 3 4 pour les autres doigt.
268+
269+
<pre><code class="cpp">\p8:4\3 6':8 7 t7:4.\2 5:8\1 [G A]
270+
t7:4\2 p7 t8 p7 [A:4 G:4 F:4 E:4]
271+
</code></pre>
272+
273+
<p><img src="img/doc-exemple13.png" /></p>
274+
275+
Certaines tablatures indiquent parfois une lettre plutôt qu'un numéro de doigt. "i" pour index, "m" pour le majeur, "a" pour l'annulaire et "o" pour l'auriculaire. Pour cela on peut utiliser la commande « \finger » de lilypond.
276+
277+
<pre><code class="cpp">p8:4 \finger "a" 6':8 7 t7:4. \finger "m" 5:8 \finger "i" [G A]
278+
t7:4 \finger "m" p7 t8 p7 [A:4 G:4 F:4 E:4]
279+
</code></pre>
280+
281+
282+
<p><img src="img/doc-exemple13-2.png" /></p>
263283

264284
<h2 id="Plus"><a href="#Top">Aller plus loin</a></h2>
265285

docs/img/doc-exemple13-2.png

11.7 KB
Loading

docs/img/doc-exemple13.png

11.9 KB
Loading
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<tabliato>
3+
<propertie displayFingering="true" title="Trois matelos du port de Brest" system="cadb" motif="22" time="4/4" accordion="ctl1gc" composer="" key="c \major" tempo="4=160" instrument="" poet="" rythm="B a B a " subtitle="" tagline=""/>
4+
<tabulature>\repeat volta 2
5+
{
6+
p8:4 \finger "a" 6':8 7 t7:4. \finger "m" 5:8 \finger "i" [G A]
7+
t7:4 \finger "m" p7 t8 p7 [A:4 G:4 F:4 E:4]
8+
8 6':8 7 t7:4. 5:8 [G A]
9+
t7:4 p7 t8 p7 [A:4 G:4 F:4 E:4]
10+
}
11+
12+
\break
13+
14+
\repeat volta 2
15+
{
16+
t7:4 6':8 8 p7:4 6':8 8 [A G]
17+
7':4 7' 8:8 6' 7:4 [C E]
18+
t7' 6':8 8 p7:4 6':8 8 [A G]
19+
6':4 7 t7:2 [F:4 E:4 A:4 a:4]
20+
}
21+
</tabulature>
22+
<lyric></lyric>
23+
</tabliato>
Binary file not shown.
Binary file not shown.

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int main(int argc, char *argv[])
2525
QScopedPointer<QCoreApplication> app(createApplication(argc, argv));
2626
QCoreApplication::setOrganizationName("tabliato");
2727
QCoreApplication::setApplicationName("tabliato");
28-
QCoreApplication::setApplicationVersion("1.2.0");
28+
QCoreApplication::setApplicationVersion("1.3.0");
2929

3030
APPDIR = QApplication::applicationDirPath();
3131
APPPATH = QApplication::applicationFilePath();

windows/tabliato.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "tabliato"
5-
#define MyAppVersion "1.2.0"
5+
#define MyAppVersion "1.3.0"
66
#define MyAppPublisher "tabliato"
77
#define MyAppURL "https://jean-romain.github.io/tabliato/"
88
#define MyAppExeName "tabliato.exe"

0 commit comments

Comments
 (0)