[PR #185] [CLOSED] [TEST] Release 2.22 #199

Closed
opened 2026-02-10 18:48:24 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dualshock-tools/dualshock-tools.github.io/pull/185
Author: @carpikes
Created: 12/21/2025
Status: Closed

Base: mainHead: feature/release_2_22


📝 Commits (10+)

  • 6426daf Allow manual deployment from any branch, take 2
  • 5410239 Update GitHub action to allow manual deployment from any branch
  • fc2f250 Make sure the range calibration modal is destroyed when pulling the cable out
  • 935b9be Show power-saving warning in Quick Test modal when battery is low
  • bc7a894 Show not-genuin-sony-controller message also for DS5 when calibration can't be started
  • 3ab97fb Be smarter when resetting circularity data in finetune modal
  • 500ebd7 Allow finetuning with the keyboard arrows
  • 3d2f4cf Improve the unsupported browser warning and clarofy that this utility cannot fix drift
  • 130b4a7 Add option for which center calibration method to use on DS5 and Edge controllers
  • 0cd01c9 Remove the outdated reference to gamepad tester site

📊 Changes

50 files changed (+3570 additions, -670 deletions)

View changed files

📝 .gitignore (+4 -1)
CONTROLLER_API_REFERENCE.md (+874 -0)
📝 assets/icons.svg (+11 -9)
📝 css/main.css (+11 -0)
📝 index.html (+98 -16)
📝 js/controller-manager.js (+79 -15)
📝 js/controllers/base-controller.js (+8 -0)
📝 js/controllers/controller-factory.js (+10 -7)
📝 js/controllers/ds4-controller.js (+23 -16)
📝 js/controllers/ds5-controller.js (+11 -6)
📝 js/controllers/vr2-controller.js (+4 -0)
📝 js/core.js (+293 -44)
js/finetune-history.js (+183 -0)
📝 js/modals/calib-range-modal.js (+175 -27)
js/modals/calibration-history-modal.js (+199 -0)
📝 js/modals/finetune-modal.js (+211 -35)
📝 js/modals/quick-test-modal.js (+43 -22)
📝 js/stick-renderer.js (+2 -2)
js/storage.js (+245 -0)
📝 js/template-loader.js (+2 -1)

...and 30 more files

📄 Description

This PR is just to check changes against master


🔄 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/dualshock-tools/dualshock-tools.github.io/pull/185 **Author:** [@carpikes](https://github.com/carpikes) **Created:** 12/21/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/release_2_22` --- ### 📝 Commits (10+) - [`6426daf`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/6426dafb6db87c01336a2ce8cecb8577625c2ea9) Allow manual deployment from any branch, take 2 - [`5410239`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/5410239dfb60f0b6aae02290e2a1249ef6acf66e) Update GitHub action to allow manual deployment from any branch - [`fc2f250`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/fc2f250739775829c2e226a05ed3d21a927c0759) Make sure the range calibration modal is destroyed when pulling the cable out - [`935b9be`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/935b9be7ee84d1439fef72b35aa32b09071e8c2e) Show power-saving warning in Quick Test modal when battery is low - [`bc7a894`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/bc7a8942b098eced871848416f95745357d05a61) Show not-genuin-sony-controller message also for DS5 when calibration can't be started - [`3ab97fb`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/3ab97fb10f2af07c002496197fd740ee288837b8) Be smarter when resetting circularity data in finetune modal - [`500ebd7`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/500ebd7fb771302aa04d3ba96ff5f31288827273) Allow finetuning with the keyboard arrows - [`3d2f4cf`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/3d2f4cfcd840b3f326d8e6775e726c4a0ada6302) Improve the unsupported browser warning and clarofy that this utility cannot fix drift - [`130b4a7`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/130b4a76a9094a59c3f78a40b309b306257352a8) Add option for which center calibration method to use on DS5 and Edge controllers - [`0cd01c9`](https://github.com/dualshock-tools/dualshock-tools.github.io/commit/0cd01c9f01028d0e3dc45c2ef8aaf0f735a626a1) Remove the outdated reference to gamepad tester site ### 📊 Changes **50 files changed** (+3570 additions, -670 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+4 -1) ➕ `CONTROLLER_API_REFERENCE.md` (+874 -0) 📝 `assets/icons.svg` (+11 -9) 📝 `css/main.css` (+11 -0) 📝 `index.html` (+98 -16) 📝 `js/controller-manager.js` (+79 -15) 📝 `js/controllers/base-controller.js` (+8 -0) 📝 `js/controllers/controller-factory.js` (+10 -7) 📝 `js/controllers/ds4-controller.js` (+23 -16) 📝 `js/controllers/ds5-controller.js` (+11 -6) 📝 `js/controllers/vr2-controller.js` (+4 -0) 📝 `js/core.js` (+293 -44) ➕ `js/finetune-history.js` (+183 -0) 📝 `js/modals/calib-range-modal.js` (+175 -27) ➕ `js/modals/calibration-history-modal.js` (+199 -0) 📝 `js/modals/finetune-modal.js` (+211 -35) 📝 `js/modals/quick-test-modal.js` (+43 -22) 📝 `js/stick-renderer.js` (+2 -2) ➕ `js/storage.js` (+245 -0) 📝 `js/template-loader.js` (+2 -1) _...and 30 more files_ </details> ### 📄 Description This PR is just to check changes against master --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-10 18:48:24 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: dualshock-tools/dualshock-tools.github.io#199