Skip to content

Commit 33f39cd

Browse files
committed
chore(): name typo in application all OS
1 parent e794782 commit 33f39cd

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
> - Check your API key dashboard to verify the key is active and has sufficient credits
2424
> - Ensure you're using the correct API key format (OpenAI keys start with "sk-")
2525
>
26-
> The configuration file is stored at: `C:\Users\[USERNAME]\AppData\Roaming\interview-coder-v1\config.json` (on Windows) or `/Users/[USERNAME]/Library/Application Support/interview-coder-v1/config.json` (on macOS)
26+
> The configuration file is stored at: `C:\Users\[USERNAME]\AppData\Roaming\invisiblecoder\config.json` (on Windows) or `/Users/[USERNAME]/Library/Application Support/invisiblecoder/config.json` (on macOS)
2727
2828
## Free, Open-Source AI-Powered Interview Preparation Tool
2929

electron/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ function loadEnvVariables() {
506506
async function initializeApp() {
507507
try {
508508
// Set custom cache directory to prevent permission issues
509-
const appDataPath = path.join(app.getPath('appData'), 'interview-coder-v1')
509+
const appDataPath = path.join(app.getPath('appData'), 'invisiblecoder')
510510
const sessionPath = path.join(appDataPath, 'session')
511511
const tempPath = path.join(appDataPath, 'temp')
512512
const cachePath = path.join(appDataPath, 'cache')

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "interview-coder-v1",
2+
"name": "invisiblecoder",
33
"version": "1.0.19",
44
"main": "./dist-electron/main.js",
55
"scripts": {

stealth-run.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ echo.
1919
cd /D "%~dp0"
2020

2121
echo === Step 1: Creating required directories... ===
22-
mkdir "%APPDATA%\interview-coder-v1\temp" 2>nul
23-
mkdir "%APPDATA%\interview-coder-v1\cache" 2>nul
24-
mkdir "%APPDATA%\interview-coder-v1\screenshots" 2>nul
25-
mkdir "%APPDATA%\interview-coder-v1\extra_screenshots" 2>nul
22+
mkdir "%APPDATA%\invisiblecoder\temp" 2>nul
23+
mkdir "%APPDATA%\invisiblecoder\cache" 2>nul
24+
mkdir "%APPDATA%\invisiblecoder\screenshots" 2>nul
25+
mkdir "%APPDATA%\invisiblecoder\extra_screenshots" 2>nul
2626

2727
echo === Step 2: Cleaning previous builds... ===
2828
echo Removing old build files to ensure a fresh start...

stealth-run.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ echo
2020
cd "$(dirname "$0")"
2121

2222
echo "=== Step 1: Creating required directories... ==="
23-
mkdir -p ~/Library/Application\ Support/interview-coder-v1/temp
24-
mkdir -p ~/Library/Application\ Support/interview-coder-v1/cache
25-
mkdir -p ~/Library/Application\ Support/interview-coder-v1/screenshots
26-
mkdir -p ~/Library/Application\ Support/interview-coder-v1/extra_screenshots
23+
mkdir -p ~/Library/Application\ Support/invisiblecoder/temp
24+
mkdir -p ~/Library/Application\ Support/invisiblecoder/cache
25+
mkdir -p ~/Library/Application\ Support/invisiblecoder/screenshots
26+
mkdir -p ~/Library/Application\ Support/invisiblecoder/extra_screenshots
2727

2828
echo "=== Step 2: Cleaning previous builds... ==="
2929
echo "Removing old build files to ensure a fresh start..."

0 commit comments

Comments
 (0)