Skip to content

Commit df5cf5d

Browse files
committed
Fix Feedback
1 parent 797d8c0 commit df5cf5d

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

src/js/config.js

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ const config = {
274274
{
275275
name: 'VirusTotal Scan',
276276
github: 'cssnr/virustotal-action',
277-
url: 'https://github.com/marketplace/actions/virustotal-action',
277+
url: 'https://github.com/cssnr/virustotal-action',
278278
description:
279279
'Scan Release Artifacts with VirusTotal and Update Release Notes.',
280280
// badges: {},
@@ -287,7 +287,7 @@ const config = {
287287
{
288288
name: 'Update Version Tags',
289289
github: 'cssnr/update-version-tags-action',
290-
url: 'https://github.com/marketplace/actions/update-version-tags-action',
290+
url: 'https://github.com/cssnr/update-version-tags-action',
291291
description:
292292
'Update Version Tags on Push or Release for Semantic Versions.',
293293
// badges: {},
@@ -300,7 +300,7 @@ const config = {
300300
{
301301
name: 'Update JSON Value',
302302
github: 'cssnr/update-json-value-action',
303-
url: 'https://github.com/marketplace/actions/update-json-value-action',
303+
url: 'https://github.com/cssnr/update-json-value-action',
304304
description: 'Update JSON file Value(s) for Publishing.',
305305
// badges: {},
306306
links: {
@@ -350,7 +350,7 @@ const config = {
350350
{
351351
name: 'Mozilla Addon Update',
352352
github: 'cssnr/mozilla-addon-update-action',
353-
url: 'https://github.com/marketplace/actions/mozilla-addon-update-action',
353+
url: 'https://github.com/cssnr/mozilla-addon-update-action',
354354
description:
355355
'Update the Mozilla Firefox Update JSON File after a Release.',
356356
// badges: {},
@@ -493,5 +493,17 @@ const config = {
493493
},
494494
fa: 'python',
495495
},
496+
{
497+
name: 'Docker Nginx Static',
498+
github: 'cssnr/docker-nginx-static',
499+
url: 'https://github.com/cssnr/docker-nginx-static',
500+
description: 'Nginx Docker Image for Serving Static Files.',
501+
// badges: {},
502+
links: {
503+
Package:
504+
'https://github.com/cssnr/docker-nginx-static/pkgs/container/docker-nginx-static',
505+
},
506+
fa: 'python',
507+
},
496508
],
497509
}

src/js/feedback.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ document.addEventListener('DOMContentLoaded', function () {
3737
// console.debug('DOMContentLoaded')
3838
const selected = url.searchParams.get('app')
3939
const appList = document.getElementById('app-list')
40-
const apps = [webExtensions, webApps, githubActions, otherSoftware]
40+
const apps = [].concat(...Object.values(config))
4141
const combined = apps.flat()
4242
for (const app of combined) {
4343
const option = document.createElement('option')

0 commit comments

Comments
 (0)