mirror of
https://github.com/gabriele-cusato/HandTranscriptMd.git
synced 2026-07-22 14:30:25 +00:00
modifica alle settings
This commit is contained in:
parent
7712638ffe
commit
2043a2e607
1 changed files with 9 additions and 0 deletions
|
|
@ -96,6 +96,9 @@ export const DEFAULT_SETTINGS: HandwritingSettings = {
|
|||
hwmHandwritingMode: false, // default: mostra SVG piena
|
||||
};
|
||||
|
||||
// Nome del branch corrente — aggiornare manualmente ad ogni cambio di branch
|
||||
const PLUGIN_BRANCH = 'overlay';
|
||||
|
||||
export class HandwritingSettingTab extends PluginSettingTab {
|
||||
plugin: HandwritingPlugin;
|
||||
|
||||
|
|
@ -110,6 +113,12 @@ export class HandwritingSettingTab extends PluginSettingTab {
|
|||
|
||||
containerEl.createEl('h2', { text: 'Handwriting to Markdown' });
|
||||
|
||||
// Riga versione + branch
|
||||
containerEl.createEl('p', {
|
||||
text: `v${this.plugin.manifest.version} — branch: ${PLUGIN_BRANCH}`,
|
||||
cls: 'setting-item-description',
|
||||
});
|
||||
|
||||
// --- Cartella SVG ---
|
||||
new Setting(containerEl)
|
||||
.setName('Cartella SVG')
|
||||
|
|
|
|||
Loading…
Reference in a new issue