Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit 5667bcb

Browse files
alexytomisa1672ndoItAnthonDev1ss0
authored
[Major Rework] Lofty Pillars (#231)
* added tut for fixing create, added mekanism and quartz Signed-off-by: sa1672ndo <[email protected]> * Update MODS-UNSUPPORTED.md cleaned up some stuff and added couple of mods Signed-off-by: sa1672ndo <[email protected]> * Updated terms and stuff iOS 18 is horrible Signed-off-by: ItAnthon <[email protected]> * Update RPWORLDNOTSHOWINGUP.md Signed-off-by: Dev1ss0 <[email protected]> * renaming to INSTALLATIONOFMODSRPWORLDS.md Signed-off-by: Dev1ss0 <[email protected]> * Update config.js Signed-off-by: Dev1ss0 <[email protected]> * Update and rename DISCORD.md to SOCIALMEDIA.md Signed-off-by: Dev1ss0 <[email protected]> * Update config.js Signed-off-by: Dev1ss0 <[email protected]> * Updated order of FAQ platforms (hopefully works well) Signed-off-by: Dev1ss0 <[email protected]> * Rework into new layout as well as proper navbar utilization This reworks the folder structure as well as the sidebar to work alongside the navbar. This makes mobile navigation easier. The config file changes should allow everyone the old niceities of not specifying the path for every bloody file while having an actual folder structure that makes sense. This is already a feature in vuepress v2 but oh well, here's my reimplementation of that at least. The new thing to edit for contributors will be arrays.js. * Add some documentation in the form of a README.md * Clean-up and documentation for .vuepress/config/* * Changes to package.json and workflow to build and deploy properly * Small corrections and changes Edits variable names, fixes a 404 link, and reorders arrays.js to have Android and iOS as their own objects rather than existing within FAQ in a gigantic object property. * [WIP] Move page-related comments and add more info to README and declutter comments Incomplete because I'd be documenting stale things, which is pretty stupid * Fix indentation in config.js * [WIP] Remove horrible hack that doesn't even work properly in github * Remove .editorconfig and add to .gitignore This file is supposed to be a config for an editor, hence it overrides the configs of everyone else. In theory this is good, in practice no one cares. This also looks horribly ugly since it uses tabs rather than spaces. Removing it seems sane. * Finish rebasing on Dev1ss0/PojavlauncherWikiTesting:Dev1ss0-testing * Indentation changes and fixes, dejankification of sidebar generation, added some jsdoc comments Created a new function that handles non-grouped sidebar configuration in arrays.js rather than crudely hardcode the variable names within the sidebar definition + some indentation fixes + jsdoc syntax for comments in js --------- Signed-off-by: sa1672ndo <[email protected]> Signed-off-by: ItAnthon <[email protected]> Signed-off-by: Dev1ss0 <[email protected]> Co-authored-by: sa1672ndo <[email protected]> Co-authored-by: ItAnthon <[email protected]> Co-authored-by: Dev1ss0 <[email protected]>
1 parent e207e33 commit 5667bcb

File tree

104 files changed

+598
-393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+598
-393
lines changed

.editorconfig

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,25 @@
1-
name: Build/Test/Deploy
1+
name: Build
22
on:
3-
push:
4-
branches-ignore:
5-
- gh-pages
63
workflow_dispatch:
74
pull_request:
85
jobs:
96
build:
10-
name: Build and Deploy
7+
name: Build and Upload
118
runs-on: ubuntu-latest
129
steps:
13-
- uses: actions/setup-node@v2-beta
14-
with:
15-
node-version: '12'
1610
- name: Checkout Repository
1711
uses: actions/checkout@v2
1812
with:
1913
fetch-depth: '0'
2014
persist-credentials: false
2115
submodules: 'recursive'
22-
- name: Install
23-
run: npm install
16+
- name: Setup Node
17+
uses: actions/setup-node@v2-beta
18+
with:
19+
node-version: '22'
2420
- name: Build
25-
run: npm run build
26-
- name: Deploy
27-
uses: JamesIves/[email protected]
28-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
21+
run: npm install && npm run build
22+
- name: Upload Build
23+
uses: actions/upload-pages-artifact@v3
2924
with:
30-
BRANCH: gh-pages
31-
FOLDER: docs
32-
CLEAN: true
25+
path: docs

.github/workflows/deploy.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build and Deploy
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
name: Build and Deploy
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout Repository
10+
uses: actions/checkout@v2
11+
with:
12+
fetch-depth: '0'
13+
persist-credentials: false
14+
submodules: 'recursive'
15+
- name: Setup Node
16+
uses: actions/setup-node@v2-beta
17+
with:
18+
node-version: '22'
19+
- name: Build
20+
run: npm install && npm run build
21+
- name: Upload static files as artifact
22+
id: deployment
23+
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
24+
with:
25+
path: docs
26+
deploy:
27+
environment:
28+
name: Deploy
29+
permissions:
30+
contents: read
31+
pages: write
32+
id-token: write
33+
runs-on: ubuntu-latest
34+
needs: build
35+
steps:
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ Thumbs.db
2121
docs/
2222

2323
package-lock.json
24+
.editorconfig
25+
.nvmrc
26+
out

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vuepress/config.js

Lines changed: 0 additions & 205 deletions
This file was deleted.

.vuepress/public/favicon.ico

-15 KB
Binary file not shown.

ABOUTPOJAV.md

Lines changed: 0 additions & 52 deletions
This file was deleted.

DISCORD.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

FIRST-STEPS.md

Whitespace-only changes.

0 commit comments

Comments
 (0)