mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-28 13:47:12 +02:00
refactor: rename app to aryx
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -145,7 +145,7 @@ export class EryxAppService extends EventEmitter<AppServiceEvents> {
|
||||
if (!this.didScheduleInitialProjectGitRefresh) {
|
||||
this.didScheduleInitialProjectGitRefresh = true;
|
||||
void this.refreshProjectGitContext().catch((error) => {
|
||||
console.error('[eryx git]', error);
|
||||
console.error('[aryx git]', error);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1348,7 +1348,7 @@ export class EryxAppService extends EventEmitter<AppServiceEvents> {
|
||||
|
||||
changed = true;
|
||||
const failedAt = nowIso();
|
||||
const error = 'Pending approval was interrupted because Eryx restarted before a decision was recorded.';
|
||||
const error = 'Pending approval was interrupted because Aryx restarted before a decision was recorded.';
|
||||
const requestIds = this.rejectPendingApprovals(session, failedAt, error);
|
||||
session.status = 'error';
|
||||
session.lastError = error;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import keytar from 'keytar';
|
||||
|
||||
const serviceName = 'eryx';
|
||||
const serviceName = 'aryx';
|
||||
|
||||
export class SecretStore {
|
||||
async get(account: string): Promise<string | null> {
|
||||
|
||||
@@ -115,7 +115,7 @@ export class SidecarClient {
|
||||
|
||||
childProcess.stderr.setEncoding('utf8');
|
||||
childProcess.stderr.on('data', (chunk: string) => {
|
||||
console.error('[eryx sidecar]', chunk.trim());
|
||||
console.error('[aryx sidecar]', chunk.trim());
|
||||
});
|
||||
|
||||
childProcess.on('exit', (code) => {
|
||||
|
||||
@@ -11,7 +11,7 @@ export function createMainWindow(): BrowserWindow {
|
||||
height: 960,
|
||||
minWidth: 1120,
|
||||
minHeight: 720,
|
||||
title: 'eryx',
|
||||
title: 'aryx',
|
||||
icon: resolveWindowIconPath({
|
||||
appPath: app.getAppPath(),
|
||||
platform: process.platform,
|
||||
|
||||
Reference in New Issue
Block a user