LoginSignup
8

More than 5 years have passed since last update.

Handsontable 7.0.0を使う人へ

Posted at

Handsontableのエディション統合

Handsontable7.0.0は6.2.2と大きく変わりました。
まずHandsontable ProはHandsontable Community Editionと統合されてHandsontableは1つだけになりました。

これに伴い、非営利目的以外はライセンスキーを購入しなくてはなりません。
7.0.0に変えるとすぐわかりますがlicenseKeyに何も入れてないと

The license key for Handsontable is missing. Use your purchased key to activate the product. Alternatively, you can activate Handsontable to use for non-commercial purposes by passing the key: 'non-commercial-and-evaluation'. Read more about it in the documentation or contact us at support@handsontable.com.

という文が出ます。地味にこの文は日本語化されてません。

この文を非表示にするにはHandsontableのlicenseKeyオプションを購入したライセンスキーにするか'non-commercial-and-evaluation'にする必要があります。

    hot=new Handsontable(container, { 
    data: data,  
    contextMenu: true,
    language: 'ja-JP', 
    licenseKey:'non-commercial-and-evaluation'
    });

ライセンスの変更

こうなってしまったのはライセンス回りの変更があります。MITライセンスではなくなり、非商用および評価版のみ無償のライセンスになりました。ただ、引継ぎソースは公開されています。

資金が厳しいところがあるようでgithubによるとhttps://github.com/handsontable/handsontable/issues/5831

However, it never developed all the traits of an authentic open source project. In an ideal world, it would gather a community of people collaborating and sharing ideas over a common goal. In such a situation you would expect the open source project to sustain itself with the help of the community. However, this wasn’t the case with Handsontable CE. Essentially, it was kept running thanks to the money earned from Handsontable Pro. Unfortunately, our observation is that the ratio of commercial to free users is about 1 to 25. Hence, the only way for us to keep investing in the product is to convert more free users into paying.
We want to grow as a company whose only mission is to continuously improve Handsontable. We have an ambitious roadmap and a passionate team. What we need is a more balanced business model that would support our long-term goals.

しかし、それは本物のオープンソースプロジェクトのすべての特性を開発したことはありません。 理想的な世界では、共通の目標の上でアイデアをコラボレーションし共有する人々のコミュニティが集まります。 そのような状況では、コミュニティの助けを借りて、オープンソースプロジェクトがそれ自身を支えることを期待するでしょう。 しかし、Handsontable CEの場合はそうではありませんでした。 基本的に、それはHandsontable Proから得たお金のおかげで走り続けました。 残念ながら、コマーシャルとフリーユーザーの比率は1から25です。したがって、フリーユーザーへの投資を継続する唯一の方法は、より多くのフリーユーザーを有料に変換することです。
Handsontableを継続的に向上させることが唯一の使命である企業として成長したいです。 私たちは野心的なロードマップと情熱的なチームを持っています。 私たちが必要としているのは、私たちの長期目標をサポートする、よりバランスのとれたビジネスモデルです。

MITライセンスのグリッドライブラリがまた少なくなってしまうのは悲しいことです。

まとめ

Handsontable6.2.2以前のバージョンなら以前と同じライセンスが適用されるようので、商用利用の方でお金に余裕がないかたはアップデートをしない検討を…

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8