Skip to content

Commit

Permalink
cleanup: update files, fix links
Browse files Browse the repository at this point in the history
Signed-off-by: K.B.Dharun Krishna <[email protected]>
  • Loading branch information
kbdharun authored and mirkobrombin committed Jan 11, 2024
1 parent ac449ae commit 85cbbf4
Show file tree
Hide file tree
Showing 8 changed files with 1,249 additions and 2,645 deletions.
1 change: 1 addition & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
run: docker image build -f Containerfile --tag ghcr.io/vanilla-os/website:main .

- name: Publish image
if: github.repository == 'vanilla-os/website'
run: |
docker login ghcr.io -u ${{ env.REGISTRY_USER }} -p ${{ env.REGISTRY_PASSWORD }}
docker image push "ghcr.io/vanilla-os/website:main"
2 changes: 1 addition & 1 deletion articles/2024-01-03-vanilla-os-orchid-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We redesigned [ABRoot](https://github.com/Vanilla-OS/ABRoot) to manage the syste

This extensive work also includes system configuration, systemd units, containers (which play a crucial role in Orchid), and Polkit rules. Speaking of Polkit, we removed sudo, a task that took a considerable amount of time to implement. We had to create Polkit policies to let users use tools requiring administrative privileges without using sudo; we have written [a paragraph](https://vanillaos.org/blog/article/2023-06-11/vanilla-os-orchid---devlog-11-jun#sudont) on this.

Over these months, we have given talks at [GUADEC](https://www.youtube.com/live/hv-bkYpHSbQ?si=YbBzq_nXQTok2-DI&t=634) and conducted several interviews[[1]](#see-also) which, in turn, required time to plan and create the necessary assets.
Over these months, we have given talks at [GUADEC](https://www.youtube.com/live/hv-bkYpHSbQ?si=YbBzq_nXQTok2-DI&t=634) and conducted several interviews[[1]](https://vanillaos.org/blog/article/2024-01-03/vanilla-os-2-orchid-stable-some-clarifications#see-also) which, in turn, required time to plan and create the necessary assets.

It's important to note that we develop everything with a distro-agnostic approach, designing all our technologies to be used by any Linux distribution. This process increases development time as we need to consider customization and scalability. For Orchid, we chose to take our time, conduct extensive research, and engage in many discussions. Orchid is not just a pretty reskin of Debian; it is a complex project that revisits many aspects we take for granted in Linux distributions. It required effort, patience, and the **willingness to question everything every single day**.

Expand Down
3,879 changes: 1,243 additions & 2,636 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"ts-node": "^10.9.1",
"typescript": "~4.8.4",
"vite": "^4.4.12",
"vite-plugin-sitemap": "^0.5.3",
"vue-tsc": "^1.2.0"
}
}
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<li><router-link :to="{ name: 'brand' }">Our Brand</router-link></li>
<li><router-link :to="{ name: 'get-involved-funding' }">Funding</router-link></li>
<li><router-link :to="{ name: 'licenses' }">Licenses</router-link></li>
<li><a href="//fabricators.ltd/en/contact">File a Complaint</a></li>
<li><a href="//fabricators.ltd/en/contact.html">File a Complaint</a></li>
<li><a href="//status.vanillaos.org/">System Status</a></li>
</ul>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/views/EnterpriseSupport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default defineComponent({
description: 'Get custom branding and customization for your Vanilla OS devices.',
},
{
to: 'https://fabricators.ltd/en/contact',
to: 'https://fabricators.ltd/en/contact.html',
extLink: true,
type: "clickable",
icon: 'contact_support',
Expand Down
2 changes: 1 addition & 1 deletion src/views/Team.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default defineComponent({
githubUsername: 'TheEvilSkeleton',
twitterUsername: 'JaakunaGaikotsu',
mastodonLink: 'https://social.treehouse.systems/@TheEvilSkeleton',
website: 'https://theevilskeleton.gitlab.io/',
website: 'https://tesk.page/',
},
},
{
Expand Down
5 changes: 1 addition & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ import Sitemap from 'vite-plugin-sitemap'

export default defineConfig({
base: './',
plugins: [
vue(),
Sitemap({ hostname: 'https://vanillaos.org'}),
],
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
Expand Down

0 comments on commit 85cbbf4

Please sign in to comment.