-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 091a1b5
Showing
7 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: 2.1 | ||
|
||
# dummy config, to satisfy circleci on automatic ghpages deployment | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/base:2022.09 | ||
steps: | ||
- run: echo "Deployment ok" | ||
|
||
workflows: | ||
main: | ||
jobs: | ||
- build |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="icon" href="data:," /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" | ||
/> | ||
</head> | ||
<script src="https://cdn.jsdelivr.net/npm/linkifyjs@4.1.1/dist/linkify.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/linkify-html@4.1.1/dist/linkify-html.min.js"></script> | ||
<script> | ||
window.onload = function () { | ||
let packages = document.getElementById("packages"); | ||
packages.innerHTML = linkifyHtml(packages.innerHTML); | ||
}; | ||
</script> | ||
<body> | ||
<main class="container"> | ||
<p> | ||
Add <mark>https://adamws.github.io/kicad-kbplacer/repository.json</mark> to KiCad's repository | ||
list to use these packages: | ||
</p> | ||
<pre><code id="packages">{ | ||
"packages": [ | ||
{ | ||
"$schema": "https://go.kicad.org/pcm/schemas/v1", | ||
"name": "Keyboard footprints placer", | ||
"description": "Plugin for mechanical keyboard design", | ||
"description_full": "Plugin for mechanical keyboard design.\nIt features automatic key placement and routing based on various layout descriptions like <a href='www.keyboard-layout-editor.com'>kle</a>, <a href='www.github.com/ergogen/ergogen'>ergogen</a> and <a href='www.caniusevia.com'>via</a>.\nTo learn more visit project's homepage.", | ||
"identifier": "com.github.adamws.kicad-kbplacer", | ||
"type": "plugin", | ||
"author": { | ||
"name": "adamws", | ||
"contact": { | ||
"web": "https://adamws.github.io" | ||
} | ||
}, | ||
"license": "GPL-3.0", | ||
"resources": { | ||
"Homepage": "https://github.com/adamws/kicad-kbplacer", | ||
"Bug Tracker": "https://github.com/adamws/kicad-kbplacer/issues", | ||
"Sponsor": "https://ko-fi.com/adamws" | ||
}, | ||
"tags": [ | ||
"keyboard" | ||
], | ||
"versions": [ | ||
{ | ||
"version": "0.11", | ||
"status": "development", | ||
"kicad_version": "6.0", | ||
"download_sha256": "f0d8eac8633f334291521b5def4939648bbcb7d65314394a61f9d04ca629ed69", | ||
"download_size": 198385, | ||
"install_size": 194289, | ||
"download_url": "https://adamws.github.io/kicad-kbplacer/kbplacer-0.11.dev40+ga484407.zip" | ||
} | ||
] | ||
} | ||
] | ||
}</code></pre> | ||
<footer> | ||
<small | ||
>Built with | ||
<a href="https://github.com/adamws/hatch-kicad" class="secondary" | ||
>hatch-kicad</a | ||
></small | ||
> | ||
</footer> | ||
</main> | ||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"packages": [ | ||
{ | ||
"$schema": "https://go.kicad.org/pcm/schemas/v1", | ||
"name": "Keyboard footprints placer", | ||
"description": "Plugin for mechanical keyboard design", | ||
"description_full": "Plugin for mechanical keyboard design.\nIt features automatic key placement and routing based on various layout descriptions like <a href='www.keyboard-layout-editor.com'>kle</a>, <a href='www.github.com/ergogen/ergogen'>ergogen</a> and <a href='www.caniusevia.com'>via</a>.\nTo learn more visit project's homepage.", | ||
"identifier": "com.github.adamws.kicad-kbplacer", | ||
"type": "plugin", | ||
"author": { | ||
"name": "adamws", | ||
"contact": { | ||
"web": "https://adamws.github.io" | ||
} | ||
}, | ||
"license": "GPL-3.0", | ||
"resources": { | ||
"Homepage": "https://github.com/adamws/kicad-kbplacer", | ||
"Bug Tracker": "https://github.com/adamws/kicad-kbplacer/issues", | ||
"Sponsor": "https://ko-fi.com/adamws" | ||
}, | ||
"tags": [ | ||
"keyboard" | ||
], | ||
"versions": [ | ||
{ | ||
"version": "0.11", | ||
"status": "development", | ||
"kicad_version": "6.0", | ||
"download_sha256": "f0d8eac8633f334291521b5def4939648bbcb7d65314394a61f9d04ca629ed69", | ||
"download_size": 198385, | ||
"install_size": 194289, | ||
"download_url": "https://adamws.github.io/kicad-kbplacer/kbplacer-0.11.dev40+ga484407.zip" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$schema": "https://gitlab.com/kicad/code/kicad/-/raw/master/kicad/pcm/schemas/pcm.v1.schema.json#/definitions/Repository", | ||
"maintainer": { | ||
"name": "adamws", | ||
"contact": { | ||
"web": "https://adamws.github.io" | ||
} | ||
}, | ||
"name": "https://adamws.github.io/kicad-kbplacer repository", | ||
"packages": { | ||
"url": "https://adamws.github.io/kicad-kbplacer/packages.json", | ||
"sha256": "dda938c8a3977a2a0bcf5aa22b8297f805ea06208e33807c88e5095ccc06116b", | ||
"update_time_utc": "2024-06-17 22:16:50", | ||
"update_timestamp": 1718662610 | ||
}, | ||
"resources": { | ||
"url": "https://adamws.github.io/kicad-kbplacer/resources.zip", | ||
"sha256": "550a2f03ee28563764fa6d8c55e40e2e46af2979b3bc80f0e95103b0f42883d2", | ||
"update_time_utc": "2024-06-17 22:16:50", | ||
"update_timestamp": 1718662610 | ||
} | ||
} |
Binary file not shown.