Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: icon-maker-macos-arm64
name: moicons-macos-arm64
path: build/dist/mac-arm64/pack/*.dmg

release:
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Rename artifacts
run: |
mkdir -p dist/macos-arm64
mv dist/icon-maker-macos-arm64/*.dmg dist/macos-arm64/
mv dist/moicons-macos-arm64/*.dmg dist/macos-arm64/

- name: Create GitHub Release draft
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ npm run build

## Download

You can download the app from the [releases page](https://github.com/TeamDev-IP/MoBrowser-App-Icon-Maker/releases). All releases are signed and notarized by Apple.
You can download the app from the [releases page](https://github.com/mo-browser-apps/icons/releases). All releases are signed and notarized by Apple.
8 changes: 4 additions & 4 deletions mobrowser.conf.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"app": {
"name": "Icon Maker",
"name": "MōIcons",

@vlad-lubenskyi vlad-lubenskyi Jun 4, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We may want to avoid this because this will end up in the file system path for the app data dir.
With that said, I had no problems with ō on macOS.

"version": {
"major": "1",
"minor": "0",
"patch": "2"
"patch": "3"
},
"author": "",
"copyright": "© 2026 TeamDev. All rights reserved.",
"description": "Denerate beautiful macOS app icons in the *.icns format using AI.",
"description": "Generate beautiful macOS app icons in the *.icns format using AI.",
"locales": ["en-US"],
"trustedOrigins": [],
"bundle": {
"macOS": {
"icon": "assets/app.icns",
"bundleID": "com.teamdev.IconMaker",
"bundleID": "com.teamdev.MoIcons",
"codesignIdentity": "${MAC_CODESIGN_IDENTITY}",
Comment on lines 15 to 18
"codesignEntitlements": "assets/entitlements.plist",
"teamID": "${MAC_TEAM_ID}",
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "IconMaker",
"name": "moicons",
"private": true,
"version": "0.0.0",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const ICON_SIZES: [string, number][] = [
['icon_512x512@2x.png', 1024],
];

const GITHUB_REPOSITORY_URL = 'https://github.com/TeamDev-IP/MoBrowser-App-Icon-Maker';
const GITHUB_REPOSITORY_URL = 'https://github.com/mo-browser-apps/icons';

function run(cmd: string): Promise<void> {
return new Promise((resolve, reject) => {
Expand Down Expand Up @@ -98,7 +98,7 @@ async function removeIcnsOutputs(icnsPath: string, iconsetDir: string): Promise<
}

async function buildIcnsAt(imageData: Buffer, iconsetDir: string, icnsPath: string): Promise<void> {
const tmp = await fs.mkdtemp(path.join(os.tmpdir(), 'iconmaker-'));
const tmp = await fs.mkdtemp(path.join(os.tmpdir(), 'moicons-'));
const srcPng = path.join(tmp, 'icon_1024.png');
await fs.writeFile(srcPng, Buffer.from(imageData));
try {
Expand Down
2 changes: 1 addition & 1 deletion src/main/lib/providers/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class MockImageProvider implements ImageProvider {
if (!mockProviderLogged) {
mockProviderLogged = true;
console.warn(
"[IconMaker] Mock image provider is active (no paid API calls). " +
"[MōIcons] Mock image provider is active (no paid API calls). " +
"Unset ICON_PROVIDER or set ICON_PROVIDER=openai for real generation.",
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/squircle-clip-defs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function SquircleClipDefs() {
return (
<svg width="0" height="0" className="absolute overflow-hidden" aria-hidden>
<defs>
<clipPath id="iconmaker-squircle-clip" clipPathUnits="objectBoundingBox">
<clipPath id="moicons-squircle-clip" clipPathUnits="objectBoundingBox">
<path d={SQUICLE_PATH_01} />
</clipPath>
</defs>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/squircle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const BLUEPRINT_SQUICLE_D = pointsToPathD(_BP)

export const ICON_CLIP_FILTER_BASE = "drop-shadow(0 12px 24px rgba(0,0,0,0.5))"

export const appIconShapeClip: CSSProperties = { clipPath: "url(#iconmaker-squircle-clip)" }
export const appIconShapeClip: CSSProperties = { clipPath: "url(#moicons-squircle-clip)" }

export const ICON_FACE_EDGE_DEFAULT = "rgba(255,255,255,0.08)"
/** Dark gray rim for the idle / generating three-icon stack. */
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8"/>
<link rel="stylesheet" href="./index.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>M&#333;Browser Demo</title>
<title>MōIcons</title>
<script type="module" src="./main.tsx"></script>
</head>
<body>
Expand Down