Skip to content

Commit 825e58e

Browse files
committed
📦 1.1.2
1 parent 9232c14 commit 825e58e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

‎action.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: "platane"
44

55
runs:
66
using: docker
7-
image: docker://platane/snk@sha256:368d5c159c47ebfe2c8afa2e2029fe4820e5fdfb80d69e499f327f895c5c2a00
7+
image: docker://platane/snk@sha256:9c3604282bdf9cf367dc955545fff9e4a893e5716ee88701d8924fd2377dbc72
88

99
inputs:
1010
github_user_name:

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "snk",
33
"description": "Generates a snake game from a github user contributions grid",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"private": true,
66
"repository": "github:platane/snk",
77
"devDependencies": {

‎svg-only/dist/index.js‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36516,7 +36516,7 @@ var createGrid = function (cells, _a, duration) {
3651636516
var sizeBorderRadius = _a.sizeBorderRadius, sizeDot = _a.sizeDot, sizeCell = _a.sizeCell;
3651736517
var svgElements = [];
3651836518
var styles = [
36519-
".c{\n shape-rendering: geometricPrecision;\n rx: ".concat(sizeBorderRadius, ";\n ry: ").concat(sizeBorderRadius, ";\n fill: var(--ce);\n stroke-width: 1px;\n stroke: var(--cb);\n animation: none ").concat(duration, "ms linear infinite;\n }"),
36519+
".c{\n shape-rendering: geometricPrecision;\n fill: var(--ce);\n stroke-width: 1px;\n stroke: var(--cb);\n animation: none ".concat(duration, "ms linear infinite;\n }"),
3652036520
];
3652136521
var i = 0;
3652236522
for (var _i = 0, cells_1 = cells; _i < cells_1.length; _i++) {
@@ -36536,6 +36536,8 @@ var createGrid = function (cells, _a, duration) {
3653636536
"class": ["c", id].filter(Boolean).join(" "),
3653736537
x: x * s + m,
3653836538
y: y * s + m,
36539+
rx: sizeBorderRadius,
36540+
ry: sizeBorderRadius,
3653936541
width: d,
3654036542
height: d
3654136543
}));

0 commit comments

Comments
 (0)