diff --git a/src/template/Bitsy.7.12.hbs b/src/template/Bitsy.7.12.hbs new file mode 100644 index 00000000..cbfa14c0 --- /dev/null +++ b/src/template/Bitsy.7.12.hbs @@ -0,0 +1,8961 @@ + + + + + + + + + + + + +{{TITLE}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{{{MARKUP}}} + + + + diff --git a/src/template/index.js b/src/template/index.js index 6f54052a..feecb656 100644 --- a/src/template/index.js +++ b/src/template/index.js @@ -10,5 +10,6 @@ export default [ { data: () => import('./Bitsy.7.8.hbs'), bitsyVersion: '7.8', description: 'Bitsy 7.8' }, { data: () => import('./Bitsy.7.10.hbs'), bitsyVersion: '7.10', description: 'Bitsy 7.10' }, { data: () => import('./BitsyHD.7.11.hbs'), bitsyVersion: '7.11', isHd: true, description: 'Bitsy HD (Bitsy 7.11)' }, - { data: () => import('./Bitsy.7.11.hbs'), bitsyVersion: '7.11', description: 'Bitsy 7.11', isDefault: true }, + { data: () => import('./Bitsy.7.11.hbs'), bitsyVersion: '7.11', description: 'Bitsy 7.11' }, + { data: () => import('./Bitsy.7.12.hbs'), bitsyVersion: '7.12', description: 'Bitsy 7.12', isDefault: true }, ].map(i => ({ ...i, id: `Bitsy${i.isHd ? 'HD' : ''}${i.bitsyVersion.replace(/\./g, '')}` }));