Skip to content

Commit

Permalink
[beta] Development build
Browse files Browse the repository at this point in the history
  • Loading branch information
DIDIRUS4 committed Jan 10, 2024
1 parent 2511c1d commit 21764a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion theseus_gui/src/languages/ru_ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"Remote": "Последняя версия на удаленном репозитории",
"Local": "Локальная установленная версия",
"DownloadButton": "Скачать через Github",
"DevelopmentBuild": "Вы используете сборку для разработки, может возникнуть непредвиденная ошибка"
"DevelopmentBuild": "Вы используете сборку для разработки, может возникнуть непредвиденная ошибка!"
},
"RunningAppBar": {
"GetSupport": "Поддержка",
Expand Down
24 changes: 15 additions & 9 deletions theseus_gui/src/pages/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -614,24 +614,23 @@ await forceRefreshRemote() // Calling when Settings.vue opened
</div>
</Card>
<Card>
<div class="label">
<div class="label inline-fix">
<h3>
<span class="label__title size-card-header">{{ t('Settings.About') }}
<span class="label__title size-card-header in">{{ t('Settings.About') }}
<p v-if="development_build" class="development option">{{ t('Settings.DevelopmentBuild') }}</p>
</span>
</h3>
</div>
<div>
<label>
<span class="label__title">AstralRinth <PirateShip class="icon-line-fix"/> Version</span>
<span class="label__title inl">AstralRinth <PirateShip class="icon-line-fix"/> Version</span>
<span class="label__description">Modrinth/Theseus version: v{{ version }}. Patch version: v{{ patch_version }} </span>
<span class="label__description">{{ t('Settings.LatestAvailable') }} <a class="github" :href="astraliumHref" target="_blank" rel="noopener noreferrer">{{ t('Settings.OurGithub') }}</a></span>
<span class="label__title">Update Checker</span>
<span class="label__description">{{ t('Settings.Remote') }} <a class="cosmic" id="releaseData" ></a>
</span>
<span class="label__description">{{ t('Settings.Local') }} <a class="cosmic">v{{ version }}{{ patch_version }}</a></span>
<span class="label__description">{{ t('Settings.Remote') }} <p class="cosmic inline-fix" id="releaseData"></p></span>

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (windows-latest)

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (windows-latest)

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / build

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (ubuntu-20.04)

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (ubuntu-20.04)

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (ubuntu-22.04)

Attribute "id" should go before "class"

Check warning on line 632 in theseus_gui/src/pages/Settings.vue

View workflow job for this annotation

GitHub Actions / test-tauri (ubuntu-22.04)

Attribute "id" should go before "class"
<span class="label__description">{{ t('Settings.Local') }} <p class="cosmic inline-fix">v{{ version }}{{ patch_version }}</p></span>
</label>
<a :href="githubHref"><Button :disabled="blockdownload" class="remote-update-fix" color="primary"><DownloadIcon/>{{ t('Settings.DownloadButton') }}
</Button></a>
Expand Down Expand Up @@ -680,9 +679,9 @@ await forceRefreshRemote() // Calling when Settings.vue opened
0 0 12px rgba(122, 31, 199, 0.5);
transition: color 0.35s ease;
}
a.cosmic:hover,
a.cosmic:focus,
a.cosmic:active {
.cosmic:hover,
.cosmic:focus,
.cosmic:active {
color: #10fae5;
text-shadow: #26065e;
}
Expand All @@ -708,6 +707,13 @@ a.github:active {
margin-left: 0.3rem;
}
.inline-fix {
display: inline-flex;
margin-top: -2rem;
margin-bottom: -2rem;
//margin-left: 0.3rem;
}
.remote-update-fix {
display: inline-flex;
//width: ;
Expand Down

0 comments on commit 21764a2

Please sign in to comment.