mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6.2 KiB
6.2 KiB
Rebranding Summary: DocuSeal → WaboSign
This document records the changes made when forking DocuSeal into WaboSign. It exists for transparency, to fulfil AGPLv3 §7(b) disclosure expectations, and as a reference for future maintainers tracing why a particular file was touched.
Scope: ~183 files modified. Decisions were made in a planning conversation before changes were applied; the final plan lives at .claude/plans/this-agpl-project-has-toasty-cake.md on the developer's machine.
Brand & identity
- Ruby module
Docuseal→Wabosign(lib/wabosign.rb); Rails app moduleDocuSeal→WaboSign(config/application.rb) - All hardcoded
DocuSealstrings in views, mailers, controllers, libs, JS/Vue replaced withWabosign.product_name(or equivalents) - config/locales/i18n.yml: 168 user-facing strings sweep-replaced across all 14 languages
- New favicons, apple-touch-icons, and logo SVG (a neutral "W" mark) generated via Inkscape
- daisyUI theme renamed
docuseal→wabosignin tailwind.config.js - Discord, Twitter, ChatGPT URLs removed entirely
- New brand constants in lib/wabosign.rb:
PRODUCT_URL = 'https://sign.wabo.cc'GITHUB_URL = 'https://github.com/wabolabs/wabosign'SUPPORT_EMAIL = 'wabosign@wabo.cc'
AGPL §7(b) attribution
Wabosign::UPSTREAM_NAME = 'DocuSeal'andWabosign::UPSTREAM_URLconstants added- app/views/shared/_powered_by.html.erb and app/views/shared/_email_attribution.html.erb now render a "based on DocuSeal (AGPLv3)" credit alongside the WaboSign brand
- app/javascript/submission_form/completed.vue carries the same credit on the post-signing completion screen
- New
based_oni18n key added to all 14 language sections - README.md and LICENSE_ADDITIONAL_TERMS rewritten
- New NOTICE file added crediting DocuSeal LLC and listing modifications
Freemium gates removed
- Pro-upsell placeholders rewritten or neutralised for SMS, SSO, and logo personalisation (these features are not bundled in the upstream OSS edition; the placeholders now explain that rather than advertising a paid tier)
- Bulk-send and reminder placeholders rewritten as neutral info; reminder-duration multitenant gate stripped in app/views/notifications_settings/_reminder_form.html.erb
- "Plans" / "Console" / "Upgrade" links removed from app/views/shared/_settings_nav.html.erb and app/views/shared/_navbar_buttons.html.erb
- Multitenant gates on Decline / Delegate / Personalization toggles, reply-to, BCC, and send-on-completion stripped in app/views/accounts/show.html.erb and app/views/personalization_settings/_documents_copy_email_form.html.erb
- Routes:
timestamp_serveranddetect_fieldsno longer gated bymultitenant?in config/routes.rb - Pricing/upsell links removed from app/javascript/template_builder/conditions_modal.vue, formula_modal.vue, fields.vue, and payment_settings.vue
ENTERPRISE_PATHS404-with-upsell-message removed from app/controllers/errors_controller.rb
Migrations & infrastructure
- New migration db/migrate/20260515183000_rename_docuseal_aatl_cert.rb updates the AATL cert
namefield inside encrypted JSON value blobs fromdocuseal_aatl→wabosign_aatl AATL_CERT_NAMEconstant updated accordingly- Dockerfile: user, group, home directory, and workdir renamed
docuseal→wabosign - docker-compose.yml: image, volume, and Postgres DB name →
ghcr.io/wabolabs/wabosign/wabosign - config/database.yml: dev/test DB names →
wabosign_dev/wabosign_test - .github/workflows/ci.yml and .github/workflows/docker.yml: image name and test DB renamed
docuseal.envconfig file path →wabosign.envin config/dotenv.rb- DOM IDs and localStorage keys renamed
docuseal_*→wabosign_*across app/javascript/template_builder/ - Webhook
USER_AGENTand corresponding spec assertions updated
Intentionally preserved upstream references
Per AGPL §7(b) and downstream SDK compatibility, the following references remain. All are documented in NOTICE.
<docuseal-form>and<docuseal-builder>custom HTML elements, plus the@docuseal/{react,vue,angular}npm packages referenced in app/views/templates/_embedding.html.erb and registered in app/controllers/embed_scripts_controller.rb. Renaming these would break embeddings published against the upstream SDKs.- Upstream binary URLs in Dockerfile and CI:
github.com/docusealco/fields-detection(ONNX model) andgithub.com/docusealco/pdfium-binaries. - DocuSeal LLC copyright notice on the JavaScript calculator port at app/javascript/submission_form/calculator.js.
Verification status
- Ruby syntax-checked all edited
.rbfiles (lib, controllers, mailers, migration) - ERB-compiled the edited view partials
- YAML-parsed
config/locales/i18n.ymlanddocker-compose.yml - JSON-parsed
docs/openapi.json - Webhook spec assertions updated to match new
WaboSign Webhookuser-agent
Full Rails boot requires Ruby 4.0.1, which was not available on the dev machine that performed the rebrand. Recommend running docker compose up --build to verify boot end-to-end before publishing.