[PR #403] [MERGED] feat: single player mode #944

Closed
opened 2026-02-26 19:31:09 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/403
Author: @Mythie
Created: 9/24/2023
Status: Merged
Merged: 9/25/2023
Merged by: @Mythie

Base: feat/refreshHead: feat/single-player-mode


📝 Commits (10+)

  • 4b8aa32 feat: add single player mode
  • 1c629af fix: timeout issues
  • 7eed5c7 feat: utilise transport layer
  • dc49277 feat: add uninserted field validation
  • 989d7a3 feat: add uninserted field validation
  • 764c6b8 feat: update success page text
  • 8012d66 fix: firefox signing fields
  • c9f5496 Merge remote-tracking branch 'origin/feat/refresh' into feat/single-player-mode
  • d4bc1eb fix: cors for feature flags
  • 63cc57b fix: improve dark mode background patterns

📊 Changes

103 files changed (+2914 additions, -439 deletions)

View changed files

📝 .env.example (+1 -1)
📝 apps/marketing/next.config.js (+5 -1)
📝 apps/marketing/package.json (+2 -0)
📝 apps/marketing/src/app/(marketing)/layout.tsx (+23 -3)
📝 apps/marketing/src/app/(marketing)/open/page.tsx (+1 -1)
📝 apps/marketing/src/app/(marketing)/oss-friends/page.tsx (+1 -1)
📝 apps/marketing/src/app/(marketing)/pricing/page.tsx (+1 -1)
apps/marketing/src/app/(marketing)/single-player-mode/[token]/success/page.tsx (+30 -0)
apps/marketing/src/app/(marketing)/single-player-mode/page.tsx (+244 -0)
📝 apps/marketing/src/app/layout.tsx (+25 -6)
📝 apps/marketing/src/app/not-found.tsx (+1 -1)
apps/marketing/src/assets/signing-celebration.png (+0 -0)
📝 apps/marketing/src/components/(marketing)/claim-plan-dialog.tsx (+6 -1)
apps/marketing/src/components/(marketing)/confetti-screen.tsx (+46 -0)
📝 apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx (+1 -1)
📝 apps/marketing/src/components/(marketing)/footer.tsx (+1 -0)
📝 apps/marketing/src/components/(marketing)/header.tsx (+25 -9)
📝 apps/marketing/src/components/(marketing)/hero.tsx (+47 -19)
📝 apps/marketing/src/components/(marketing)/mobile-navigation.tsx (+4 -0)
📝 apps/marketing/src/components/(marketing)/open-build-template-bento.tsx (+1 -1)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/documenso/documenso/pull/403 **Author:** [@Mythie](https://github.com/Mythie) **Created:** 9/24/2023 **Status:** ✅ Merged **Merged:** 9/25/2023 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `feat/refresh` ← **Head:** `feat/single-player-mode` --- ### 📝 Commits (10+) - [`4b8aa32`](https://github.com/documenso/documenso/commit/4b8aa3298b83071c3bb6db1bc3eb1b3ce20cb213) feat: add single player mode - [`1c629af`](https://github.com/documenso/documenso/commit/1c629af6510634ef8c20d7c6842131847e4ff8d4) fix: timeout issues - [`7eed5c7`](https://github.com/documenso/documenso/commit/7eed5c7c96d77b95bd935280c55061f59294588a) feat: utilise transport layer - [`dc49277`](https://github.com/documenso/documenso/commit/dc49277bf92a490fd5d9504fd7aa57da18e0f58b) feat: add uninserted field validation - [`989d7a3`](https://github.com/documenso/documenso/commit/989d7a351fedd62773bf94a90e1653924ea16725) feat: add uninserted field validation - [`764c6b8`](https://github.com/documenso/documenso/commit/764c6b88c5c02bf04e954d60c1b153539815b13c) feat: update success page text - [`8012d66`](https://github.com/documenso/documenso/commit/8012d665ae4598aa536f8319bc7da74dc418d660) fix: firefox signing fields - [`c9f5496`](https://github.com/documenso/documenso/commit/c9f5496acb1b3847ed00bd32aebc050c829e349b) Merge remote-tracking branch 'origin/feat/refresh' into feat/single-player-mode - [`d4bc1eb`](https://github.com/documenso/documenso/commit/d4bc1eb0d1c9fa3e83fb34d6a1622705df466723) fix: cors for feature flags - [`63cc57b`](https://github.com/documenso/documenso/commit/63cc57b035938bf9cceefbc697ce604838fa2bcb) fix: improve dark mode background patterns ### 📊 Changes **103 files changed** (+2914 additions, -439 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+1 -1) 📝 `apps/marketing/next.config.js` (+5 -1) 📝 `apps/marketing/package.json` (+2 -0) 📝 `apps/marketing/src/app/(marketing)/layout.tsx` (+23 -3) 📝 `apps/marketing/src/app/(marketing)/open/page.tsx` (+1 -1) 📝 `apps/marketing/src/app/(marketing)/oss-friends/page.tsx` (+1 -1) 📝 `apps/marketing/src/app/(marketing)/pricing/page.tsx` (+1 -1) ➕ `apps/marketing/src/app/(marketing)/single-player-mode/[token]/success/page.tsx` (+30 -0) ➕ `apps/marketing/src/app/(marketing)/single-player-mode/page.tsx` (+244 -0) 📝 `apps/marketing/src/app/layout.tsx` (+25 -6) 📝 `apps/marketing/src/app/not-found.tsx` (+1 -1) ➕ `apps/marketing/src/assets/signing-celebration.png` (+0 -0) 📝 `apps/marketing/src/components/(marketing)/claim-plan-dialog.tsx` (+6 -1) ➕ `apps/marketing/src/components/(marketing)/confetti-screen.tsx` (+46 -0) 📝 `apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx` (+1 -1) 📝 `apps/marketing/src/components/(marketing)/footer.tsx` (+1 -0) 📝 `apps/marketing/src/components/(marketing)/header.tsx` (+25 -9) 📝 `apps/marketing/src/components/(marketing)/hero.tsx` (+47 -19) 📝 `apps/marketing/src/components/(marketing)/mobile-navigation.tsx` (+4 -0) 📝 `apps/marketing/src/components/(marketing)/open-build-template-bento.tsx` (+1 -1) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 19:31:09 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#944
No description provided.