What's new Woocommerce 2021 kit?

Hello,

Where can I find what’s new in the Woocommerce 2021 kit ?

Is what I asked for in this post (Woocommerce 2019 kit wont support variations workbooks) is now supported ?

All downloads for registered users are located at https://www.xlspadlock.com/account
Then choose “Downloads”
Yes, the kit handles variations. You can check the News page for more info.
https://www.xlspadlock.com/news

The previous WooCommerce Kit, also supported variations.
The question is whether there are variations supported by two different workbooks (basic variation and pro variation as I asked here: Woocommerce 2019 kit wont support variations workbooks) ?

Yes, for each workbook, you can define variations now.

I did not find information in the PDF user guide on how define one product with two variation that every variation is a different workbook.

Can you please point me to the page number (in the user guide PDF) or can you please publish here the JSON schema that I need to set.

Thank you

Yes, here for instance:

But I if I have two workbooks I need in the JSON schema two workbook “title” and two “master key” and two “private key” and so on…

something like that:

"products": {
       "31": {
                 "variations": {
                            "32": {
                                    "title": "My workbook title",
                                    "xlspadlockprivatekey": "{}",
                                    "xlspadlockmasterkey": "123",
                                    "usehardwarelocking": 1,
                                    "maxactivperorder": 2,
                                    "keymaxdays": 180,
                                     "shownagscreen": 0
                                    },
                            "33": {
                                    "title": "My workbook title PRO VERSION",
                                    "xlspadlockprivatekey": "{}",
                                    "xlspadlockmasterkey": "456",
                                    "usehardwarelocking": 1,
                                    "maxactivperorder": 2,
                                    "keymaxdays": 180,
                                     "shownagscreen": 0
                                     }
                          }
                  }
           }

}

You can create a product per workbook: for instance below we have two products (10 and 12), each one corresponding to a workbook. You can also have variations (see product 12).

{
	"products": {
		"10": {
			"title": "Your workbook 1 title",
			"xlspadlockprivatekey": "{Your workbook 1 private key}",
			"xlspadlockmasterkey": "Your workbook 1 master key",
			"variations": {
				"0": {
					"usehardwarelocking": 1,
					"maxactivperorder": 2,
					"keymaxdays": 180,
					"shownagscreen": 0
				}
			}
		},
		"12": {
			"title": "Just a demo, remove me in production",
			"xlspadlockprivatekey": "{6363CDED-4E14-412A-8196-5A52C356D6CD}",
			"xlspadlockmasterkey": "14JFGDBFG784GKLGSJSG121QSFB",
			"variations": {
				"14": {
					"usehardwarelocking": 1,
					"maxactivperorder": 2,
					"shownagscreen": 0
				},
				"15": {
					"usehardwarelocking": 1,
					"keyexpiredate": "2019/10/21",
					"maxactivperorder": 3,
					"shownagscreen": 1
				}
			}
		}
	}
}