antigravity-rtl-patcher 3.0.1 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/patcher.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antigravity-rtl-patcher",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Advanced RTL and Persian/Arabic typography patcher for Antigravity with customizable UI",
5
5
  "main": "src/patcher.js",
6
6
  "bin": {
package/src/patcher.js CHANGED
@@ -23,7 +23,8 @@ async function isAlreadyPatched(extractDir) {
23
23
  }
24
24
 
25
25
  const content = await fs.readFile(utilsPath, 'utf-8');
26
- return content.includes(PATCH_MARKER);
26
+ // Always return false to force re-patching with new version
27
+ return false;
27
28
  }
28
29
 
29
30
  /**