More Calckey branding

This commit is contained in:
ThatOneCalculator 2022-08-05 14:07:40 -07:00
parent 9ab37dd087
commit 31e9279c70
7 changed files with 12 additions and 12 deletions

View File

@ -18,7 +18,7 @@ const ev = new Xev();
* Init process * Init process
*/ */
export default async function() { export default async function() {
process.title = `Misskey (${cluster.isPrimary ? 'master' : 'worker'})`; process.title = `Calckey (${cluster.isPrimary ? 'master' : 'worker'})`;
if (cluster.isPrimary || envOption.disableClustering) { if (cluster.isPrimary || envOption.disableClustering) {
await masterMain(); await masterMain();

View File

@ -45,7 +45,7 @@ export default function load() {
mixin.apiUrl = `${mixin.scheme}://${mixin.host}/api`; mixin.apiUrl = `${mixin.scheme}://${mixin.host}/api`;
mixin.authUrl = `${mixin.scheme}://${mixin.host}/auth`; mixin.authUrl = `${mixin.scheme}://${mixin.host}/auth`;
mixin.driveUrl = `${mixin.scheme}://${mixin.host}/files`; mixin.driveUrl = `${mixin.scheme}://${mixin.host}/files`;
mixin.userAgent = `Misskey/${meta.version} (${config.url})`; mixin.userAgent = `Calckey/${meta.version} (${config.url})`;
mixin.clientEntry = clientManifest['src/init.ts']; mixin.clientEntry = clientManifest['src/init.ts'];
if (!config.redis.prefix) config.redis.prefix = mixin.host; if (!config.redis.prefix) config.redis.prefix = mixin.host;

View File

@ -16,7 +16,7 @@ export const packedFederationInstanceSchema = {
host: { host: {
type: 'string', type: 'string',
optional: false, nullable: false, optional: false, nullable: false,
example: 'misskey.example.com', example: 'calckey.example.com',
}, },
usersCount: { usersCount: {
type: 'number', type: 'number',

View File

@ -4,7 +4,7 @@ export const packedHashtagSchema = {
tag: { tag: {
type: 'string', type: 'string',
optional: false, nullable: false, optional: false, nullable: false,
example: 'misskey', example: 'calckey',
}, },
mentionedUsersCount: { mentionedUsersCount: {
type: 'number', type: 'number',

View File

@ -16,10 +16,10 @@ export default async (job: Bull.Job<WebhookDeliverJobData>) => {
url: job.data.to, url: job.data.to,
method: 'POST', method: 'POST',
headers: { headers: {
'User-Agent': 'Misskey-Hooks', 'User-Agent': 'Calckey-Hooks',
'X-Misskey-Host': config.host, 'X-Calckey-Host': config.host,
'X-Misskey-Hook-Id': job.data.webhookId, 'X-Calckey-Hook-Id': job.data.webhookId,
'X-Misskey-Hook-Secret': job.data.secret, 'X-Calckey-Hook-Secret': job.data.secret,
}, },
body: JSON.stringify({ body: JSON.stringify({
hookId: job.data.webhookId, hookId: job.data.webhookId,

View File

@ -36,7 +36,7 @@ export const meta = {
type: 'string', type: 'string',
optional: false, nullable: false, optional: false, nullable: false,
format: 'url', format: 'url',
example: 'https://misskey.example.com', example: 'https://calckey.example.com',
}, },
description: { description: {
type: 'string', type: 'string',
@ -57,12 +57,12 @@ export const meta = {
repositoryUrl: { repositoryUrl: {
type: 'string', type: 'string',
optional: false, nullable: false, optional: false, nullable: false,
default: 'https://github.com/misskey-dev/misskey', default: 'https://codeberg.org/thatonecalculator/calckey',
}, },
feedbackUrl: { feedbackUrl: {
type: 'string', type: 'string',
optional: false, nullable: false, optional: false, nullable: false,
default: 'https://github.com/misskey-dev/misskey/issues/new', default: 'https://codeberg.org/thatonecalculator/calckey/issues',
}, },
defaultDarkTheme: { defaultDarkTheme: {
type: 'string', type: 'string',

View File

@ -338,7 +338,7 @@ router.get('/notes/:note', async (ctx, next) => {
avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: note.userId })), avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: note.userId })),
// TODO: Let locale changeable by instance setting // TODO: Let locale changeable by instance setting
summary: getNoteSummary(_note), summary: getNoteSummary(_note),
instanceName: meta.name || 'Misskey', instanceName: meta.name || 'Calckey',
icon: meta.iconUrl, icon: meta.iconUrl,
themeColor: meta.themeColor, themeColor: meta.themeColor,
}); });