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

Nvus #41

Merged
merged 37 commits into from
Nov 7, 2024
Merged

Nvus #41

Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
5070e85
add ci
srnovus Oct 30, 2024
90f8ded
add github yml
srnovus Oct 30, 2024
7990387
update ci
srnovus Oct 30, 2024
8e2c336
update ci
srnovus Oct 30, 2024
2192f0f
update error ci
srnovus Oct 30, 2024
f45cc70
update
srnovus Oct 30, 2024
934600c
resolver issue #6
srnovus Oct 30, 2024
391700a
ci
srnovus Oct 30, 2024
73ff5c8
udpate ci
srnovus Oct 30, 2024
e252bc8
update ci
srnovus Oct 30, 2024
cf8de81
a
srnovus Oct 30, 2024
e4cf95b
add github integration and update mknote
srnovus Oct 31, 2024
26ce0f8
update
srnovus Oct 31, 2024
3019704
update code
srnovus Oct 31, 2024
19c36c2
update
srnovus Oct 31, 2024
0b0fb8c
update
srnovus Oct 31, 2024
5135f62
update integrations
srnovus Oct 31, 2024
60303a9
update locales
srnovus Oct 31, 2024
d8c9ece
Merge branch 'main' into nvus
srnovus Oct 31, 2024
4085882
update
srnovus Oct 31, 2024
f370fc2
update
srnovus Oct 31, 2024
d92a994
update
srnovus Oct 31, 2024
8292912
update
srnovus Oct 31, 2024
3acf8c3
q
srnovus Oct 31, 2024
3482ca7
a
srnovus Oct 31, 2024
e9f0ef9
update
srnovus Oct 31, 2024
67eeb55
update
srnovus Oct 31, 2024
ed79cc4
Merge branch 'main' into nvus
srnovus Oct 31, 2024
b5cd42c
update
srnovus Nov 6, 2024
9c0ee0e
update v
srnovus Nov 6, 2024
2d73884
update language
srnovus Nov 7, 2024
0d31de1
update about
srnovus Nov 7, 2024
c4d085f
update about
srnovus Nov 7, 2024
0cd4263
Merge branch 'main' into nvus
srnovus Nov 7, 2024
701b232
update
srnovus Nov 7, 2024
6501f7a
update
srnovus Nov 7, 2024
244f3bb
Merge branch 'main' into nvus
srnovus Nov 7, 2024
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
42 changes: 28 additions & 14 deletions packages/client/src/pages/about-fedired.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@
</div>
</div>
</FormSection>
<FormSection>
<template #label><Mfm text="$[jelly ❤]"/> {{ i18n.ts._aboutFedired.patrons }}</template>
<div :class="$style.patronsWithIcon">
<div v-for="patron in patronsWithIcon" :class="$style.patronWithIcon">
<img :src="patron.icon" :class="$style.patronIcon">
<span :class="$style.patronName">{{ patron.name }}</span>

</div>
</div>
<div style="margin-top: 16px; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); grid-gap: 12px;">
<div v-for="patron in patrons" :key="patron">{{ patron }}</div>
</div>
<p>{{ i18n.ts._aboutFedired.morePatrons }}</p>
</FormSection>
<FormSection>
<template #label><Mfm text="$[jelly ❤]"/> {{ i18n.ts._aboutFedired.patrons }}</template>
<div :class="$style.patronsWithIcon">
Expand All @@ -101,20 +115,18 @@
</template>

<script lang="ts" setup>
import { nextTick, onBeforeUnmount, ref, shallowRef, computed } from 'vue';
import { version } from '@@/js/config.js';
import FormLink from '@/components/form/link.vue';
import FormSection from '@/components/form/section.vue';
import MkButton from '@/components/MkButton.vue';
import MkInfo from '@/components/MkInfo.vue';
import { physics } from '@/scripts/physics.js';
import { i18n } from '@/i18n.js';
import { instance } from '@/instance.js';
import { defaultStore } from '@/store.js';
import * as os from '@/os.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { claimAchievement, claimedAchievements } from '@/scripts/achievements.js';
import { $i } from '@/account.js';
import { computed, nextTick, onBeforeUnmount, ref } from "vue";
import { version } from "@/config";
import FormLink from "@/components/form/link.vue";
import FormSection from "@/components/form/section.vue";
import MkButton from "@/components/MkButton.vue";
import { physics } from "@/scripts/physics";
import { i18n } from "@/i18n";
import { defaultReactions, defaultStore } from "@/store";
import * as os from "@/os";
import { definePageMetadata } from "@/scripts/page-metadata";
import icon from "@/scripts/icon";
import { getInstanceInfo } from "@/instance";
const patronsWithIcon = [{
name: 'iBootech',
Expand Down Expand Up @@ -278,6 +290,7 @@
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 12px;
}
.contributor {
Expand Down Expand Up @@ -329,5 +342,6 @@
.patronName {
margin-left: 12px;
}
</style>

Loading