Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default {
{
id: 'searchTerm',
visibleName: '',
description: ``,
description: '',
placeholder: 'Search communities',
maxCharCount: 100,
minCharCount: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export default {
{
id: 'searchTerm',
visibleName: '',
description: ``,
description: '',
placeholder: 'Search content',
maxCharCount: 100,
minCharCount: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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) {
Expand All @@ -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) {
Expand Down
32 changes: 16 additions & 16 deletions aether-core/aether/client/src/app/store/crumbs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: '',
})
Expand Down