├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── SOURCE_CODE ├── file_version_info.txt ├── requirements.txt ├── res ├── banner-big.png ├── banner.png ├── discord.png ├── example.gif ├── logo-full.png ├── logo-title.png ├── logo-title.xcf ├── logo.ico ├── logo.png ├── logo.svg └── preview.png ├── run.py ├── run.spec └── src ├── __init__.py ├── core.py ├── exceptions.py ├── logger └── __init__.py ├── network ├── __init__.py ├── discord.py └── network.py ├── processing ├── __init__.py ├── listener.py ├── processing.py └── storage.py ├── thread.py └── ui.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/README.md -------------------------------------------------------------------------------- /SOURCE_CODE: -------------------------------------------------------------------------------- 1 | Source code available on GitHub 2 | Link: https://github.com/XroixHD/MCBE-Win10-FOV-Changer 3 | -------------------------------------------------------------------------------- /file_version_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/file_version_info.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/banner-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/banner-big.png -------------------------------------------------------------------------------- /res/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/banner.png -------------------------------------------------------------------------------- /res/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/discord.png -------------------------------------------------------------------------------- /res/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/example.gif -------------------------------------------------------------------------------- /res/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo-full.png -------------------------------------------------------------------------------- /res/logo-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo-title.png -------------------------------------------------------------------------------- /res/logo-title.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo-title.xcf -------------------------------------------------------------------------------- /res/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo.ico -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/logo.svg -------------------------------------------------------------------------------- /res/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/res/preview.png -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/run.py -------------------------------------------------------------------------------- /run.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/run.spec -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/core.py -------------------------------------------------------------------------------- /src/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/exceptions.py -------------------------------------------------------------------------------- /src/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/logger/__init__.py -------------------------------------------------------------------------------- /src/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/network/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/network/discord.py -------------------------------------------------------------------------------- /src/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/network/network.py -------------------------------------------------------------------------------- /src/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/processing/__init__.py -------------------------------------------------------------------------------- /src/processing/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/processing/listener.py -------------------------------------------------------------------------------- /src/processing/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/processing/processing.py -------------------------------------------------------------------------------- /src/processing/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/processing/storage.py -------------------------------------------------------------------------------- /src/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/thread.py -------------------------------------------------------------------------------- /src/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroix/MCBE-Win10-FOV-Changer/HEAD/src/ui.py --------------------------------------------------------------------------------