├── .gitattributes ├── .gitignore ├── MetaQuestBitrateRegistryEditor.sln ├── README.md └── WindowsFormsApp1 ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MetaQuestBitrateRegistryEditor.csproj ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── resources ├── off-button.png └── on-button.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin/ 3 | obj/ 4 | -------------------------------------------------------------------------------- /MetaQuestBitrateRegistryEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/MetaQuestBitrateRegistryEditor.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/README.md -------------------------------------------------------------------------------- /WindowsFormsApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/App.config -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Form1.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Form1.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Form1.resx -------------------------------------------------------------------------------- /WindowsFormsApp1/MetaQuestBitrateRegistryEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/MetaQuestBitrateRegistryEditor.csproj -------------------------------------------------------------------------------- /WindowsFormsApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Program.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Properties/Resources.resx -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/Properties/Settings.settings -------------------------------------------------------------------------------- /WindowsFormsApp1/resources/off-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/resources/off-button.png -------------------------------------------------------------------------------- /WindowsFormsApp1/resources/on-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHUNx3/MetaQuestBitrateRegistryEditor/HEAD/WindowsFormsApp1/resources/on-button.png --------------------------------------------------------------------------------