Skip to content

Commit

Permalink
Version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebelung-Dev committed Mar 16, 2023
1 parent 24055ea commit e7e8f38
Show file tree
Hide file tree
Showing 145 changed files with 4,020 additions and 1,456 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build
public/uv
public/osana
public/stomp
public/dip
public/aero
23 changes: 18 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,27 @@
- [x] Fixed links style
- [x] Fixed links underline when obfuscated

### Version 1.6
- [x] Logo now updates color depending on the theme!
- [x] Update Aero
- [x] Translate page titles (fix)
- [x] Revert to old logo
- [x] Rework logo svg
- [x] Fix translations
- [x] Update css
- [x] Update manifest with more logos
- [x] Remove Osana
- [x] No obfuscation option in "/consts.js"
- [x] Obfuscate more text

### Upcoming
- [ ] Translate page titles
- [ ] Obfuscate more text
- [ ] Obfuscate links (href)
- [ ] No obfuscation option in "/consts.js"
- [ ] Add a blocklist option
- [ ] Reset all settings
- [ ] Export/import settings
- [ ] Update other tabs on settings change
- [ ] Update proxies
- [ ] Add games
- [ ] Custom themes
- [ ] Change page names to 1, 2, 3 etc.
- [ ] Fix discord/github links
- [ ] Local fonts
- [ ] Local fonts
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ Click a button at the top of this page and follow the directions for an easy way

## Configuration
### Bare Server
Change the bare server in [`/src/consts.js`](https://github.com/Metallic-Web/Metallic/blob/main/src/consts.js)
`const obfuscation = true | false;` - Obfuscate text
`const bareServerURL = new URL(url);` - Main bare server and Stomp bare server

## Changelog
View the changelog/roadmap [here](https://github.com/Metallic-Web/Metallic/blob/main/CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metallic",
"version": "1.4",
"version": "1.6",
"description": "A powerful web proxy build for speed and customization.",
"repository": "https://github.com/Metallic-Web/Metallic.git",
"license": "MIT",
Expand Down
13 changes: 9 additions & 4 deletions public/aero-sw.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { handle } from "/aero/handle.js";
import handle from "./aero/handle.js";
import "./aero/init.js";

self.addEventListener("fetch", (event) =>
event.respondWith(handle(location, event))
);
self.addEventListener("install", () => self.skipWaiting());

self.addEventListener("fetch", async event =>
event.respondWith(
handle(event).catch(err => new Response(err.stack, { status: 500 }))
)
);
6 changes: 6 additions & 0 deletions public/aero/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[*]
charset = utf-8
insert_final_newline = false
end_of_line = lf
indent_style = tabs
indent_size = 4
2 changes: 2 additions & 0 deletions public/aero/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
config.js
this/misc/bare/BareClient.js
4 changes: 4 additions & 0 deletions public/aero/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"useTabs": true,
"arrowParens": "avoid"
}
Loading

0 comments on commit e7e8f38

Please sign in to comment.