Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 1.29 KB

framework-changelog.md

File metadata and controls

55 lines (34 loc) · 1.29 KB

Framework changelog

Version 1.14

  • PR-3011

    utils.callAction is removed in favor of kord module wrapper.

    Old code:

      import utils from '../core/utils';
    
      utils.callAction('core', 'queryCliqz', ['some query']);

    New code:

      import inject from '../core/kord/inject';
    
      const core = inject.module('core');
      core.action('queryCliqz', 'some query');
  • PR-3034

    utils.callWindowAction is removed in favor of kord module wrapper.

    Old code:

      import utils from '../core/utils';
    
      utils.callWindowAction(window, 'control-center', 'setBadge', [17]);

    New code:

      import inject from '../core/kord/inject';
    
      const controlCenter = inject.module('control-center');
      controlCenter.windowAction(window, 'setBadge', 17);

Version 1.18

  • PR-3596

    Improvements to build system:

    • broccoli updated to 1.x (it is faster and compatible with new plugins)
    • babel updated to 6.x (better error reporting and ability to use presets)
    • build supports jsx compilation