-
-
Notifications
You must be signed in to change notification settings - Fork 3
Listed Linux distributions #80
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
Open
luanaeva
wants to merge
17
commits into
terrapkg:main
Choose a base branch
from
luanaeva:listed_linux_distros
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7360143
Listed Linux distributions
3151db4
added translation support and added brazilian portuguese translation
5bbf543
Apply suggestion from @nothingneko
5ee275e
Apply suggestion from @nothingneko
26d92ad
Apply suggestion from @nothingneko
926c651
Merge branch 'main' into listed_linux_distros
5424caa
Clean up supported distros descriptions in en.json
luanaeva 823d2f6
Remove empty descriptions from pl.json
luanaeva 0541b7e
Remove distribution descriptions from pt-BR.json
luanaeva 17f4ce0
Clean up unused description fields in zh-Hant.json
luanaeva db473cc
Merge branch 'terrapkg:main' into listed_linux_distros
luanaeva 40d6bf3
removed distros descriptions from both interface and translation files
11ceb4a
removed .descriptions
luanaeva 5542d8a
Update langs/en.json
luanaeva 11c5baf
Remove distro description paragraph from grid
luanaeva 606ea4d
Merge branch 'main' into listed_linux_distros
luanaeva eaa8ce5
centralized distros name
luanaeva File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| --- | ||
| interface Distro { | ||
| name: string; | ||
| description: string; | ||
| icon: string; | ||
| } | ||
|
|
||
| const distros: Distro[] = [ | ||
| { | ||
| name: "Ultramarine", | ||
| description: "A Fedora-based distribution that uses Terra for a broader package selection and smoother upgrades.", | ||
| icon: "/distros/ultramarine-transp.svg", | ||
| }, | ||
| { | ||
| name: "Bazzite", | ||
| description: "A atomic gaming and workstation-focused distribution that relies on Terra for extra software availability.", | ||
|
madonuko marked this conversation as resolved.
Outdated
|
||
| icon: "/distros/bazzite.svg", | ||
| }, | ||
| { | ||
| name: "Nobara", | ||
| description: "A polished Fedora-based distro developed by Thomas Crider and uses terra to make gaming software easier to install", | ||
| icon: "/distros/nobara.svg", | ||
| }, | ||
| { | ||
| name: "RakuOS", | ||
| description: "A community-driven atomic Linux experience that integrates Terra for additional package support.", | ||
| icon: "/distros/rakuos-logo.png", | ||
| }, | ||
| { | ||
| name: "Zirconium", | ||
| description: "A newer atomic niri-based Fedora-based project that uses Terra to extend its available software catalogue.", | ||
| icon: "/distros/z.svg", | ||
| }, | ||
| ]; | ||
|
|
||
| interface Props { | ||
| title: string; | ||
| description: string; | ||
| } | ||
|
|
||
| const { title, description } = Astro.props; | ||
| --- | ||
|
|
||
| <section class="mx-auto w-full max-w-6xl px-6 pb-16"> | ||
| <div class="mb-8 max-w-3xl"> | ||
| <h2 class="text-3xl font-semibold tracking-tight">{title}</h2> | ||
| <p class="mt-2 text-sm text-muted-foreground md:text-base">{description}</p> | ||
| </div> | ||
|
|
||
| <div class="grid gap-4 sm:grid-cols-2 xl:grid-cols-3"> | ||
| {distros.map((distro) => ( | ||
| <article class="rounded-xl border bg-card/80 p-6 shadow-sm"> | ||
| <div class="flex items-center justify-between gap-3"> | ||
| <div class="flex items-center gap-3"> | ||
| <img src={distro.icon} alt={distro.name} class="h-8 w-8" /> | ||
| <h3 class="text-lg font-semibold">{distro.name}</h3> | ||
| </div> | ||
| </div> | ||
| <p class="mt-3 text-sm text-muted-foreground">{distro.description}</p> | ||
| </article> | ||
| ))} | ||
| </div> | ||
| </section> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.