option: hide 'page details' text for word counter (#315)

* option: hide 'page details' text for word counter

* fix version number (semver)

* set camel case to snake case
This commit is contained in:
Emir 2020-12-05 01:07:47 +03:00 committed by GitHub
parent 6501ad9b80
commit 4998b34cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
/* /*
* word counter * word counter
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/) * (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 admiraldus (https://github.com/admiraldus)
* under the MIT license * under the MIT license
*/ */
@ -14,8 +15,16 @@ module.exports = {
name: 'word counter', name: 'word counter',
desc: desc:
'add page details: word/character/sentence/block count & speaking/reading times.', 'add page details: word/character/sentence/block count & speaking/reading times.',
version: '0.1.0', version: '0.2.0',
author: 'dragonwocky', author: 'dragonwocky',
options: [
{
key: 'hide_page_details_text',
label: 'hide "page details" text',
type: 'toggle',
value: false,
},
],
hacks: { hacks: {
'renderer/preload.js'(store, __exports) { 'renderer/preload.js'(store, __exports) {
const copyToClipboard = (str) => { const copyToClipboard = (str) => {
@ -99,7 +108,7 @@ module.exports = {
]; ];
$container.children[0].innerHTML = ` $container.children[0].innerHTML = `
<span><b>page details<br></b> (click to copy)</span> ${store().hide_page_details_text ? '' : '<span><b>page details<br></b> (click to copy)</span>'}
${Object.keys(details).reduce( ${Object.keys(details).reduce(
(prev, key) => (prev, key) =>
prev + prev +