Compare commits

..

No commits in common. "main" and "r50" have entirely different histories.
main ... r50

7 changed files with 39 additions and 46 deletions

View file

@ -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 2026r182", "changelog": "- Fixes for CVR 2026r182",
"embedcolor": "#f61963" "embedcolor": "#f61963"
} }

View file

@ -1,17 +1,11 @@
# AutoAccept # Tinyboard
Small invite tweaks to make them less annoying. Makes the keyboard small and smart.
**Features:** Few small tweaks to the keyboard:
- Invite Modes in Friends tab: - Shrinks the keyboard to a size that isn't fit for grandma.
- Ask: Sends the invite to the Messages tab - Adjusts keyboard placement logic to align with the menu that it spawns from.
- All: Auto-accepts invites from any friend - Enforces a title on the keyboard input if one is not found.
- 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.
--- ---

View file

@ -1,23 +1,23 @@
{ {
"_id": -1, "_id": 264,
"name": "AutoAccept", "name": "Tinyboard",
"modversion": "1.0.0", "modversion": "1.0.1",
"gameversion": "2026r182", "gameversion": "2025r181",
"loaderversion": "0.7.2", "loaderversion": "0.7.2",
"modtype": "Mod", "modtype": "Mod",
"author": "NotAKidoS", "author": "NotAKidoS",
"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.", "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.",
"searchtags": [ "searchtags": [
"invites", "keyboard",
"joinme", "menu",
"auto", "ui",
"request" "input"
], ],
"requirements": [ "requirements": [
"None" "None"
], ],
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/AutoAccept.dll", "downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r48/Tinyboard.dll",
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/AutoAccept/", "sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/Tinyboard/",
"changelog": "- Initial release", "changelog": "- Rebuilt for CVR 2025r181",
"embedcolor": "#f61963" "embedcolor": "#f61963"
} }

View file

@ -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.2"; public const string Version = "1.0.1";
public const string Author = "NotAKidoS"; public const string Author = "NotAKidoS";
} }

View file

@ -1,8 +1,8 @@
{ {
"_id": 283, "_id": -1,
"name": "ChatBoxHud", "name": "ChatBoxHud",
"modversion": "1.0.2", "modversion": "1.0.1",
"gameversion": "2026r182", "gameversion": "2026r181",
"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/r50/ChatBoxHud.dll", "downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r49/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": "- Rebuilt for 2026r182", "changelog": "- Changed username color to use emission player color",
"embedcolor": "#f61963" "embedcolor": "#f61963"
} }

View file

@ -9,7 +9,6 @@
</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" />

View file

@ -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): | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/ASTExtension.dll) | | [ASTExtension](ASTExtension/README.md) | Extension mod for [Avatar Scale Tool](https://github.com/NotAKidoS/AvatarScaleTool): | 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) | | [AutoAccept](AutoAccept/README.md) | Makes the keyboard small and smart. | No Download |
| [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) | | [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) |
| [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) | | [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 |
| [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. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/DesktopInteractions.dll) | | [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 |
| [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. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/DoubleTapJumpToExitSeat.dll) | | [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 |
| [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. | [Download](https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r50/FuckToes.dll) | | [FuckToes](FuckToes/README.md) | Prevents VRIK from autodetecting toes in Halfbody or Fullbody. | 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) | | [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 |
| [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) | | [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 |
| [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) | | [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 |
| [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) | | [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 |
| [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) | | [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 |
| [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) | | [SmootherRay](SmootherRay/README.md) | Smoothes your controller while the raycast lines are visible. | 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) | | [Tinyboard](Tinyboard/README.md) | Makes the keyboard small and smart. | 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 | | [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