Skip to content

Commit

Permalink
nscn changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf109909 committed May 20, 2024
1 parent d99b3b2 commit 8bde147
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/css/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
border: none;
outline: none;
transition: filter 0.15s ease-in-out;
width: calc(100% - var(--spacing) * 2);
width: calc(80% - var(--spacing) * 2);
}

.popup .search:focus,
Expand Down
Binary file modified src/app/icons/northstar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/app/icons/nsblue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/app/js/launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ function page(page) {

function formatRelease(notes) {
if (! notes) {return ""}

let content = "";

notes.reverse();
if (notes.length === 1) {
content = notes[0];
} else {
for (let release of notes) {
if (release.prerelease) {continue}
let new_content =
// release date
new Date(release.published_at).toLocaleString() +
new Date(release.created_at).toLocaleString() +
"\n" +

// release name
Expand Down

0 comments on commit 8bde147

Please sign in to comment.