Skip to content

Commit e7e8f38

Browse files
committed
Version 1.6
1 parent 24055ea commit e7e8f38

145 files changed

Lines changed: 4020 additions & 1456 deletions

File tree

Some content is hidden

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

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
build
22
public/uv
3-
public/osana
43
public/stomp
54
public/dip
65
public/aero

CHANGELOG.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,27 @@
4141
- [x] Fixed links style
4242
- [x] Fixed links underline when obfuscated
4343

44+
### Version 1.6
45+
- [x] Logo now updates color depending on the theme!
46+
- [x] Update Aero
47+
- [x] Translate page titles (fix)
48+
- [x] Revert to old logo
49+
- [x] Rework logo svg
50+
- [x] Fix translations
51+
- [x] Update css
52+
- [x] Update manifest with more logos
53+
- [x] Remove Osana
54+
- [x] No obfuscation option in "/consts.js"
55+
- [x] Obfuscate more text
56+
4457
### Upcoming
45-
- [ ] Translate page titles
46-
- [ ] Obfuscate more text
47-
- [ ] Obfuscate links (href)
48-
- [ ] No obfuscation option in "/consts.js"
58+
- [ ] Add a blocklist option
59+
- [ ] Reset all settings
60+
- [ ] Export/import settings
61+
- [ ] Update other tabs on settings change
4962
- [ ] Update proxies
5063
- [ ] Add games
5164
- [ ] Custom themes
5265
- [ ] Change page names to 1, 2, 3 etc.
5366
- [ ] Fix discord/github links
54-
- [ ] Local fonts
67+
- [ ] Local fonts

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Click a button at the top of this page and follow the directions for an easy way
3535

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

4041
## Changelog
4142
View the changelog/roadmap [here](https://github.com/Metallic-Web/Metallic/blob/main/CHANGELOG.md)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metallic",
3-
"version": "1.4",
3+
"version": "1.6",
44
"description": "A powerful web proxy build for speed and customization.",
55
"repository": "https://github.com/Metallic-Web/Metallic.git",
66
"license": "MIT",

public/aero-sw.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
import { handle } from "/aero/handle.js";
1+
import handle from "./aero/handle.js";
2+
import "./aero/init.js";
23

3-
self.addEventListener("fetch", (event) =>
4-
event.respondWith(handle(location, event))
5-
);
4+
self.addEventListener("install", () => self.skipWaiting());
5+
6+
self.addEventListener("fetch", async event =>
7+
event.respondWith(
8+
handle(event).catch(err => new Response(err.stack, { status: 500 }))
9+
)
10+
);

public/aero/.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[*]
2+
charset = utf-8
3+
insert_final_newline = false
4+
end_of_line = lf
5+
indent_style = tabs
6+
indent_size = 4

public/aero/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
config.js
2+
this/misc/bare/BareClient.js

public/aero/.prettierrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"useTabs": true,
3+
"arrowParens": "avoid"
4+
}

0 commit comments

Comments
 (0)