This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
322 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes
This file contains 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 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 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 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 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,32 @@ | ||
const slides_data = [ | ||
{ | ||
title: "Made with Love", | ||
body: "AOSC OS is brought to you by a group of enthusiastic maintainers who works on their free time, hoping to bring you an efficient and reliable Linux experience.\nInstallation should take only a few minutes, but could take longer depending on your device's performance and Internet bandwidth. Please sit back and relax.\nDrinks are self-served, but we provide a complimentary Web browser, along with a sweet tune.", | ||
}, | ||
{ | ||
title: "Work Ready", | ||
body: "Built with out-of-the-box usability and easy maintenance in mind, AOSC OS is a ready-made toolbox for your everyday computing.\nFrom office productivity to server administration, photoediting to 3D modeling, note-taking to translation projects, AOSC OS has the right tools ready for you. With our clear and refined software repository, we will get you right under way for whatever awaits.\nFor Internet-restricted regions, AOSC OS is ready to help you connect with the globalized world.", | ||
}, | ||
{ | ||
title: "Play Ready", | ||
body: "Powered by a solid graphical stack and strong community support, AOSC OS is ready for your entertainment needs.\nPlay your favorite CD with Strawberry, watch your latest block-buster movies with VLC, or share them together with friends and family with Kodi, AOSC OS has everything you need for a good time.\nPlay your favorite Linux and Windows® games with Steam, fuel your nostalgia with console emulators! If you feel like a game or two, we have you covered.", | ||
}, | ||
{ | ||
title: "Disaster Ready", | ||
body: "AOSC OS comes pre-installed with RescueKit where available, a self-contained maintenance and rescue environment.\nCorrupted file system? Accidental deletes? Messed up system updates? No worries! RescueKit has most (if not everything) you need to get your AOSC OS back on track.\nIf you are the cautious type, RescueKit also comes with essential tools for backing up your system for a rainy day.", | ||
}, | ||
{ | ||
title: "Device Ready", | ||
body: "Built on the highly scalable Linux Kernel and its portable and vibrant userspace, AOSC OS is ready for your single-board computers, laptops, desktops, and servers.\nConfigured for full feature sets, AOSC OS readies your new and old devices and peripherals for maximal functionality.\nProprietary drivers needed? No problem! With our liberal software support policies, if your hardware vendors let us, we will ship them for you.", | ||
}, | ||
{ | ||
title: "Retro Ready", | ||
body: "Still holding onto your 486? No worries, our maintainers love their old computers, and intend to have them run AOSC OS.\nAOSC OS/Retro is a purpose-built distribution optimised for devices with limited RAM, processing power, and storage space. With six architectures supported and counting, AOSC OS/Retro keeps your old and tired computers going with optimized and up-to-date software.\n", | ||
}, | ||
{ | ||
title: "You Ready", | ||
body: "At AOSC, we pride ourselves with friendly and ready support for our users. Warranty and merchantability notwithstanding,we believe that our users should be respected of their time and energy spent on adapting to a new work environment.\nAt Telegram, Discord, IRC, or Matrix, our maintainers,contributors, and friends are ready to offer help. We wish you much joy at our community and great success with AOSC OS.\nEnjoy!", | ||
}, | ||
]; | ||
|
||
export default slides_data; |
This file contains 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 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,62 @@ | ||
<script> | ||
import slides_data from "@/slides"; | ||
import DKIconButton from "@/components/DKIconButton.vue"; | ||
export default { | ||
data: function () { | ||
return { | ||
current_slide: {}, | ||
index: 0, | ||
timer: null, | ||
slides: slides_data, | ||
hide: false, | ||
}; | ||
}, | ||
methods: { | ||
next_slide: function () { | ||
this.hide = true; | ||
const next_slide = this.slides[++this.index % this.slides.length]; | ||
setTimeout(() => { | ||
this.current_slide = { | ||
title: next_slide.title, | ||
paras: next_slide.body.split("\n"), | ||
}; | ||
this.hide = false; | ||
}, 200); | ||
}, | ||
}, | ||
mounted: function () { | ||
this.next_slide(); | ||
this.timer = setInterval(this.next_slide, 6000); | ||
}, | ||
beforeUnmount: function () { | ||
clearInterval(this.timer); | ||
}, | ||
components: { DKIconButton }, | ||
}; | ||
</script> | ||
|
||
<template> | ||
<div :class="'slide-show' + (hide ? ' hidden' : '')"> | ||
<h1>{{ current_slide.title }}</h1> | ||
<article> | ||
<p v-for="(para, index) in current_slide.paras" v-bind:key="index"> | ||
{{ para }} | ||
</p> | ||
</article> | ||
</div> | ||
<p style="display: flex; column-gap: 0.5rem"> | ||
<DKIconButton title="Firefox" explain="Web Browser" /> | ||
<DKIconButton title="BGM" explain="Mute" /> | ||
</p> | ||
</template> | ||
|
||
<style> | ||
.hidden { | ||
opacity: 0; | ||
} | ||
.slide-show { | ||
transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1); | ||
} | ||
</style> |
This file contains 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.