-
Notifications
You must be signed in to change notification settings - Fork 51
New: SonataOverlay #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
df2b031
Add SonotaOverlay folder
ParaliyzedEvo f0a63db
Update api_functions.js
ParaliyzedEvo e61ada1
Replace AGPL with GPL in license file
ParaliyzedEvo 2d03595
Start the process of moving from a public proxy to using websocket
ParaliyzedEvo 793c458
Add local proxy
ParaliyzedEvo c920abd
Add local proxy for windows
ParaliyzedEvo e3e58f6
make .gitignore include proxy-win.exe
ParaliyzedEvo afe7050
Added instructions regarding the proxy and security notes
ParaliyzedEvo 8c9e66a
Remove proxy
ParaliyzedEvo 31babc4
Provide CDNs locally
ParaliyzedEvo 1a47f4b
Remove comments
ParaliyzedEvo d7970ad
Make fonts local
ParaliyzedEvo c713a8c
Apply tosu filters
ParaliyzedEvo 5d473a8
Use official socket
ParaliyzedEvo e6e0d6f
Switch over to osu api v1
ParaliyzedEvo ef9f01e
Fix body clipping hpbar
ParaliyzedEvo ebfca83
Fix bug in userProfile being undefined
ParaliyzedEvo 73c8e86
Fix index.js not detecting screen changes correctly
ParaliyzedEvo c464f3c
Remove osu api v2 stuff
ParaliyzedEvo d67c55c
Same as lat commit
ParaliyzedEvo 4595ca6
Remove proxy warning
ParaliyzedEvo 345ccb6
Change default value to english
ParaliyzedEvo 18502de
Remove hardcorded urls
ParaliyzedEvo 3381404
Fixed missing export function not being defined
ParaliyzedEvo 2f02cf2
Fix code to make handlers retry until socket connects and fixed leade…
ParaliyzedEvo a1de68c
Add recorder text
ParaliyzedEvo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| ## SonotaOverlay | ||
| [](https://www.codefactor.io/repository/github/paraliyzedevo/sonotaoverlay) | ||
| [](https://paraliyzed.net/) | ||
| [](https://paypal.me/Paraliyzedevo) | ||
|
|
||
| Basically this repo is a fork (and maintained version) of the original [SonotaOverlay](https://web.archive.org/web/20250325212754/https://github.com/HosizoraN/SonataOverlay) made by [HosizoraN](https://web.archive.org/web/20250325212754/https://github.com/HosizoraN) (using archive.org links due to them deleting the accounts). Only reason I have this is me having this overlay for a few years and using it (via [tosu](https://github.com/tosuapp/tosu)) for videos and streams and problems arose with it and I fixed them. This code has my patches and extras included with this, but if you want to revert them, you can go look in the [source code](https://github.com/ParaliyzedEvo/SonotaOverlay/tree/source) and edit the overlay yourself. | ||
|
|
||
| ## Instructions | ||
| Settings for replays (ingame): | ||
| - Go to skin file make sure empty the keyoverlay ingame like this: | ||
|
|
||
|  | ||
|
|
||
| - ingame settings: | ||
|
|
||
|  | ||
|
|
||
|  | ||
|
|
||
| No new preview for now :v | ||
|
|
||
| ## Security | ||
| - This project does not ship any osu! API credentials to anyone. | ||
| - All API requests are made locally using user provided OAuth. | ||
| - No public or shared proxy services are used, proxy is only ran locally. | ||
|
|
||
| ## Star History | ||
|
|
||
| <a href="https://www.star-history.com/#ParaliyzedEvo/SonotaOverlay&type=date&legend=top-left"> | ||
| <picture> | ||
| <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=ParaliyzedEvo/SonotaOverlay&type=date&theme=dark&legend=top-left" /> | ||
| <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=ParaliyzedEvo/SonotaOverlay&type=date&legend=top-left" /> | ||
| <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=ParaliyzedEvo/SonotaOverlay&type=date&legend=top-left" /> | ||
| </picture> | ||
| </a> | ||
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| .DebugBox { | ||
| margin: 15px; | ||
| padding: 15px 35px 15px 20px; | ||
| width: fit-content; | ||
| height: fit-content; | ||
| background-color: #050819; | ||
| } | ||
| .DebugBorder { | ||
| width: 97%; | ||
| height: 95%; | ||
| border: 3px solid #a1c9ff; | ||
| padding: 10px; | ||
| } | ||
| .DebugText { | ||
| font-family: 'Stanley Moon'; | ||
| font-size: 25px; | ||
| font-weight: 200; | ||
| } | ||
| #DevInformation { | ||
| background-color: #050819; | ||
| color: #a1c9ff; | ||
| transition: ease 1s; | ||
| } | ||
| #CrashReportDebug { | ||
| background-color: #190505; | ||
| color: #ffa1a1; | ||
| transition: ease 1s 1s; | ||
| } | ||
| #CrashReportDebug, #DevInformation { | ||
| position: absolute; | ||
| left: 0; | ||
| right: 0; | ||
| margin-left: auto; | ||
| margin-right: auto; | ||
| bottom: 100px; | ||
| padding: 15px 20px 15px 20px; | ||
| font-size: 30px; | ||
| z-index: 3; | ||
| } | ||
| #SadFace,#DevPics { | ||
| width: 200px; | ||
| height: 200px; | ||
| background-size: 100%; | ||
| } | ||
| #SadFace { | ||
| background-image: url('../static/hosisad.png'); | ||
| } | ||
| #DevPics { | ||
| background-image: url('../static/devnotice.png'); | ||
| } | ||
| #CrashText,#DevVersion { | ||
| font-size: 45px; | ||
| } | ||
| #CrashBorder, #DevInformationBorder { | ||
| text-align: center; | ||
| justify-content: center; | ||
| align-items: center; | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 20px; | ||
| padding-left: 20px; | ||
| padding-right: 20px; | ||
| width: 1300px; | ||
| line-height: 30px; | ||
| } | ||
| #CrashBorder { | ||
| border: 3px solid #ffa1a1; | ||
| } | ||
| #DevInformationBorder { | ||
| border: 3px solid #a1c9ff; | ||
| } | ||
| .crashpop { | ||
| transform: translateY(700px); opacity: 0; | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.