Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release date for the applications #3493

Open
wants to merge 3 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/playground/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -425,12 +425,14 @@ const routes: AppRoute[] = [
icon: "mdi-lightbulb-on-outline",
route: DashboardRoutes.Deploy.Applications,
tooltip: "Deploy ready applications on the ThreeFold grid.",
releaseDate: new Date("2024-10-2"),
},
{
title: "Domains",
icon: "domains.png",
route: DashboardRoutes.Deploy.Domains,
tooltip: "Expose servers hosted on local machines or VMs to the public internet.",
releaseDate: new Date("2024-10-2"),
},
{
title: "Your Contracts",
Expand Down Expand Up @@ -555,7 +557,6 @@ function clickHandler({ route, url }: AppRouteItem): void {

<script lang="ts">
import type { GridClient } from "@threefold/grid_client";
import { nextTick } from "process";

import { DashboardRoutes } from "@/router/routes";
import { AppThemeSelection } from "@/utils/app_theme";
Expand Down
6 changes: 6 additions & 0 deletions packages/playground/src/views/solutions_view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,31 @@ export default {
"Nostr is a simple, open protocol that enables global, decentralized, and censorship-resistant social media.",
icon: "nostr.png",
route: DashboardRoutes.Applications.Nostr,
releaseDate: new Date("2024-10-02"),
},
{
title: "Gitea",
excerpt:
"Gitea is a forge software package for hosting software development version control using Git as well as other collaborative features like bug tracking, code review, continuous integration, kanban boards, tickets, and wikis. It supports self-hosting but also provides a free public first-party instance.",
icon: "gitea.png",
route: DashboardRoutes.Applications.Gitea,
releaseDate: new Date("2024-10-02"),
},
{
title: "TFRobot",
excerpt:
"TFRobot is a command line interface tool that offers simultaneous mass deployment of groups of VMs on the ThreeFold Grid, with support of multiple retries for failed deployments, and customizable configurations.",
icon: "tfrobot.png",
route: DashboardRoutes.Applications.TFRobot,
releaseDate: new Date("2024-10-02"),
},
{
title: "Jenkins",
excerpt:
"Jenkins is a popular open-source automation server that enables developers to build, test, and deploy their applications continuously.",
icon: "jenkins.png",
route: DashboardRoutes.Applications.Jenkins,
releaseDate: new Date("2024-10-02"),
},
{
title: "Peertube",
Expand Down Expand Up @@ -93,6 +97,7 @@ export default {
"Static Website is an application where a user provides a Github repository url and it's automatically served using Caddy.",
icon: "static_website.png",
route: DashboardRoutes.Applications.StaticWebsite,
releaseDate: new Date("2024-10-02"),
},
{
title: "Nextcloud",
Expand Down Expand Up @@ -157,6 +162,7 @@ export default {
"Jitsi Meet is a set of Open Source projects which empower users to use and deploy video conferencing platforms with state-of-the-art video quality and features.",
icon: "jitsi.png",
route: DashboardRoutes.Applications.Jitsi,
releaseDate: new Date("2024-10-02"),
},
];
cards = cards.sort((a, b) => a.title.localeCompare(b.title));
Expand Down
Loading