diff --git a/aether-core/aether/client/buildresources/get-version-from-git.js b/aether-core/aether/client/buildresources/get-version-from-git.js index ad5aec3..97d9d82 100644 --- a/aether-core/aether/client/buildresources/get-version-from-git.js +++ b/aether-core/aether/client/buildresources/get-version-from-git.js @@ -11,7 +11,7 @@ function gitIsDirty() { Check if we have any uncommitted changes at the moment of compile. */ let isDirty = execSync( - `git diff-index --quiet HEAD -- . ':!*package-lock.json' ':!*package.json' ':!*buildresources/get-version-from-git.js' ':!../support/getaether-website' || echo 'dirty'` + "git diff-index --quiet HEAD -- . ':!*package-lock.json' ':!*package.json' ':!*buildresources/get-version-from-git.js' ':!../support/getaether-website' || echo 'dirty'" ) return isDirty.toString() diff --git a/aether-core/aether/client/src/app/components/locations/searchscope/communitysearch.vue b/aether-core/aether/client/src/app/components/locations/searchscope/communitysearch.vue index 17d8f8f..41b4fff 100644 --- a/aether-core/aether/client/src/app/components/locations/searchscope/communitysearch.vue +++ b/aether-core/aether/client/src/app/components/locations/searchscope/communitysearch.vue @@ -203,7 +203,7 @@ export default { { id: 'searchTerm', visibleName: '', - description: ``, + description: '', placeholder: 'Search communities', maxCharCount: 100, minCharCount: 1, diff --git a/aether-core/aether/client/src/app/components/locations/searchscope/contentsearch.vue b/aether-core/aether/client/src/app/components/locations/searchscope/contentsearch.vue index 88e432b..403f195 100644 --- a/aether-core/aether/client/src/app/components/locations/searchscope/contentsearch.vue +++ b/aether-core/aether/client/src/app/components/locations/searchscope/contentsearch.vue @@ -216,7 +216,7 @@ export default { { id: 'searchTerm', visibleName: '', - description: ``, + description: '', placeholder: 'Search content', maxCharCount: 100, minCharCount: 1, diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/about.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/about.vue index 8c54125..3abcb8c 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/about.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/about.vue @@ -21,11 +21,11 @@ export default { var headline = '# About' let versionAndBuild = require('electron').remote.app.getVersion().split('+') var intro = - `**Aether Community Edition v` + + '**Aether Community Edition v' + versionAndBuild[0] + - `, build ` + + ', build ' + versionAndBuild[1] + - `**` + '**' var content = ` ### What is Aether? diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/adminsquickstart.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/adminsquickstart.vue index 7a6ceae..b919f29 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/adminsquickstart.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/adminsquickstart.vue @@ -19,7 +19,8 @@ export default { } // These are var's and not let's because lets are defined only from the point they're in the code, and vars are defined for the whole scope regardless of where they are. var headline = "# Admin's Quickstart" -var intro = `**This is a quick introduction to founding your own community on Aether.**` +var intro = + '**This is a quick introduction to founding your own community on Aether.**' var content = ` Thanks for being here! Aether is better because of you. The more communities with diverse views inhabiting this place, the more interesting, insightful, interesting it ends up being. We have space for cats, corgis, humans, motorcycles, \`\`\`python\`\`\`, pythons, cryptocurrencies, **Ć̢̘̳̺͉̯̘̣̠̂̓̔̓͗ͭ͊̿̿́͜ţ̛̫̗̱̗̖̬̱̜͖̬̐͊̌̃̀̅̒̋͛͝͡ͅh̷̤̦̝̟̜̓ͦͥ̿ͬ̐̔͘͜ụ̺̻͍̱̟̦͇̗̦̳̤͑̌͐̆̔͊ͧ̔̈͊̀͞l̸̴͔̣͚͇̯̭ͦ̋̈͌͊͂̇͂̚͟͝h̤̰͕͓̪͓͗ͭ̆̾ͮ̄ͪ͒́̆̉͊̍͜ͅͅȗ̸̮̦̦̣̠̝̫̹̟͈͇̯͚̏ͯ͂̎̚͞ͅ**, and anything in between. diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/changelog.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/changelog.vue index 9cbd104..486ae1b 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/changelog.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/changelog.vue @@ -62,7 +62,8 @@ export default { } // These are var's and not let's because lets are defined only from the point they're in the code, and vars are defined for the whole scope regardless of where they are. var headline = '# Changelog' -var intro = `**This is the change history between versions. The most current version of the changelog can be found [here](https://getaether.net/docs/changelog).**` +var intro = + '**This is the change history between versions. The most current version of the changelog can be found [here](https://getaether.net/docs/changelog).**' var content = ` ## 2.1.0.dev.1 *July 19, 2023* diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/intro.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/intro.vue index 408be6e..e68c228 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/intro.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/intro.vue @@ -23,7 +23,7 @@ export default { }, } // These are var's and not let's because lets are defined only from the point they're in the code, and vars are defined for the whole scope regardless of where they are. -var headline = `# A Beginner's Guide to the Galaxy` +var headline = "# A Beginner's Guide to the Galaxy" var intro = `**(You don't have to read it in entirety, but it might be interesting)** ` var content = ` diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/modship.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/modship.vue index 8d18f1d..6785e78 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/modship.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/modship.vue @@ -86,7 +86,8 @@ export default { } // These are var's and not let's because lets are defined only from the point they're in the code, and vars are defined for the whole scope regardless of where they are. var headline = '# Mod mode' -var intro = `**This place allows you to set the mod mode, and tells about how moderation works in Aether.**` +var intro = + '**This place allows you to set the mod mode, and tells about how moderation works in Aether.**' var content1 = ` * **Mod mode allows you to act as a mod.** You should enable this mode if you've created any communities, so you can moderate them. diff --git a/aether-core/aether/client/src/app/components/locations/settingsscope/sfwlist.vue b/aether-core/aether/client/src/app/components/locations/settingsscope/sfwlist.vue index 920116d..c4b543a 100644 --- a/aether-core/aether/client/src/app/components/locations/settingsscope/sfwlist.vue +++ b/aether-core/aether/client/src/app/components/locations/settingsscope/sfwlist.vue @@ -63,7 +63,8 @@ export default { } // These are var's and not let's because lets are defined only from the point they're in the code, and vars are defined for the whole scope regardless of where they are. var headline = '# Safe-for-work communities list' -var intro = `**Preferences related to the safe-for-work markings for communities.**` +var intro = + '**Preferences related to the safe-for-work markings for communities.**' var content = ` * SFW communities are communities that are chosen to be work-safe, and they contain some of the higher-quality discussion and content the network has available. diff --git a/aether-core/aether/client/src/app/services/nmsupervisor/nmsupervisor.ts b/aether-core/aether/client/src/app/services/nmsupervisor/nmsupervisor.ts index 9e81c3e..106d890 100644 --- a/aether-core/aether/client/src/app/services/nmsupervisor/nmsupervisor.ts +++ b/aether-core/aether/client/src/app/services/nmsupervisor/nmsupervisor.ts @@ -15,16 +15,16 @@ let MintNewUniqueUsername = function ( password: string, callback: any ) { - let execString = `go run ../../support/nameminter/main.go mint` - execString += ` --reqname="` + let execString = 'go run ../../support/nameminter/main.go mint' + execString += ' --reqname="' execString += requestedUsername - execString += `" --targetkeyfp="` + execString += '" --targetkeyfp="' execString += targetKeyFp - execString += `" --expiry="` + execString += '" --expiry="' execString += expiryTimestamp - execString += `" --password="` + execString += '" --password="' execString += password - execString += `"` + execString += '"' exec(execString, function (e: any, stdout: any) { // , stderr: any @@ -37,7 +37,7 @@ let MintNewUniqueUsername = function ( } let FetchAlreadyMintedPendingUsernames = function (callback: any) { - let execString = `go run ../../support/nameminter/main.go batchdeliver` + let execString = 'go run ../../support/nameminter/main.go batchdeliver' exec(execString, function (e: any, stdout: any) { // , stderr: any if (e instanceof Error) { @@ -52,10 +52,10 @@ let MarkUsernamesAsDelivered = function ( deliveredUsernames: any, callback: any ) { - let execString = `go run ../../support/nameminter/main.go markdelivered` - execString += ` --deliveredfps='` + let execString = 'go run ../../support/nameminter/main.go markdelivered' + execString += " --deliveredfps='" execString += JSON.stringify(deliveredUsernames) - execString += `'` + execString += "'" exec(execString, function (e: any, stdout: any) { // , stderr: any if (e instanceof Error) { diff --git a/aether-core/aether/client/src/app/store/crumbs.ts b/aether-core/aether/client/src/app/store/crumbs.ts index 50e012d..7c6a0b8 100644 --- a/aether-core/aether/client/src/app/store/crumbs.ts +++ b/aether-core/aether/client/src/app/store/crumbs.ts @@ -193,109 +193,109 @@ let crumbActions = { } else if (context.state.route.name === 'Intro') { updatedCrumbs.push({ EntityType: '', - VisibleName: `A Beginner's Guide to the Galaxy`, + VisibleName: "A Beginner's Guide to the Galaxy", Link: 'intro', Fingerprint: '', }) } else if (context.state.route.name === 'Settings') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Settings`, + VisibleName: 'Settings', Link: 'settings', Fingerprint: '', }) } else if (context.state.route.name === 'Settings>Defaults') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Settings`, + VisibleName: 'Settings', Link: 'settings', Fingerprint: '', }) updatedCrumbs.push({ EntityType: '', - VisibleName: `Defaults`, + VisibleName: 'Defaults', Link: 'settings/defaults', Fingerprint: '', }) } else if (context.state.route.name === 'Settings>Shortcuts') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Settings`, + VisibleName: 'Settings', Link: 'settings', Fingerprint: '', }) updatedCrumbs.push({ EntityType: '', - VisibleName: `Shortcuts`, + VisibleName: 'Shortcuts', Link: 'settings/shortcuts', Fingerprint: '', }) } else if (context.state.route.name === 'Settings>Advanced') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Settings`, + VisibleName: 'Settings', Link: 'settings', Fingerprint: '', }) updatedCrumbs.push({ EntityType: '', - VisibleName: `Advanced`, + VisibleName: 'Advanced', Link: 'settings/advanced', Fingerprint: '', }) } else if (context.state.route.name === 'About') { updatedCrumbs.push({ EntityType: '', - VisibleName: `About`, + VisibleName: 'About', Link: 'about', Fingerprint: '', }) } else if (context.state.route.name === 'Membership') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Membership`, + VisibleName: 'Membership', Link: 'membership', Fingerprint: '', }) } else if (context.state.route.name === 'Changelog') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Changelog`, + VisibleName: 'Changelog', Link: 'changelog', Fingerprint: '', }) } else if (context.state.route.name === 'AdminsQuickstart') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Admin's Quickstart`, + VisibleName: "Admin's Quickstart", Link: 'adminsquickstart', Fingerprint: '', }) } else if (context.state.route.name === 'SFWList') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Safe-for-work list`, + VisibleName: 'Safe-for-work list', Link: 'sfwlist', Fingerprint: '', }) } else if (context.state.route.name === 'Modship') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Mod mode`, + VisibleName: 'Mod mode', Link: 'modship', Fingerprint: '', }) } else if (context.state.route.name === 'Namemint') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Name minter`, + VisibleName: 'Name minter', Link: 'namemint', Fingerprint: '', }) } else if (context.state.route.name === 'NewUser') { updatedCrumbs.push({ EntityType: '', - VisibleName: `Create New User`, + VisibleName: 'Create New User', Link: 'newuser', Fingerprint: '', })