-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from couleur-tweak-tips/old-vue
replace old vue with new html
- Loading branch information
Showing
29 changed files
with
667 additions
and
16,157 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="styles.css"> | ||
<title>TweakList-UI</title> | ||
<!-- | ||
notable global variables: | ||
- tlui holds the template to build container | ||
- conf holds the user defined parameters, synced with localStorage | ||
--> | ||
<script src="init.js"></script> | ||
<script src="storageManager.js"></script> | ||
<script src="main.js"></script> | ||
</head> | ||
<body> | ||
<div class="nav"> | ||
<a href="https://ctt.cx" target="_blank"> | ||
<img | ||
src="https://avatars.githubusercontent.com/u/82734468?s=200" | ||
style="width: 38px; height: 38px; border-radius: 100%" | ||
alt="CTT Logo" | ||
> | ||
</a> | ||
|
||
<a | ||
style="padding-right: 0" | ||
href="https://github.com/couleur-tweak-tips/TweakList" | ||
target="_blank" | ||
class="nav-link" | ||
title="Repository for the source code of the PowerShell module this website helps you generate commands of" | ||
>TweakList</a> | ||
|
||
<span style="margin: 0;">–</span> | ||
|
||
<a | ||
style="padding-left: 0" href="https://github.com/couleur-tweak-tips/TweakList" | ||
target="_blank" | ||
class="nav-link" | ||
title="Repository for the source code of this website" | ||
>UI</a> | ||
</div> <!--nav--> | ||
<div id="export"></div> | ||
|
||
<div id="container"> | ||
<div id="functions"> | ||
<h2>Functions</h2> | ||
<ul id="functions-list"><!--automatically generated --></ul> | ||
<button style="display: table; margin: auto" onclick="exportCode()">Export</button> | ||
</div> | ||
<div id="parameters"> | ||
<h2>Parameters</h2> | ||
<div id="parameters-pane"><!--automatically generated --></div> | ||
</div> | ||
</div> | ||
<script> | ||
loadList(tlui) | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains 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,104 @@ | ||
const tlui = { | ||
"Optimize-LunarClient": { | ||
"description": "Applies no-brainers and select tweaks to a Lunar Client profile", | ||
"tags": "Minecraft", | ||
"parameters": { | ||
"Settings": { | ||
"type": "enum[]", | ||
"description": "Specify which specific tweak you'd like applying on your profile", | ||
"values": { | ||
"Performance": "Turn off performance-hungry settings", | ||
"NoCosmetics": "Disable all emotes, cosmetics, wings, hats..", | ||
"MinimalViewBobbing": "Keep item movement but disable walk bobbing", | ||
"No16xSaturationOverlay": "Remove the yellow 16x hunger bar overlay", | ||
"HideToggleSprint": "Hides the ToggleSprint status from HUD", | ||
"ToggleSneak": "Turns on ToggleSneak", | ||
"DisableUHCMods": "Disables ArmorHUD, DirectionHUD and Coordinates mods", | ||
"FullBright": "literally night vision" | ||
} | ||
}, | ||
"LazyChunkLoadSpeed": { | ||
"type": "enum", | ||
"description": "Specify which specific tweak you'd like applying on your profile", | ||
"values": [ | ||
"highest", | ||
"high", | ||
"medium", | ||
"low", | ||
"lowest", | ||
"off_van" | ||
] | ||
}, | ||
"LCDirectory": { | ||
"type": "folder_path", | ||
"default": "$HOME\\.lunarclient" | ||
}, | ||
"NoBetaWarning": { | ||
"type": "bool" | ||
}, | ||
"KeepLCOpen": { | ||
"type": "bool" | ||
}, | ||
"DryRun": { | ||
"type": "bool" | ||
} | ||
} | ||
}, | ||
"Optimize-OBS": { | ||
"description": "Configure OBS UI, output and video settings from a list of presets", | ||
"tags": "Video Windows Linux", | ||
"path": "/modules/Game & Program tuners/Optimize-OBS.ps1", | ||
"parameters": { | ||
"Encoder": { | ||
"description": "Which encoder you wish to use", | ||
"required": "true", | ||
"type": "enum", | ||
"values": { | ||
"NVENC": "NVIDIA's Fastest encoder, it lets you record in hundreds of FPS easily", | ||
"AMF": "AMD GPUs/Integrated GPUs encoder, not as good as NVENC but can still record about ~240FPS at most", | ||
"QuickSync": "Intel's GPU encoder, worst out of the three, note this is H264, not the new fancy but slow AV1", | ||
"x264": "Encoding using your CPU, slow but efficient, only use if necessary/you know what you're doing" | ||
}, | ||
"default": "x264" | ||
}, | ||
"OBS64Path": { | ||
"description": "If you've got a portable install or something, pass in the main OBS binary's path here", | ||
"type": "filepath" | ||
}, | ||
"OBSProfile": { | ||
"description": "Provide your own profile folder path", | ||
"type": "folderpath" | ||
} | ||
} | ||
}, | ||
"Remove-ContextMenu": { | ||
"description": "Remove options you don't use from Windows' right click menu", | ||
"tags": "Windows UI ADMIN", | ||
"parameters": { | ||
"Entries": { | ||
"type": "enum[]", | ||
"values": [ | ||
"PinToQuickAccess", | ||
"RestorePreviousVersions", | ||
"Print", | ||
"GiveAccessTo", | ||
"EditWithPaint3D", | ||
"IncludeInLibrary", | ||
"AddToWindowsMediaPlayerList", | ||
"CastToDevice", | ||
"EditWithPaint3D", | ||
"EditWithPhotos", | ||
"Share", | ||
"TakeOwnerShip", | ||
"7Zip", | ||
"WinRAR", | ||
"Notepad++", | ||
"OpenWithOnBatchFiles", | ||
"SendTo", | ||
"DrivesInSendTo", | ||
"VLC" | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.