Skip to content

Commit 6cf89d0

Browse files
author
Claw
committed
Rename project from KeyLab to Zumap
1 parent b97eafe commit 6cf89d0

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Contributing to KeyLab
1+
# Contributing to Zumap
22

33
Thanks for your interest in contributing! Here's how to get started.
44

55
## Development Setup
66

77
```bash
8-
git clone https://github.com/YOUR_USERNAME/keylab.git
9-
cd keylab
8+
git clone https://github.com/zumap/zumap.git
9+
cd zumap
1010
npm install
1111
npm run dev
1212
```

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ⌨️ KeyLab
1+
# ⌨️ Zumap
22

33
An open-source, VIA-compatible keyboard configurator for the web. Load any keyboard definition, remap keys visually, and export your keymap — all in the browser.
44

@@ -17,8 +17,8 @@ An open-source, VIA-compatible keyboard configurator for the web. Load any keybo
1717
## Getting Started
1818

1919
```bash
20-
git clone https://github.com/YOUR_USERNAME/keylab.git
21-
cd keylab
20+
git clone https://github.com/zumap/zumap.git
21+
cd zumap
2222
npm install
2323
npm run dev
2424
```
@@ -55,7 +55,7 @@ Community contributions of keyboard definitions are very welcome!
5555

5656
## VIA Compatibility
5757

58-
KeyLab uses the same JSON keyboard definition format as [VIA](https://www.caniusevia.com/). The `layouts.keymap` array follows [KLE](http://keyboard-layout-editor.com) format:
58+
Zumap uses the same JSON keyboard definition format as [VIA](https://www.caniusevia.com/). The `layouts.keymap` array follows [KLE](http://keyboard-layout-editor.com) format:
5959

6060
- Each sub-array is a row
6161
- Strings are matrix positions (`"row,col"`)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "keylab",
2+
"name": "zumap",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "./globals.css";
55
const inter = Inter({ subsets: ["latin"] });
66

77
export const metadata: Metadata = {
8-
title: "KeyLab — Keyboard Configurator",
8+
title: "Zumap — Keyboard Configurator",
99
description: "Open-source VIA/QMK keyboard configurator",
1010
};
1111

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default function Home() {
9191
<div className="mb-8 flex items-center justify-between">
9292
<div>
9393
<h1 className="text-2xl font-bold tracking-tight">
94-
⌨️ KeyLab
94+
⌨️ Zumap
9595
</h1>
9696
<p className="text-sm text-zinc-500">
9797
Open-source keyboard configurator

0 commit comments

Comments
 (0)