This commit is contained in:
s.p.e.c.t.r.e 2025-03-05 00:32:40 +00:00 committed by GitHub
commit 08190d0d18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 297 additions and 257 deletions

5
.env Normal file
View file

@ -0,0 +1,5 @@
MAIN_VITE_API_URL=https://hydra-api-us-east-1.losbroxas.org
MAIN_VITE_AUTH_URL=https://auth.hydralauncher.gg
MAIN_VITE_CHECKOUT_URL=https://checkout.hydralauncher.gg
MAIN_VITE_EXTERNAL_RESOURCES_URL=https://assets.hydralauncher.gg
RENDERER_VITE_EXTERNAL_RESOURCES_URL=https://assets.hydralauncher.gg

View file

@ -1,2 +0,0 @@
MAIN_VITE_API_URL=API_URL
MAIN_VITE_AUTH_URL=AUTH_URL

1
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1 @@

32
.github/workflows/manual.yml vendored Normal file
View file

@ -0,0 +1,32 @@
# This is a basic workflow that is manually triggered
name: Manual workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ inputs.name }}"

View file

@ -231,6 +231,7 @@
"options": "Manage"
},
"settings": {
"username": "Username",
"downloads_path": "Downloads path",
"change": "Update",
"notifications": "Notifications",

View file

@ -225,6 +225,7 @@
"options": "Gestionar"
},
"settings": {
"username": "Nombre de usuario",
"downloads_path": "Ruta de descarga",
"change": "Cambiar",
"notifications": "Notificaciones",

View file

@ -221,6 +221,7 @@
"options": "Gerenciar"
},
"settings": {
"username": "Nome de usuário",
"downloads_path": "Diretório dos downloads",
"change": "Explorar...",
"notifications": "Notificações",

View file

@ -229,6 +229,7 @@
"options": "Управлять"
},
"settings": {
"username": "Имя пользователя",
"downloads_path": "Путь загрузок",
"change": "Изменить",
"notifications": "Уведомления",

View file

@ -161,10 +161,10 @@ export function SettingsAccount() {
label={t("profile_visibility")}
value={field.value}
onChange={handleChange}
options={visibilityOptions.map((visiblity) => ({
key: visiblity.value,
value: visiblity.value,
label: visiblity.label,
options={visibilityOptions.map((visibility) => ({
key: visibility.value,
value: visibility.value,
label: visibility.label,
}))}
disabled={isSubmitting}
/>
@ -178,7 +178,8 @@ export function SettingsAccount() {
<section className="settings-account__section">
<h4>{t("current_email")}</h4>
<p>{userDetails?.email ?? t("no_email_account")}</p>
<h4>{t("username")}:</h4>
<p>{userDetails?.username}</p>
<div className="settings-account__actions">
<Button
theme="outline"
@ -199,7 +200,6 @@ export function SettingsAccount() {
</Button>
</div>
</section>
<section className="settings-account__section">
<h3>Hydra Cloud</h3>
<div className="settings-account__subscription-info">