├── .gitattributes ├── .vs └── Tweaker_Win32PrioritySeparation │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── README.md ├── Tweaker_Win32PrioritySeparation.sln ├── Tweaker_Win32PrioritySeparation ├── App.config ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Form2.Designer.vb ├── Form2.resx ├── Form2.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ └── help.txt ├── Tweaker_Win32PrioritySeparation.vbproj └── app.manifest └── help.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/Tweaker_Win32PrioritySeparation/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/.vs/Tweaker_Win32PrioritySeparation/v16/.suo -------------------------------------------------------------------------------- /.vs/Tweaker_Win32PrioritySeparation/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Tweaker_Win32PrioritySeparation/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/.vs/Tweaker_Win32PrioritySeparation/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/README.md -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation.sln -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/App.config -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form1.Designer.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form1.resx -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form1.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form2.Designer.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form2.resx -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Form2.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Application.myapp -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Resources.resx -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/My Project/Settings.settings -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Resources/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Resources/help.txt -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/Tweaker_Win32PrioritySeparation.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/Tweaker_Win32PrioritySeparation.vbproj -------------------------------------------------------------------------------- /Tweaker_Win32PrioritySeparation/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/Tweaker_Win32PrioritySeparation/app.manifest -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheMelody/melodys-tweaker/HEAD/help.txt --------------------------------------------------------------------------------