create-zenith 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,54 @@
1
+ # Zenith Logos
2
+
3
+ This directory contains the Zenith framework logo assets.
4
+
5
+ ## Logo Files
6
+
7
+ Based on the logo designs, you should place the following files here:
8
+
9
+ 1. **zenith-logo-icon.png** (or .svg) - The file icon version with the folded corner and ".ZENITH" button
10
+ 2. **zenith-logo-z.png** (or .svg) - The stylized "Z" logo with gradient and light trails
11
+ 3. **zenith-logo-full.png** (or .svg) - The full logo with "ZENITH" text below
12
+ 4. **zenith-logo-soon.png** (or .svg) - The logo variant with "Soon" text
13
+
14
+ ## File Icon for .zen Files
15
+
16
+ The SVG logo has been converted to a macOS `.icns` file to use as the file icon for `.zen` files.
17
+
18
+ ### Setting the Icon
19
+
20
+ **Option 1: Use the automated script (recommended)**
21
+ ```bash
22
+ cd assets/logos
23
+ ./set-zen-icon.sh path/to/your/file.zen
24
+ ```
25
+
26
+ **Option 2: Set icon for all .zen files in a directory**
27
+ ```bash
28
+ cd assets/logos
29
+ find ../app -name "*.zen" -exec ./set-zen-icon.sh {} \;
30
+ ```
31
+
32
+ **Option 3: Manual method**
33
+ 1. Open Finder and navigate to a `.zen` file
34
+ 2. Right-click the file and select "Get Info"
35
+ 3. Drag `zen.icns` onto the small icon in the top-left of the Get Info window
36
+ 4. Close the Get Info window
37
+
38
+ ### Recreating the .icns File
39
+
40
+ If you update the SVG and need to regenerate the `.icns` file:
41
+ ```bash
42
+ cd assets/logos
43
+ ./create-zen-icon.sh
44
+ ```
45
+
46
+ ## Usage
47
+
48
+ These logos can be used in:
49
+ - Documentation (`docs/`)
50
+ - README files
51
+ - Website/marketing materials
52
+ - Framework branding
53
+ - File type icons (`.zen` files)
54
+
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zenith",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Thin resolver for bun/npm create zenith - delegates to @zenithbuild/cli",
5
5
  "bin": {
6
6
  "create-zenith": "./index.js"