Files
formipay/node_modules/gettext-parser/CHANGELOG.md
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

2.2 KiB

Change Log

1.4.0 - 2018-02-19

  • Fixed catastrophic backtracking vulnerability in line folding regex (thx @davisjam).
  • Added sort option for PO compilation (thx @AlexMost).

1.3.0 - 2017-08-03

  • Added line folding length option to po.compile (thx @SleepWalker).
  • Updated code to use new buffer API.

1.2.2 - 2017-01-11

  • Use semistandard coding style.
  • Removed unreachable code (thx @jelly).
  • Replace grunt with npm scripts.
  • Replace jshint with eslint.

1.2.1 - 2016-11-26

  • Fix typo in readme (thx @TimKam).
  • New project maintainer.

1.2.0 - 2016-06-13

  • Fix compilation of plurals when msgstr only contains one element (thx @maufl).
  • Fix example in readme (thx @arthuralee).

1.1.2 - 2015-10-07

  • Update dependencies.

1.1.1 - 2015-06-04

  • Fixed hash table location value in compiled mo files

1.1.0 - 2015-01-21

  • Added po.createParseStream method for parsing PO files from a Stream source
  • Updated documentation

1.0.0 - 2015-01-21

  • Bumped version to 1.0.0 to be compatible with semver
  • Changed tests from nodeunit to mocha
  • Unified code style in files and added jshint task to check it
  • Added Grunt support to check style and run tests on npm test

0.2.0 - 2013-12-30

  • Removed node-iconv dependency
  • Fixed a global variable leak (line was not defined in pocompiler._addPOString)
  • Some code maintenance (applied jshint rules, added "use strict" statements)
  • Updated e-mail address in .travis.yml
  • Added CHANGELOG file