Improved builder
This commit is contained in:
parent
a78e6d3d8a
commit
2387542efc
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@ node_modules/
|
||||
builds/
|
||||
.DS_Store
|
||||
*/.DS_Store
|
||||
debug.*
|
6
icon.svg
6
icon.svg
@ -1,6 +0,0 @@
|
||||
<svg class="vector" width="300px" height="300px" xmlns="http://www.w3.org/2000/svg" baseProfile="full" version="1.1" style="width: 300px; height: 300px; stroke: rgb(0, 0, 0); stroke-width: 0; fill: none; stroke-linecap: round; background:black">
|
||||
<rect width="300" height="300" style="fill:rgb(0,0,0)" />
|
||||
<g transform="translate(48 48) scale(0.675)">
|
||||
<path d="M60,60 l120,0 a60,60 0 0,1 60,60 a-60,60 0 0,1 -60,60 l-120,0 M180,180 a60,60 0 0,1 60,60" style="stroke-width: 12; stroke-linecap: round; stroke-linejoin: round; stroke: rgb(255, 255, 255); fill: none;"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 586 B |
@ -59,7 +59,7 @@ function Acels (client) {
|
||||
return h
|
||||
}
|
||||
this.convert = (event) => {
|
||||
const accelerator = event.key === ' ' ? 'Space' : event.key.substr(0, 1).toUpperCase() + event.key.substr(1)
|
||||
const accelerator = event.key === ' ' ? 'Space' : capitalize(event.key.replace('Arrow', ''))
|
||||
if ((event.ctrlKey || event.metaKey) && event.shiftKey) {
|
||||
return `CmdOrCtrl+Shift+${accelerator}`
|
||||
}
|
||||
@ -113,6 +113,7 @@ function Acels (client) {
|
||||
this.toggle = () => {
|
||||
this.el.className = this.el.className === 'hidden' ? '' : 'hidden'
|
||||
}
|
||||
function capitalize (s) { return s.substr(0, 1).toUpperCase() + s.substr(1) }
|
||||
}
|
||||
'use strict'
|
||||
function Lisp (lib = {}) {
|
||||
|
@ -58,7 +58,7 @@ function Acels (client) {
|
||||
}
|
||||
|
||||
this.convert = (event) => {
|
||||
const accelerator = event.key === ' ' ? 'Space' : event.key.substr(0, 1).toUpperCase() + event.key.substr(1)
|
||||
const accelerator = event.key === ' ' ? 'Space' : capitalize(event.key.replace('Arrow', ''))
|
||||
if ((event.ctrlKey || event.metaKey) && event.shiftKey) {
|
||||
return `CmdOrCtrl+Shift+${accelerator}`
|
||||
}
|
||||
@ -81,6 +81,7 @@ function Acels (client) {
|
||||
this.onKeyDown = (e) => {
|
||||
const target = this.get(this.convert(e))
|
||||
if (!target || !target.downfn) { return this.pipe ? this.pipe.onKeyDown(e) : null }
|
||||
|
||||
target.downfn()
|
||||
e.preventDefault()
|
||||
}
|
||||
@ -118,4 +119,6 @@ function Acels (client) {
|
||||
this.toggle = () => {
|
||||
this.el.className = this.el.className === 'hidden' ? '' : 'hidden'
|
||||
}
|
||||
|
||||
function capitalize (s) { return s.substr(0, 1).toUpperCase() + s.substr(1) }
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ function cleanup (txt) {
|
||||
|
||||
// Create release
|
||||
|
||||
const release_body = `
|
||||
fs.writeFileSync('index.html', cleanup(`
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
@ -43,13 +43,11 @@ const release_body = `
|
||||
${styles.reduce((acc, item) => { return `${acc}/* Including Style ${item} */ \n\n${fs.readFileSync('./links/' + item, 'utf8')}\n` }, '')}
|
||||
</style>
|
||||
</body>
|
||||
</html>`
|
||||
|
||||
fs.writeFileSync('index.html', cleanup(release_body))
|
||||
</html>`))
|
||||
|
||||
// Create debug
|
||||
|
||||
const debug_body = `
|
||||
fs.writeFileSync('debug.html', `
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
@ -70,8 +68,6 @@ const debug_body = `
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>`
|
||||
|
||||
fs.writeFileSync('debug.html', debug_body)
|
||||
</html>`)
|
||||
|
||||
console.log(`Built ${id}`)
|
||||
|
Loading…
x
Reference in New Issue
Block a user