├── .editorconfig
├── .github
└── workflows
│ └── release.yml
├── .gitignore
├── .vscode
├── c_cpp_properties.json
└── settings.json
├── BUILD.md
├── Injector
├── Injector.cpp
├── Injector.rc
├── Injector.vcxproj
└── soggfy.ico
├── LICENSE
├── README.md
├── Scripts
├── Install.cmd
├── Install.ps1
└── Uninstall.cmd
├── SpotifyOggDumper.sln
├── SpotifyOggDumper
├── CefUtils.cpp
├── CefUtils.h
├── ControlServer.cpp
├── ControlServer.h
├── Main.cpp
├── SpotifyOggDumper.vcxproj
├── StateManager.cpp
├── StateManager.h
├── Utils
│ ├── Hooks.cpp
│ ├── Hooks.h
│ ├── Log.cpp
│ ├── Log.h
│ ├── Utils.cpp
│ └── Utils.h
├── pch.cpp
└── pch.h
├── Sprinkles
├── .gitignore
├── dev_build.bat
├── package-lock.json
├── package.json
├── src
│ ├── config.ts
│ ├── connection.ts
│ ├── global.d.ts
│ ├── main.ts
│ ├── path-template.ts
│ ├── player-state-tracker.ts
│ ├── resources.ts
│ ├── spotify-apis.ts
│ ├── ui
│ │ ├── components.ts
│ │ ├── css
│ │ │ ├── components.css
│ │ │ ├── settings.css
│ │ │ └── status-indicator.css
│ │ ├── status-indicator.ts
│ │ ├── ui-assets.ts
│ │ └── ui.ts
│ └── utils.ts
├── tsconfig.json
└── webpack.config.js
├── fetch_external_deps.bat
└── vcpkg.json
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/.github/workflows/release.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/.gitignore
--------------------------------------------------------------------------------
/.vscode/c_cpp_properties.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/.vscode/c_cpp_properties.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/BUILD.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/BUILD.md
--------------------------------------------------------------------------------
/Injector/Injector.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Injector/Injector.cpp
--------------------------------------------------------------------------------
/Injector/Injector.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Injector/Injector.rc
--------------------------------------------------------------------------------
/Injector/Injector.vcxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Injector/Injector.vcxproj
--------------------------------------------------------------------------------
/Injector/soggfy.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Injector/soggfy.ico
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/README.md
--------------------------------------------------------------------------------
/Scripts/Install.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Scripts/Install.cmd
--------------------------------------------------------------------------------
/Scripts/Install.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Scripts/Install.ps1
--------------------------------------------------------------------------------
/Scripts/Uninstall.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Scripts/Uninstall.cmd
--------------------------------------------------------------------------------
/SpotifyOggDumper.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper.sln
--------------------------------------------------------------------------------
/SpotifyOggDumper/CefUtils.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/CefUtils.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/CefUtils.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/CefUtils.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/ControlServer.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/ControlServer.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/ControlServer.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/ControlServer.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/Main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Main.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/SpotifyOggDumper.vcxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/SpotifyOggDumper.vcxproj
--------------------------------------------------------------------------------
/SpotifyOggDumper/StateManager.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/StateManager.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/StateManager.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/StateManager.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Hooks.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Hooks.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Hooks.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Hooks.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Log.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Log.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Log.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Log.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Utils.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Utils.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/Utils/Utils.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/Utils/Utils.h
--------------------------------------------------------------------------------
/SpotifyOggDumper/pch.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/pch.cpp
--------------------------------------------------------------------------------
/SpotifyOggDumper/pch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/SpotifyOggDumper/pch.h
--------------------------------------------------------------------------------
/Sprinkles/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
--------------------------------------------------------------------------------
/Sprinkles/dev_build.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/dev_build.bat
--------------------------------------------------------------------------------
/Sprinkles/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/package-lock.json
--------------------------------------------------------------------------------
/Sprinkles/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/package.json
--------------------------------------------------------------------------------
/Sprinkles/src/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/config.ts
--------------------------------------------------------------------------------
/Sprinkles/src/connection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/connection.ts
--------------------------------------------------------------------------------
/Sprinkles/src/global.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/global.d.ts
--------------------------------------------------------------------------------
/Sprinkles/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/main.ts
--------------------------------------------------------------------------------
/Sprinkles/src/path-template.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/path-template.ts
--------------------------------------------------------------------------------
/Sprinkles/src/player-state-tracker.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/player-state-tracker.ts
--------------------------------------------------------------------------------
/Sprinkles/src/resources.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/resources.ts
--------------------------------------------------------------------------------
/Sprinkles/src/spotify-apis.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/spotify-apis.ts
--------------------------------------------------------------------------------
/Sprinkles/src/ui/components.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/components.ts
--------------------------------------------------------------------------------
/Sprinkles/src/ui/css/components.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/css/components.css
--------------------------------------------------------------------------------
/Sprinkles/src/ui/css/settings.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/css/settings.css
--------------------------------------------------------------------------------
/Sprinkles/src/ui/css/status-indicator.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/css/status-indicator.css
--------------------------------------------------------------------------------
/Sprinkles/src/ui/status-indicator.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/status-indicator.ts
--------------------------------------------------------------------------------
/Sprinkles/src/ui/ui-assets.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/ui-assets.ts
--------------------------------------------------------------------------------
/Sprinkles/src/ui/ui.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/ui/ui.ts
--------------------------------------------------------------------------------
/Sprinkles/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/src/utils.ts
--------------------------------------------------------------------------------
/Sprinkles/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/tsconfig.json
--------------------------------------------------------------------------------
/Sprinkles/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/Sprinkles/webpack.config.js
--------------------------------------------------------------------------------
/fetch_external_deps.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/fetch_external_deps.bat
--------------------------------------------------------------------------------
/vcpkg.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rafiuth/Soggfy/HEAD/vcpkg.json
--------------------------------------------------------------------------------