2 Commits

Author SHA1 Message Date
d488531358 1.15.8
All checks were successful
Deploy to Production / deploy (push) Successful in 24s
2026-02-21 23:13:07 +00:00
e3d2b630e1 Remove overlay rectangle from share export 2026-02-21 23:13:06 +00:00
3 changed files with 3 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.15.7", "version": "1.15.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.15.7", "version": "1.15.8",
"dependencies": { "dependencies": {
"@capacitor/android": "^8.1.0", "@capacitor/android": "^8.1.0",
"@capacitor/cli": "^8.1.0", "@capacitor/cli": "^8.1.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.15.7", "version": "1.15.8",
"homepage": "https://nonograms.7u.pl/", "homepage": "https://nonograms.7u.pl/",
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@@ -38,8 +38,6 @@ export function buildShareCanvas(data, t, formattedTime) {
bg.addColorStop(1, '#0a1324'); bg.addColorStop(1, '#0a1324');
ctx.fillStyle = bg; ctx.fillStyle = bg;
ctx.fillRect(0, 0, width, height); ctx.fillRect(0, 0, width, height);
ctx.fillStyle = 'rgba(0, 0, 0, 0.35)';
ctx.fillRect(12, 12, width - 24, height - 24);
ctx.fillStyle = '#e8fbff'; ctx.fillStyle = '#e8fbff';
ctx.font = '700 26px "Segoe UI", sans-serif'; ctx.font = '700 26px "Segoe UI", sans-serif';
@@ -204,7 +202,6 @@ export function buildShareSVG(data, t, formattedTime) {
</linearGradient> </linearGradient>
</defs> </defs>
<rect width="100%" height="100%" fill="url(#bg)"/> <rect width="100%" height="100%" fill="url(#bg)"/>
<rect x="12" y="12" width="${width - 24}" height="${height - 24}" fill="${overlayColor}"/>
`; `;
// Text: Title & Time // Text: Title & Time