Skip to content

Commit

Permalink
5.2.6 - Initial Archive
Browse files Browse the repository at this point in the history
  • Loading branch information
xbubbo committed Oct 26, 2024
1 parent a997da5 commit 1bf6993
Show file tree
Hide file tree
Showing 495 changed files with 10,935 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: useinterstellar
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: https://cash.app/$akabubbo
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug Report
about: Create a report to help us improve
title: "[Bug] "
labels: Bug Report
assignees: xbubbo
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Device Information (please complete the following information):**

- Device: [Ex. Chromebook, iPad, etc.]
- OS [Ex. ChromeOS, Windows, iOS
- Browser [Ex. Chrome, Safari]

**Additional context**
Add any other context about the problem here.

> [!IMPORTANT]
> Do not post your personal information here this includes but is not limited to email addresses, names, and age.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Feature Request
about: Suggest an idea for this project
title: "[Feature]"
labels: Feature Request
assignees: xbubbo
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/game-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Game Request
about: Suggest a game you would like to be added to the site.
title: "[Game]"
labels: Game Request
assignees: xbubbo
---

**What is the name of the game?**
Provide the name of the game.

**What is the link to the game?**
Include the direct link to the game, ensuring it is a specific URL (Ex. crazygames.com/Game, coolmathgames.com/Game). Please refrain from providing Google Search links to prevent post closure.

**What is the category of the game? [Optional]**
Specify the category of the game, such as Multiplayer, Emulator, FPS, Sports, or any relevant classification. This information is optional but can help us accurately add categories to filter the game.
Binary file added .github/branding/in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
45 changes: 45 additions & 0 deletions .github/workflows/ads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Remove Ads

on:
push:
branches:
- main

jobs:
update-Ad-Free:
runs-on: ubuntu-latest

steps:
- name: Checkout main branch
uses: actions/checkout@v2
with:
ref: main

- name: Remove Ads
run: |
git fetch origin
if git branch --list | grep -q 'Ad-Free'; then
git checkout Ad-Free
git pull origin Ad-Free
git merge main --no-edit
else
git checkout -b Ad-Free
fi
- name: Remove first 9 lines from m.js
run: |
sed -i '1,9d' static/assets/js/m.js
- name: Commit changes
env:
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
run: |
git config --global user.name "${GIT_USERNAME}"
git config --global user.email "${GIT_EMAIL}"
git add static/assets/js/m.js
git commit -m "Remove specific JS code from m.js"
- name: Push changes to Ad-Free branch
run: |
git push origin Ad-Free --force
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.idea
.DS_Store
.hintrc
.gitpod.yml
.env
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["dbaeumer.vscode-eslint", "biomejs.biome"]
}
26 changes: 26 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 0,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "biomejs.biome",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true,
"**/.github": true,
"**/.vscode": true,
"Failed.html": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true,
"Failed.html": true,
"static/assets/js/fa.js": true
}
}
41 changes: 41 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Contributing Guidelines

Thank you for your interest in contributing to this repository! To ensure a smooth collaboration, please review the following guidelines:

## Pull Request Process

1. **Compatibility:**

- Ensure your changes work seamlessly on both mobile and desktop platforms.

2. **Version Bumping:**

- Update the version in relevant files (e.g., `index.js?v=number`) to the next consecutive number when modifying any files.

3. **Code Formatting:**

- Before finalizing changes, run the following command in the terminal for consistent code formatting:
```bash
npm run format
```

4. **Minifying JSON**

- Before finalizing your changes visit https://codebeautify.org/jsonminifier and compress your json and put it in the `.min.json` file. (Ex. If you are editing `a.json` you would put the minified code in `a.min.json`

5. **Test Your Changes:**

- Conduct thorough testing to ensure modifications don't introduce issues or break existing functionalities.
6. **Descriptive Pull Requests:**
- Provide clear, concise descriptions for your pull requests. Include details on the problem addressed and how your changes resolve it.
7. **Responsive Design:**
- Confirm that changes adhere to responsive design principles, ensuring a seamless user experience across various devices.
8. **Collaboration:**
- Be open to feedback and responsive to comments during the review process.
We appreciate your efforts in contributing to this project!
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM node:bookworm-slim
ENV NODE_ENV=production

WORKDIR /app

COPY ["package.json", "./"]

RUN npm install

COPY . .

CMD [ "node", "index.js" ]
32 changes: 32 additions & 0 deletions Failed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!doctype html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html {
color-scheme: light dark;
}
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>
If you see this page, the nginx web server is successfully installed and working. Further
configuration is required.
</p>

<p>
For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br />
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.
</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
Loading

0 comments on commit 1bf6993

Please sign in to comment.