mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2026-06-21 22:18:01 +00:00
Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7339455c16 | ||
|
|
d9fcf974d2 | ||
|
|
fdba684d12 | ||
|
|
fd201ced31 | ||
|
|
af0bf52e30 |
7 changed files with 46 additions and 39 deletions
|
|
@ -19,6 +19,6 @@
|
||||||
],
|
],
|
||||||
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ASTExtension.dll",
|
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ASTExtension.dll",
|
||||||
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ASTExtension/",
|
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ASTExtension/",
|
||||||
"changelog": "- Fixes for CVR 2026r182",
|
"changelog": "- Fixes for 2026r182",
|
||||||
"embedcolor": "#f61963"
|
"embedcolor": "#f61963"
|
||||||
}
|
}
|
||||||
|
|
@ -1,11 +1,17 @@
|
||||||
# Tinyboard
|
# AutoAccept
|
||||||
|
|
||||||
Makes the keyboard small and smart.
|
Small invite tweaks to make them less annoying.
|
||||||
|
|
||||||
Few small tweaks to the keyboard:
|
**Features:**
|
||||||
- Shrinks the keyboard to a size that isn't fit for grandma.
|
- Invite Modes in Friends tab:
|
||||||
- Adjusts keyboard placement logic to align with the menu that it spawns from.
|
- Ask: Sends the invite to the Messages tab
|
||||||
- Enforces a title on the keyboard input if one is not found.
|
- All: Auto-accepts invites from any friend
|
||||||
|
- Select: Auto-accepts invites from starred friend categories
|
||||||
|
- DND: Silently ignores all incoming invites
|
||||||
|
- Added HUD notification on invite receive which displays the senders username
|
||||||
|
- Replaced annoying API Response confirmation prompts with simple menu toasts
|
||||||
|
|
||||||
|
-# This mod is intended to be a more flexible alternative to the JoinMe mod.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,23 @@
|
||||||
{
|
{
|
||||||
"_id": 264,
|
"_id": -1,
|
||||||
"name": "Tinyboard",
|
"name": "AutoAccept",
|
||||||
"modversion": "1.0.1",
|
"modversion": "1.0.0",
|
||||||
"gameversion": "2025r181",
|
"gameversion": "2026r182",
|
||||||
"loaderversion": "0.7.2",
|
"loaderversion": "0.7.2",
|
||||||
"modtype": "Mod",
|
"modtype": "Mod",
|
||||||
"author": "NotAKidoS",
|
"author": "NotAKidoS",
|
||||||
"description": "Few small tweaks to the keyboard:\n- Shrinks the keyboard to a size that isn't fit for grandma.\n- Adjusts keyboard placement logic to align with the menu that it spawns from.\n- Enforces a title on the keyboard input if one is not found.",
|
"description": "Small invite tweaks to make them less annoying.\n\n**Features:**\n- Invite Modes in Friends tab:\n - Ask: Sends the invite to the Messages tab\n - All: Auto-accepts invites from any friend\n - Select: Auto-accepts invites from starred friend categories\n - DND: Silently ignores all incoming invites\n- Added HUD notification on invite receive which displays the senders username\n- Replaced annoying API Response confirmation prompts with simple menu toasts \n\n-# This mod is intended to be a more flexible alternative to the JoinMe mod.",
|
||||||
"searchtags": [
|
"searchtags": [
|
||||||
"keyboard",
|
"invites",
|
||||||
"menu",
|
"joinme",
|
||||||
"ui",
|
"auto",
|
||||||
"input"
|
"request"
|
||||||
],
|
],
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"None"
|
"None"
|
||||||
],
|
],
|
||||||
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r48/Tinyboard.dll",
|
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/AutoAccept.dll",
|
||||||
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/Tinyboard/",
|
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/AutoAccept/",
|
||||||
"changelog": "- Rebuilt for CVR 2025r181",
|
"changelog": "- Initial release",
|
||||||
"embedcolor": "#f61963"
|
"embedcolor": "#f61963"
|
||||||
}
|
}
|
||||||
|
|
@ -27,6 +27,6 @@ using System.Reflection;
|
||||||
namespace NAK.ChatBoxHud.Properties;
|
namespace NAK.ChatBoxHud.Properties;
|
||||||
internal static class AssemblyInfoParams
|
internal static class AssemblyInfoParams
|
||||||
{
|
{
|
||||||
public const string Version = "1.0.1";
|
public const string Version = "1.0.2";
|
||||||
public const string Author = "NotAKidoS";
|
public const string Author = "NotAKidoS";
|
||||||
}
|
}
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"_id": -1,
|
"_id": 283,
|
||||||
"name": "ChatBoxHud",
|
"name": "ChatBoxHud",
|
||||||
"modversion": "1.0.1",
|
"modversion": "1.0.2",
|
||||||
"gameversion": "2026r181",
|
"gameversion": "2026r182",
|
||||||
"loaderversion": "0.7.2",
|
"loaderversion": "0.7.2",
|
||||||
"modtype": "Mod",
|
"modtype": "Mod",
|
||||||
"author": "NotAKidoS",
|
"author": "NotAKidoS",
|
||||||
|
|
@ -16,8 +16,8 @@
|
||||||
],
|
],
|
||||||
"requirements": [
|
"requirements": [
|
||||||
],
|
],
|
||||||
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r49/ChatBoxHud.dll",
|
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ChatBoxHud.dll",
|
||||||
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ChatBoxHud/",
|
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ChatBoxHud/",
|
||||||
"changelog": "- Changed username color to use emission player color",
|
"changelog": "- Rebuilt for 2026r182",
|
||||||
"embedcolor": "#f61963"
|
"embedcolor": "#f61963"
|
||||||
}
|
}
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
</Folder>
|
</Folder>
|
||||||
<Project Path="ASTExtension/ASTExtension.csproj" />
|
<Project Path="ASTExtension/ASTExtension.csproj" />
|
||||||
<Project Path="AutoAccept/AutoAccept.csproj" />
|
<Project Path="AutoAccept/AutoAccept.csproj" />
|
||||||
|
<Project Path="ChatBoxHud/ChatBoxHud.csproj" />
|
||||||
<Project Path="CustomSpawnPoint/CustomSpawnPoint.csproj" />
|
<Project Path="CustomSpawnPoint/CustomSpawnPoint.csproj" />
|
||||||
<Project Path="DehumanizePlayers/DehumanizePlayers.csproj" />
|
<Project Path="DehumanizePlayers/DehumanizePlayers.csproj" />
|
||||||
<Project Path="DesktopInteractions/DesktopInteractions.csproj" />
|
<Project Path="DesktopInteractions/DesktopInteractions.csproj" />
|
||||||
|
|
|
||||||
28
README.md
28
README.md
|
|
@ -6,23 +6,23 @@
|
||||||
|
|
||||||
| Name | Description | Download |
|
| Name | Description | Download |
|
||||||
|------|-------------|----------|
|
|------|-------------|----------|
|
||||||
| [ASTExtension](ASTExtension/README.md) | Extension mod for [Avatar Scale Tool](https://github.com/NotAKidoS/AvatarScaleTool): | No Download |
|
| [ASTExtension](ASTExtension/README.md) | Extension mod for [Avatar Scale Tool](https://github.com/NotAKidoS/AvatarScaleTool): | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ASTExtension.dll) |
|
||||||
| [AutoAccept](AutoAccept/README.md) | Makes the keyboard small and smart. | No Download |
|
| [AutoAccept](AutoAccept/README.md) | Small invite tweaks to make them less annoying. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/AutoAccept.dll) |
|
||||||
| [ChatBoxHud](ChatBoxHud/README.md) | Shows nearby ChatBox messages directly on your HUD so you can read them comfortably in VR without breaking your neck. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r49/ChatBoxHud.dll) |
|
| [ChatBoxHud](ChatBoxHud/README.md) | Shows nearby ChatBox messages directly on your HUD so you can read them comfortably in VR without breaking your neck. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ChatBoxHud.dll) |
|
||||||
| [CustomSpawnPoint](CustomSpawnPoint/README.md) | Replaces the unused Images button in the World Details page with a button to set a custom spawn point. | No Download |
|
| [CustomSpawnPoint](CustomSpawnPoint/README.md) | Replaces the unused Images button in the World Details page with a button to set a custom spawn point. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/CustomSpawnPoint.dll) |
|
||||||
| [DehumanizePlayers](DehumanizePlayers/README.md) | Humanoid animators are needlessly more expensive than generic ones due to scheduling twist resolving for each layer, even when empty or unnecessary. | No Download |
|
| [DehumanizePlayers](DehumanizePlayers/README.md) | Humanoid animators are needlessly more expensive than generic ones due to scheduling twist resolving for each layer, even when empty or unnecessary. | No Download |
|
||||||
| [DesktopInteractions](DesktopInteractions/README.md) | Adds IK-driven hand gestures to your avatar in Desktop: earpiece grab (GMOD-style) when typing in ChatBox, and binocular cupping when zooming. Both gestures are toggleable in settings. | No Download |
|
| [DesktopInteractions](DesktopInteractions/README.md) | Adds IK-driven hand gestures to your avatar in Desktop: earpiece grab (GMOD-style) when typing in ChatBox, and binocular cupping when zooming. Both gestures are toggleable in settings. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/DesktopInteractions.dll) |
|
||||||
| [DisableInputDuringFingerTracking](DisableInputDuringFingerTracking/README.md) | Extension mod for [Avatar Scale Tool](https://github.com/NotAKidoS/AvatarScaleTool): | No Download |
|
| [DisableInputDuringFingerTracking](DisableInputDuringFingerTracking/README.md) | Extension mod for [Avatar Scale Tool](https://github.com/NotAKidoS/AvatarScaleTool): | No Download |
|
||||||
| [DoubleTapJumpToExitSeat](DoubleTapJumpToExitSeat/README.md) | Replaces seat exit controls with a double-tap of the jump button, avoiding accidental exits from joystick drift or opening the menu. | No Download |
|
| [DoubleTapJumpToExitSeat](DoubleTapJumpToExitSeat/README.md) | Replaces seat exit controls with a double-tap of the jump button, avoiding accidental exits from joystick drift or opening the menu. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/DoubleTapJumpToExitSeat.dll) |
|
||||||
| [ESCBothMenus](ESCBothMenus/README.md) | Makes the Quick Menu appear when pressing ESC in Desktop. Pressing twice will open straight to Main Menu. | No Download |
|
| [ESCBothMenus](ESCBothMenus/README.md) | Makes the Quick Menu appear when pressing ESC in Desktop. Pressing twice will open straight to Main Menu. | No Download |
|
||||||
| [FuckToes](FuckToes/README.md) | Prevents VRIK from autodetecting toes in Halfbody or Fullbody. | No Download |
|
| [FuckToes](FuckToes/README.md) | Prevents VRIK from autodetecting toes in Halfbody or Fullbody. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/FuckToes.dll) |
|
||||||
| [PlapPlapForAll](PlapPlapForAll/README.md) | Penetrator SFX mod which adds Noachi's PlapPlap prefab to any detected DPS setup on avatars that do not already have it. | No Download |
|
| [PlapPlapForAll](PlapPlapForAll/README.md) | Penetrator SFX mod which adds Noachi's PlapPlap prefab to any detected DPS setup on avatars that do not already have it. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/PlapPlapForAll.dll) |
|
||||||
| [RCCVirtualSteeringWheel](RCCVirtualSteeringWheel/README.md) | Allows you to physically grab rigged RCC steering wheels in VR to provide steering input. No explicit setup required other than defining the Steering Wheel transform within the RCC component. | No Download |
|
| [RCCVirtualSteeringWheel](RCCVirtualSteeringWheel/README.md) | Allows you to physically grab rigged RCC steering wheels in VR to provide steering input. No explicit setup required other than defining the Steering Wheel transform within the RCC component. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/RCCVirtualSteeringWheel.dll) |
|
||||||
| [RelativeSyncJitterFix](RelativeSyncJitterFix/README.md) | Relative sync jitter fix is the single harmony patch that could not make it into the native release of RelativeSync. | No Download |
|
| [RelativeSyncJitterFix](RelativeSyncJitterFix/README.md) | Relative sync jitter fix is the single harmony patch that could not make it into the native release of RelativeSync. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/RelativeSyncJitterFix.dll) |
|
||||||
| [ShareBubbles](ShareBubbles/README.md) | Share Bubbles! Allows you to drop down bubbles containing Avatars & Props. Requires both users to have the mod installed. Synced over Mod Network. | No Download |
|
| [ShareBubbles](ShareBubbles/README.md) | Share Bubbles! Allows you to drop down bubbles containing Avatars & Props. Requires both users to have the mod installed. Synced over Mod Network. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ShareBubbles.dll) |
|
||||||
| [ShowPlayerInSelfMirror](ShowPlayerInSelfMirror/README.md) | Adds an option in the Quick Menu selected player page to show the target player's avatar in your self mirror. | No Download |
|
| [ShowPlayerInSelfMirror](ShowPlayerInSelfMirror/README.md) | Adds an option in the Quick Menu selected player page to show the target player's avatar in your self mirror. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ShowPlayerInSelfMirror.dll) |
|
||||||
| [SmootherRay](SmootherRay/README.md) | Smoothes your controller while the raycast lines are visible. | No Download |
|
| [SmootherRay](SmootherRay/README.md) | Smoothes your controller while the raycast lines are visible. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/SmootherRay.dll) |
|
||||||
| [Tinyboard](Tinyboard/README.md) | Makes the keyboard small and smart. | No Download |
|
| [Tinyboard](Tinyboard/README.md) | Makes the keyboard small and smart. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/Tinyboard.dll) |
|
||||||
| [YouAreMyPropNowWeAreHavingSoftTacosLater](YouAreMyPropNowWeAreHavingSoftTacosLater/README.md) | Lets you bring held, attached, and occupied props through world loads. This is configurable in the mod settings. | No Download |
|
| [YouAreMyPropNowWeAreHavingSoftTacosLater](YouAreMyPropNowWeAreHavingSoftTacosLater/README.md) | Lets you bring held, attached, and occupied props through world loads. This is configurable in the mod settings. | No Download |
|
||||||
|
|
||||||
### Experimental Mods
|
### Experimental Mods
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue