···33333434Development took a little bit over 4 months, I made a
3535[core package](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_core)
3636- so anyone can interface with mods, a
3737- [CLI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_cli) for
3838- easily managing mods without a full GUI,
3939- and a [GUI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_gui) for
4040- user-friendliness.
3636+so anyone can interface with mods, a
3737+[CLI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_cli) for
3838+easily managing mods without a full GUI,
3939+and a [GUI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_gui) for
4040+user-friendliness.
41414242It was my first time distributing a full app to multiple sources and testing
4343compatibility across multiple platforms. Getting Steam Deck support via [Flathub](https://flathub.org/apps/com.outerwildsmods.owmods_gui)
+10-10
src/content/projects/ow-new-horizons.mdx
···25252626Some of my contributions include:
27272828-- Adding custom ship logs
2929-- Adding a "Reload Configs" button for refreshing JSON files without needing to
3030-restart the game
3131-- Implementing various
3232-[CI/CD pipelines](https://github.com/Outer-Wilds-New-Horizons/new-horizons/tree/main/.github/workflows)
3333-with GitHub Actions.
3434-- Implementing a schema exporter system to allow for generation of JSON schemas
3535-from C# classes
3636-- Writing & Implementing The
3737-[Documentation Site](https://nh.outerwildsmods.com/) (made with [menagerie](/projects/menagerie))
2828+- Adding custom ship logs
2929+- Adding a "Reload Configs" button for refreshing JSON files without needing to
3030+ restart the game
3131+- Implementing various
3232+ [CI/CD pipelines](https://github.com/Outer-Wilds-New-Horizons/new-horizons/tree/main/.github/workflows)
3333+ with GitHub Actions.
3434+- Implementing a schema exporter system to allow for generation of JSON schemas
3535+ from C# classes
3636+- Writing & Implementing The
3737+ [Documentation Site](https://nh.outerwildsmods.com/) (made with [menagerie](/projects/menagerie))
38383939New Horizons was my first time working in a team and collaborating with others
4040on code, it took some getting used to but in the end this project has given
···11---
22-import ExtLink from "@components/ExtLink.astro";
32import ProjectGrid from "@components/projects/ProjectGrid.astro";
43import Layout from "@layouts/Layout.astro";
54---
···1615 program in my spare time as well.
1716 </p>
1817 <p>
1919- I like to try a lot of things, from <ExtLink href="#">modding games</ExtLink>
2020- to building <ExtLink href="#">websites</ExtLink> and <ExtLink href="/projects/ow-mod-man">
1818+ I like to try a lot of things, from <a href="/projects/ow-new-horizons"> modding games</a>
1919+ to building <a href="/projects/menagerie">websites</a> and <a href="/projects/ow-mod-man">
2120 desktop apps
2222- </ExtLink>. I enjoy pretty much any aspect of software development.
2121+ </a>. I enjoy pretty much any aspect of software development.
2322 </p>
2423 <p>On this site you'll find my current and past projects.</p>
25242625 <hgroup>
2727- <h1>Recent Projects</h1>
2828- <h2>Sorted By Date</h2>
2626+ <h2>Recent Projects</h2>
2727+ <h3>Sorted By Date</h3>
2928 </hgroup>
3029 <ProjectGrid limitTo={6} />
3130 <div class="view-more">
3231 <a href="/projects">View All</a>
3332 </div>
3433</Layout>
3434+3535+<style>
3636+ .view-more {
3737+ display: flex;
3838+ justify-content: center;
3939+ width: 100%;
4040+ }
4141+</style>