Skip to content

Commit 1bf6993

Browse files
committed
5.2.6 - Initial Archive
1 parent a997da5 commit 1bf6993

File tree

495 files changed

+10935
-1
lines changed

Some content is hidden

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

495 files changed

+10935
-1
lines changed

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: useinterstellar
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: https://cash.app/$akabubbo
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve
4+
title: "[Bug] "
5+
labels: Bug Report
6+
assignees: xbubbo
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Device Information (please complete the following information):**
27+
28+
- Device: [Ex. Chromebook, iPad, etc.]
29+
- OS [Ex. ChromeOS, Windows, iOS
30+
- Browser [Ex. Chrome, Safari]
31+
32+
**Additional context**
33+
Add any other context about the problem here.
34+
35+
> [!IMPORTANT]
36+
> Do not post your personal information here this includes but is not limited to email addresses, names, and age.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: "[Feature]"
5+
labels: Feature Request
6+
assignees: xbubbo
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Game Request
3+
about: Suggest a game you would like to be added to the site.
4+
title: "[Game]"
5+
labels: Game Request
6+
assignees: xbubbo
7+
---
8+
9+
**What is the name of the game?**
10+
Provide the name of the game.
11+
12+
**What is the link to the game?**
13+
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.
14+
15+
**What is the category of the game? [Optional]**
16+
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.

.github/branding/in.png

13.9 KB
Loading

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/ads.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Remove Ads
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update-Ad-Free:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout main branch
14+
uses: actions/checkout@v2
15+
with:
16+
ref: main
17+
18+
- name: Remove Ads
19+
run: |
20+
git fetch origin
21+
if git branch --list | grep -q 'Ad-Free'; then
22+
git checkout Ad-Free
23+
git pull origin Ad-Free
24+
git merge main --no-edit
25+
else
26+
git checkout -b Ad-Free
27+
fi
28+
29+
- name: Remove first 9 lines from m.js
30+
run: |
31+
sed -i '1,9d' static/assets/js/m.js
32+
33+
- name: Commit changes
34+
env:
35+
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
36+
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
37+
run: |
38+
git config --global user.name "${GIT_USERNAME}"
39+
git config --global user.email "${GIT_EMAIL}"
40+
git add static/assets/js/m.js
41+
git commit -m "Remove specific JS code from m.js"
42+
43+
- name: Push changes to Ad-Free branch
44+
run: |
45+
git push origin Ad-Free --force

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
.idea
3+
.DS_Store
4+
.hintrc
5+
.gitpod.yml
6+
.env

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["dbaeumer.vscode-eslint", "biomejs.biome"]
3+
}

.vscode/settings.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"files.autoSave": "afterDelay",
3+
"files.autoSaveDelay": 0,
4+
"editor.formatOnSave": true,
5+
"editor.formatOnPaste": true,
6+
"editor.defaultFormatter": "biomejs.biome",
7+
"search.exclude": {
8+
"**/node_modules": true,
9+
"**/bower_components": true,
10+
"**/env": true,
11+
"**/venv": true,
12+
"**/.github": true,
13+
"**/.vscode": true,
14+
"Failed.html": true
15+
},
16+
"files.watcherExclude": {
17+
"**/.git/objects/**": true,
18+
"**/.git/subtree-cache/**": true,
19+
"**/node_modules/**": true,
20+
"**/env/**": true,
21+
"**/venv/**": true,
22+
"env-*": true,
23+
"Failed.html": true,
24+
"static/assets/js/fa.js": true
25+
}
26+
}

0 commit comments

Comments
 (0)