Website now uses astro rather than plain html; Added a few more releases
24
.gitignore
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# build output
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# generated types
|
||||||
|
.astro/
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
|
||||||
|
# environment variables
|
||||||
|
.env
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# macOS-specific files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# jetbrains setting folder
|
||||||
|
.idea/
|
4
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"recommendations": ["astro-build.astro-vscode"],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
11
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "./node_modules/.bin/astro dev",
|
||||||
|
"name": "Development server",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
5
astro.config.mjs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
// @ts-check
|
||||||
|
import { defineConfig } from 'astro/config';
|
||||||
|
|
||||||
|
// https://astro.build/config
|
||||||
|
export default defineConfig({});
|
BIN
bun.lockb
Executable file
|
@ -1,60 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="style.css">
|
|
||||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<title>ShiftOS: Downloads</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<h1>ShiftOS Downloads</h1>
|
|
||||||
<p><a href="./">Return to homepage</a></p>
|
|
||||||
<p>Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary files.</p>
|
|
||||||
<p>If you have files for ShiftOS, feel free to make a <a href="https://github.com/Alee14/shiftos-website">pull request</a>!</p>
|
|
||||||
<h1>ShiftOS 0.0.x</h1>
|
|
||||||
<p>NOTE: From ShiftOS 0.0.4.1 to 0.0.6.2, it used to send user's information to the ShiftOS email. As of 2020, this no longer works.</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/shiftos-src.tar.gz">ShiftOS Source Code</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/shiftos-skins.tar.gz">ShiftOS 0.0.8 Skins</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/shiftos-mod.tar.gz">ShiftOS Mod Development Package</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/shiftos 0.0.4.1 (run as admin!).exe">ShiftOS 0.0.4.1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/ShiftOS 0.0.6.2.exe">ShiftOS 0.0.6.2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/ShiftOS 0.0.7 Alpha 4.1.exe">ShiftOS 0.0.7 Alpha 4.1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/shiftos_0.0.7_rc4.exe">ShiftOS 0.0.7 RC 4</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/ShiftOS_0.0.8_Public_Release.exe">ShiftOS 0.0.8</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/0.0.x/ShiftOS 0.0.9 Alpha 1.exe">ShiftOS 0.0.9 Alpha 1</a></li>
|
|
||||||
</ul>
|
|
||||||
<h1>ShiftOS Next</h1>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS Next 0.0.1 Alpha 2.exe">ShiftOS Next 0.0.1 Alpha 2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS Next 0.0.1 Beta 1.exe">ShiftOS Next 0.0.1 Beta 1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS Next 0.0.1 Beta 1.1.exe">ShiftOS Next 0.0.1 Beta 1.1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS Next 0.0.1 Beta 2.exe">ShiftOS Next 0.0.1 Beta 2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS Next 0.0.1 RC1.exe">ShiftOS Next 0.0.1 RC 1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS-Next.0.0.2.Alpha.1.exe">ShiftOS Next 0.0.2 Alpha 1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/ShiftOS.Next.0.0.2.Alpha.2.1.exe">ShiftOS Next 0.0.2 Alpha 2.1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/next/shiftos_next.0.0.2.Alpha.3.1.exe">ShiftOS Next 0.0.2 Alpha 3.1</a></li>
|
|
||||||
</ul>
|
|
||||||
<h1>ShiftOS C#</h1>
|
|
||||||
<p>TO DO</p>
|
|
||||||
<h1>ShiftOS 1.0</h1>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos_1.0_beta_1.2.zip">ShiftOS 1.0 Beta 1.2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos_1.0_beta_1.4_-_the_hacker_s_update.zip">ShiftOS 1.0 Beta 1.4 The Hackers Update</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos_1.0_beta_2.zip">ShiftOS 1.0 Beta 2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos_1.0_beta_2.5.1.zip">ShiftOS 1.0 Beta 2.5.1</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos_1.0_beta_2.5.2.zip">ShiftOS 1.0 Beta 2.5.2</a></li>
|
|
||||||
<li><a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/1.x/shiftos-10-beta-3.tar.gz">ShiftOS 1.0 Beta 3</a></li>
|
|
||||||
</ul>
|
|
||||||
<h1>ShiftOS Rewind</h1>
|
|
||||||
<p>TO DO</p>
|
|
||||||
<h1>ShiftOS Challenge (.NET 5.0)</h1>
|
|
||||||
<p>This was originally made by Alkaline Thunder. But it was ported to .NET 5.0 by Alee14.</p>
|
|
||||||
<p>After extracting, run ShiftOS.exe.</p>
|
|
||||||
<a href="https://github.com/Alee14/shiftos-challenge">Source code</a> | <a href="https://github.com/Alee14/shiftos-website/raw/master/assets/downloads/shiftos_dotnet.zip">Download</a>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
35
history.html
|
@ -1,35 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="style.css">
|
|
||||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<title>ShiftOS: History/Origins</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<h1>ShiftOS History/Origins</h1>
|
|
||||||
<p>If you have anything to add, feel free to make a <a href="https://github.com/Alee14/shiftos-website">pull request</a>.</p>
|
|
||||||
<p><a href="./">Return to homepage</a></p>
|
|
||||||
<img src="assets/images/shiftos_arch.jpeg" alt="ShiftOS Original Logo">
|
|
||||||
<p>ShiftOS' logo originally in 2013</p>
|
|
||||||
<img src="assets/images/shiftos_phil.png" alt="ShiftOS 2013 Logo">
|
|
||||||
<p>ShiftOS’ Logo 2013-2016(?)</p>
|
|
||||||
<h1>Origins (Phil 0.0.x era)</h1>
|
|
||||||
<p>ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on <a href="https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391">Arch Linux</a>. He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. The plans for the game at the time was when someone called DevX hijacks your computer and it gets wiped. You have a blank operating system, and you have to earn codepoints in ShiftOS. Once you buy Gray and play Pong and someone called MF (known as Maureen Fenn) he tells you a secret program called “Shiftnet” and he talks about what it is and after you receive it you get the Shiftnet which is like its own internet. The point of the game at the time is to go from a full screen terminal to a graphical interface with programs and a customizable user interface.</p>
|
|
||||||
<h1>Community</h1>
|
|
||||||
<p>During this time Phil made a forum which is for the community to share skins and receive feedback. In ShiftOS 0.0.8 Beta 1 Philip steps down as developer of ShiftOS and handed development over to someone and eventually made it open source. Then Michael decided to step in to become the lead developer of ShiftOS but then things got worse during late-2014 (or early-2015?), the developers of ShiftOS were debating about changing its programming language but they changed their mind about it. Michael decided to restart ShiftOS and they called it ShiftOS-Next.</p>
|
|
||||||
<h1>ShiftOS Next</h1>
|
|
||||||
<p>ShiftOS-Next was a ShiftOS reboot written in the same language as the original one which is VB but this time some of the storyline changed such as new characters, shifting desktop environments and creating things like APIS and applications. ShiftOS-Next got killed off and for a while there wasn’t a “ShiftOS” game, but mostly Michael renamed it to “Shifted Games” (or some other name) but that mysteriously disappeared. Michael decided to rewrite the game again but in C# this time.</p>
|
|
||||||
<h3><i>Incompleted. Feel free to add to some stuff! Make a <a href="https://github.com/Alee14/shiftos-website">pull request</a>!</i></h3>
|
|
||||||
<h1>Sources</h1>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391">https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391 </a></li>
|
|
||||||
<li><a href="https://web.archive.org/web/20200205170205/https://www.gamedev.net/forums/topic/669444-shiftos-next-an-operating-system-that-evolves-as-you-use-it/">https://web.archive.org/web/20200205170205/https://www.gamedev.net/forums/topic/669444-shiftos-next-an-operating-system-that-evolves-as-you-use-it/</a></li>
|
|
||||||
<li><a href="https://shiftos.fandom.com">https://shiftos.fandom.com</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
14
package.json
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name": "astro-latest",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "astro dev",
|
||||||
|
"build": "astro build",
|
||||||
|
"preview": "astro preview",
|
||||||
|
"astro": "astro"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"astro": "^5.1.1"
|
||||||
|
}
|
||||||
|
}
|
BIN
public/assets/downloads/0.0.x/ShiftOS 0.0.8 Beta 1.1.zip
(Stored with Git LFS)
Normal file
BIN
public/assets/downloads/0.0.x/ShiftOS 0.0.8 RC2.exe
Normal file
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 340 KiB |
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 160 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
1
src/assets/astro.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="115" height="48"><path fill="#17191E" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="url(#a)" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="#17191E" d="M.02 30.31s4.02-1.95 8.05-1.95l3.04-9.4c.11-.45.44-.76.82-.76.37 0 .7.31.82.76l3.04 9.4c4.77 0 8.05 1.95 8.05 1.95L17 11.71c-.2-.56-.53-.91-.98-.91H7.83c-.44 0-.76.35-.97.9L.02 30.31Zm42.37-5.97c0 1.64-2.05 2.62-4.88 2.62-1.85 0-2.5-.45-2.5-1.41 0-1 .8-1.49 2.65-1.49 1.67 0 3.09.03 4.73.23v.05Zm.03-2.04a21.37 21.37 0 0 0-4.37-.36c-5.32 0-7.82 1.25-7.82 4.18 0 3.04 1.71 4.2 5.68 4.2 3.35 0 5.63-.84 6.46-2.92h.14c-.03.5-.05 1-.05 1.4 0 1.07.18 1.16 1.06 1.16h4.15a16.9 16.9 0 0 1-.36-4c0-1.67.06-2.93.06-4.62 0-3.45-2.07-5.64-8.56-5.64-2.8 0-5.9.48-8.26 1.19.22.93.54 2.83.7 4.06 2.04-.96 4.95-1.37 7.2-1.37 3.11 0 3.97.71 3.97 2.15v.57Zm11.37 3c-.56.07-1.33.07-2.12.07-.83 0-1.6-.03-2.12-.1l-.02.58c0 2.85 1.87 4.52 8.45 4.52 6.2 0 8.2-1.64 8.2-4.55 0-2.74-1.33-4.09-7.2-4.39-4.58-.2-4.99-.7-4.99-1.28 0-.66.59-1 3.65-1 3.18 0 4.03.43 4.03 1.35v.2a46.13 46.13 0 0 1 4.24.03l.02-.55c0-3.36-2.8-4.46-8.2-4.46-6.08 0-8.13 1.49-8.13 4.39 0 2.6 1.64 4.23 7.48 4.48 4.3.14 4.77.62 4.77 1.28 0 .7-.7 1.03-3.71 1.03-3.47 0-4.35-.48-4.35-1.47v-.13Zm19.82-12.05a17.5 17.5 0 0 1-6.24 3.48c.03.84.03 2.4.03 3.24l1.5.02c-.02 1.63-.04 3.6-.04 4.9 0 3.04 1.6 5.32 6.58 5.32 2.1 0 3.5-.23 5.23-.6a43.77 43.77 0 0 1-.46-4.13c-1.03.34-2.34.53-3.78.53-2 0-2.82-.55-2.82-2.13 0-1.37 0-2.65.03-3.84 2.57.02 5.13.07 6.64.11-.02-1.18.03-2.9.1-4.04-2.2.04-4.65.07-6.68.07l.07-2.93h-.16Zm13.46 6.04a767.33 767.33 0 0 1 .07-3.18H82.6c.07 1.96.07 3.98.07 6.92 0 2.95-.03 4.99-.07 6.93h5.18c-.09-1.37-.11-3.68-.11-5.65 0-3.1 1.26-4 4.12-4 1.33 0 2.28.16 3.1.46.03-1.16.26-3.43.4-4.43-.86-.25-1.81-.41-2.96-.41-2.46-.03-4.26.98-5.1 3.38l-.17-.02Zm22.55 3.65c0 2.5-1.8 3.66-4.64 3.66-2.81 0-4.61-1.1-4.61-3.66s1.82-3.52 4.61-3.52c2.82 0 4.64 1.03 4.64 3.52Zm4.71-.11c0-4.96-3.87-7.18-9.35-7.18-5.5 0-9.23 2.22-9.23 7.18 0 4.94 3.49 7.59 9.21 7.59 5.77 0 9.37-2.65 9.37-7.6Z"/><defs><linearGradient id="a" x1="6.33" x2="19.43" y1="40.8" y2="34.6" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient></defs></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
src/assets/background.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="1024" fill="none"><path fill="url(#a)" fill-rule="evenodd" d="M-217.58 475.75c91.82-72.02 225.52-29.38 341.2-44.74C240 415.56 372.33 315.14 466.77 384.9c102.9 76.02 44.74 246.76 90.31 366.31 29.83 78.24 90.48 136.14 129.48 210.23 57.92 109.99 169.67 208.23 155.9 331.77-13.52 121.26-103.42 264.33-224.23 281.37-141.96 20.03-232.72-220.96-374.06-196.99-151.7 25.73-172.68 330.24-325.85 315.72-128.6-12.2-110.9-230.73-128.15-358.76-12.16-90.14 65.87-176.25 44.1-264.57-26.42-107.2-167.12-163.46-176.72-273.45-10.15-116.29 33.01-248.75 124.87-320.79Z" clip-rule="evenodd" style="opacity:.154"/><path fill="url(#b)" fill-rule="evenodd" d="M1103.43 115.43c146.42-19.45 275.33-155.84 413.5-103.59 188.09 71.13 409 212.64 407.06 413.88-1.94 201.25-259.28 278.6-414.96 405.96-130 106.35-240.24 294.39-405.6 265.3-163.7-28.8-161.93-274.12-284.34-386.66-134.95-124.06-436-101.46-445.82-284.6-9.68-180.38 247.41-246.3 413.54-316.9 101.01-42.93 207.83 21.06 316.62 6.61Z" clip-rule="evenodd" style="opacity:.154"/><defs><linearGradient id="b" x1="373" x2="1995.44" y1="1100" y2="118.03" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient><linearGradient id="a" x1="107.37" x2="1130.66" y1="1993.35" y2="1026.31" gradientUnits="userSpaceOnUse"><stop stop-color="#3245FF"/><stop offset="1" stop-color="#BC52EE"/></linearGradient></defs></svg>
|
After Width: | Height: | Size: 1.4 KiB |
34
src/layouts/Layout.astro
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
interface Props {
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { title = "ShiftOS: The Archive", description } = Astro.props;
|
||||||
|
import '../styles/style.css';
|
||||||
|
---
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||||
|
|
||||||
|
<!-- Default Metadata -->
|
||||||
|
<meta name="title" content={title} />
|
||||||
|
<meta name="description" content={description} />
|
||||||
|
|
||||||
|
<!-- Open Graph Metadata -->
|
||||||
|
<meta property="og:title" content={title} />
|
||||||
|
<meta property="og:description" content={description} />
|
||||||
|
<meta property="og:image" content="https://alee14.me/profile.png" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<title>{title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<slot />
|
||||||
|
</body>
|
||||||
|
</html>
|
10
src/layouts/Page.astro
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
import Layout from '../layouts/Layout.astro';
|
||||||
|
const { title, description } = Astro.props;
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title={title} description={description}>
|
||||||
|
<div class="container">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</Layout>
|
68
src/pages/downloads.md
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
---
|
||||||
|
title: >
|
||||||
|
ShiftOS: Downloads
|
||||||
|
description: >
|
||||||
|
Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary files.
|
||||||
|
layout: ../layouts/Page.astro
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# ShiftOS Downloads
|
||||||
|
|
||||||
|
[Return to homepage](./)
|
||||||
|
|
||||||
|
Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary files.
|
||||||
|
|
||||||
|
If you have files for ShiftOS, feel free to make a [pull request](https://github.com/Alee14/shiftos-website)!
|
||||||
|
|
||||||
|
# ShiftOS 0.0.x
|
||||||
|
|
||||||
|
NOTE: From ShiftOS 0.0.4.1 to 0.0.6.2, it used to send user's information to the ShiftOS email. As of 2020, this no longer works.
|
||||||
|
|
||||||
|
- [ShiftOS Source Code](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-src.tar.gz)
|
||||||
|
- [ShiftOS 0.0.8 Skins](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-skins.tar.gz)
|
||||||
|
- [ShiftOS Mod Development Package](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-mod.tar.gz)
|
||||||
|
- [ShiftOS 0.0.4.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos%200.0.4.1%20(run%20as%20admin!).exe)
|
||||||
|
- [ShiftOS 0.0.6.2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS%200.0.6.2.exe)
|
||||||
|
- [ShiftOS 0.0.7 Alpha 4.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS%200.0.7%20Alpha%204.1.exe)
|
||||||
|
- [ShiftOS 0.0.7 RC 4](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos_0.0.7_rc4.exe)
|
||||||
|
- [ShiftOS 0.0.8 Beta 1.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS%200.0.8%20Beta%201.1.zip)
|
||||||
|
- [ShiftOS 0.0.8 RC 2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS%200.0.8%20RC2.exe)
|
||||||
|
- [ShiftOS 0.0.8](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS_0.0.8_Public_Release.exe)
|
||||||
|
- [ShiftOS 0.0.9 Alpha 1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/ShiftOS%200.0.9%20Alpha%201.exe)
|
||||||
|
|
||||||
|
# ShiftOS Next
|
||||||
|
|
||||||
|
- [ShiftOS Next 0.0.1 Alpha 2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS%20Next%200.0.1%20Alpha%202.exe)
|
||||||
|
- [ShiftOS Next 0.0.1 Beta 1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS%20Next%200.0.1%20Beta%201.exe)
|
||||||
|
- [ShiftOS Next 0.0.1 Beta 1.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS%20Next%200.0.1%20Beta%201.1.exe)
|
||||||
|
- [ShiftOS Next 0.0.1 Beta 2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS%20Next%200.0.1%20Beta%202.exe)
|
||||||
|
- [ShiftOS Next 0.0.1 RC 1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS%20Next%200.0.1%20RC1.exe)
|
||||||
|
- [ShiftOS Next 0.0.2 Alpha 1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS-Next.0.0.2.Alpha.1.exe)
|
||||||
|
- [ShiftOS Next 0.0.2 Alpha 2.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/ShiftOS.Next.0.0.2.Alpha.2.1.exe)
|
||||||
|
- [ShiftOS Next 0.0.2 Alpha 3.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/next/shiftos_next.0.0.2.Alpha.3.1.exe)
|
||||||
|
|
||||||
|
# ShiftOS C#
|
||||||
|
|
||||||
|
TO DO
|
||||||
|
|
||||||
|
# ShiftOS 1.0
|
||||||
|
|
||||||
|
- [ShiftOS 1.0 Beta 1.2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos_1.0_beta_1.2.zip)
|
||||||
|
- [ShiftOS 1.0 Beta 1.4 The Hackers Update](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos_1.0_beta_1.4_-_the_hacker_s_update.zip)
|
||||||
|
- [ShiftOS 1.0 Beta 2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos_1.0_beta_2.zip)
|
||||||
|
- [ShiftOS 1.0 Beta 2.5.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos_1.0_beta_2.5.1.zip)
|
||||||
|
- [ShiftOS 1.0 Beta 2.5.2](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos_1.0_beta_2.5.2.zip)
|
||||||
|
- [ShiftOS 1.0 Beta 3](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/1.x/shiftos-10-beta-3.tar.gz)
|
||||||
|
|
||||||
|
# ShiftOS Rewind
|
||||||
|
|
||||||
|
TO DO
|
||||||
|
|
||||||
|
# ShiftOS Challenge (.NET 5.0)
|
||||||
|
|
||||||
|
This was originally made by Alkaline Thunder. But it was ported to .NET 5.0 by Alee14.
|
||||||
|
|
||||||
|
After extracting, run ShiftOS.exe.
|
||||||
|
|
||||||
|
[Source code](https://github.com/Alee14/shiftos-challenge) | [Download](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/shiftos_dotnet.zip)
|
30
src/pages/history.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
title: >
|
||||||
|
ShiftOS: History/Origins
|
||||||
|
description: >
|
||||||
|
ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on Arch Linux. He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS.
|
||||||
|
layout: ../layouts/Page.astro
|
||||||
|
---
|
||||||
|
|
||||||
|
# ShiftOS History/Origins
|
||||||
|
If you have anything to add, feel free to make a [pull request](https://github.com/Alee14/shiftos-website).
|
||||||
|
|
||||||
|
[Return to homepage](/)
|
||||||
|
|
||||||
|
![ShiftOS Original Logo](/assets/images/shiftos_arch.jpeg)
|
||||||
|
<p>ShiftOS' logo originally in 2013</p>
|
||||||
|
|
||||||
|
![ShiftOS 2013 Logo](/assets/images/shiftos_phil.png)
|
||||||
|
|
||||||
|
ShiftOS’ Logo 2013-2016(?)
|
||||||
|
# Origins (Phil 0.0.x era)
|
||||||
|
ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on [Arch Linux](https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391). He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. The plans for the game at the time was when someone called DevX hijacks your computer and it gets wiped. You have a blank operating system, and you have to earn codepoints in ShiftOS. Once you buy Gray and play Pong and someone called MF (known as Maureen Fenn) he tells you a secret program called “Shiftnet” and he talks about what it is and after you receive it you get the Shiftnet which is like its own internet. The point of the game at the time is to go from a full screen terminal to a graphical interface with programs and a customizable user interface.
|
||||||
|
# Community
|
||||||
|
During this time Phil made a forum which is for the community to share skins and receive feedback. In ShiftOS 0.0.8 Beta 1 Philip steps down as developer of ShiftOS and handed development over to someone and eventually made it open source. Then Michael decided to step in to become the lead developer of ShiftOS but then things got worse during late-2014 (or early-2015?), the developers of ShiftOS were debating about changing its programming language but they changed their mind about it. Michael decided to restart ShiftOS and they called it ShiftOS-Next.
|
||||||
|
# ShiftOS Next
|
||||||
|
ShiftOS-Next was a ShiftOS reboot written in the same language as the original one which is VB but this time some of the storyline changed such as new characters, shifting desktop environments and creating things like APIS and applications. ShiftOS-Next got killed off and for a while there wasn’t a “ShiftOS” game, but mostly Michael renamed it to “Shifted Games” (or some other name) but that mysteriously disappeared. Michael decided to rewrite the game again but in C# this time.
|
||||||
|
### *Incompleted. Feel free to add to some stuff! Make a [pull request](https://github.com/Alee14/shiftos-website)!*
|
||||||
|
# Sources
|
||||||
|
- [https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391](https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391)
|
||||||
|
- [https://web.archive.org/web/20200205170205/https://www.gamedev.net/forums/topic/669444-shiftos-next-an-operating-system-that-evolves-as-you-use-it/](https://web.archive.org/web/20200205170205/https://www.gamedev.net/forums/topic/669444-shiftos-next-an-operating-system-that-evolves-as-you-use-it/)
|
||||||
|
- [https://shiftos.fandom.com](https://shiftos.fandom.com)
|
|
@ -1,15 +1,9 @@
|
||||||
<!DOCTYPE html>
|
---
|
||||||
<html lang="en">
|
import Layout from '../layouts/Layout.astro';
|
||||||
<head>
|
---
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<Layout title="ShiftOS: The Archive" description="ShiftOS was a game developed by Philip Adams and other developers. The goal for the game was to go from a terminal to a graphical user interface.">
|
||||||
<link rel="stylesheet" href="style.css">
|
<div class="center">
|
||||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
||||||
<title>ShiftOS: The Archive</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="center">
|
|
||||||
<img src="assets/images/ShiftOS 2017 Logo.png" alt="ShiftOS Logo" class="logo">
|
<img src="assets/images/ShiftOS 2017 Logo.png" alt="ShiftOS Logo" class="logo">
|
||||||
<h1>ShiftOS: The Archive</h1>
|
<h1>ShiftOS: The Archive</h1>
|
||||||
<b><a href="history">History/Origins</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a> | <a href="https://git.alee14.me/shiftos-archive">Source Code</a> </b>
|
<b><a href="history">History/Origins</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a> | <a href="https://git.alee14.me/shiftos-archive">Source Code</a> </b>
|
||||||
|
@ -17,5 +11,4 @@
|
||||||
<footer>
|
<footer>
|
||||||
<p><b>© Copyright 2013-2025 ShiftOS. Game originally made by Philip Adams.<br/>Website made by Andrew Lee. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p>
|
<p><b>© Copyright 2013-2025 ShiftOS. Game originally made by Philip Adams.<br/>Website made by Andrew Lee. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</Layout>
|
||||||
</html>
|
|
5
tsconfig.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"extends": "astro/tsconfigs/strict",
|
||||||
|
"include": [".astro/types.d.ts", "**/*"],
|
||||||
|
"exclude": ["dist"]
|
||||||
|
}
|