Skip to content

Commit

Permalink
Deploy plugin repository: 7ebb31e
Browse files Browse the repository at this point in the history
  • Loading branch information
adamws committed Dec 29, 2023
0 parents commit e02f227
Show file tree
Hide file tree
Showing 7 changed files with 144 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
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 added .nojekyll
Empty file.
72 changes: 72 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@

<!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/[email protected]/dist/linkify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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-git/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": "Git plugin",
"description": "KiCad plugin for git",
"description_full": "Git actions directly from KiCad's PCB editor window",
"identifier": "com.github.adamws.kicad-git",
"type": "plugin",
"author": {
"name": "adamws",
"contact": {
"web": "https://adamws.github.io"
}
},
"license": "GPL-3.0",
"resources": {
"Homepage": "https://github.com/adamws/kicad-git",
"Bug Tracker": "https://github.com/adamws/kicad-git/issues",
"Sponsor": "https://ko-fi.com/adamws"
},
"versions": [
{
"version": "0.1",
"status": "development",
"kicad_version": "7.0",
"download_sha256": "171ecfebbc102317857791a03e81989e4fa9bcae869d85bf777890c22701b7e3",
"download_size": 16827,
"install_size": 15905,
"download_url": "https://adamws.github.io/kicad-git/kicad_git-0.1.dev41+g7ebb31e.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 added kicad_git-0.1.dev41+g7ebb31e.zip
Binary file not shown.
35 changes: 35 additions & 0 deletions packages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"packages": [
{
"$schema": "https://go.kicad.org/pcm/schemas/v1",
"name": "Git plugin",
"description": "KiCad plugin for git",
"description_full": "Git actions directly from KiCad's PCB editor window",
"identifier": "com.github.adamws.kicad-git",
"type": "plugin",
"author": {
"name": "adamws",
"contact": {
"web": "https://adamws.github.io"
}
},
"license": "GPL-3.0",
"resources": {
"Homepage": "https://github.com/adamws/kicad-git",
"Bug Tracker": "https://github.com/adamws/kicad-git/issues",
"Sponsor": "https://ko-fi.com/adamws"
},
"versions": [
{
"version": "0.1",
"status": "development",
"kicad_version": "7.0",
"download_sha256": "171ecfebbc102317857791a03e81989e4fa9bcae869d85bf777890c22701b7e3",
"download_size": 16827,
"install_size": 15905,
"download_url": "https://adamws.github.io/kicad-git/kicad_git-0.1.dev41+g7ebb31e.zip"
}
]
}
]
}
22 changes: 22 additions & 0 deletions repository.json
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-git repository",
"packages": {
"url": "https://adamws.github.io/kicad-git/packages.json",
"sha256": "1936719baceca0cbdf81e2f1b208c0a03b030db27feca3bc35e49e5937ee93a1",
"update_time_utc": "2023-12-29 21:15:37",
"update_timestamp": 1703884537
},
"resources": {
"url": "https://adamws.github.io/kicad-git/resources.zip",
"sha256": "8596610efeff242d723adf4592631c05d25f96aed6d85a3591625b86a7357a61",
"update_time_utc": "2023-12-29 21:15:37",
"update_timestamp": 1703884537
}
}
Binary file added resources.zip
Binary file not shown.

0 comments on commit e02f227

Please sign in to comment.