Blender Git Loki
Git Commits -> Revision 6c9c479
Revision 6c9c479 by Nathan Letwory (blender-v2.83-release, tmp-2.83-cycles-rtx3-kernels) October 7, 2020, 08:22 (GMT) |
Windows Release: Script creation of MSIX package Script create_msix_package.py will download the ZIP file from the given URL. It will create the MSIX package with the version number and publisher ID given. Strongly recommended are the path to a valid PFX file, and the password to use that PFX file. These are needed for signing the resulting MSIX package. The signing step is optional though, but the resulting MSIX package cannot be installed outside of the Microsoft Store Example set VERSION=2.83.2.0 set URL=https://download.blender.org/release/Blender2.83/blender-2.83.2-windows64.zip set PUBID=CN=PUBIDHERE set PFX=X:pathtocert.pfx set PFXPW=pwhere python create_msix_package.py --version %VERSION% --url %URL% --publisher %PUBID% --pfx %PFX% --password %PFXPW% Requirements: * Python default from the Microsoft Store should do (3.8) * requests can be installed with `pip install requests` Note that for an LTS release that gets uploaded to its own LTS application release in the store you need to specify the `--lts` switch on the command-line to the script. Upon completion there will be a file with the name blender-2.83.2.0-windows64.msix. In case PFX file and its password were given on the command line MSIX package will also be signed for the Microsoft Store. Related Wiki page: https://wiki.blender.org/wiki/Process/Release_On_Windows_Store Reviewed By: jbakker Maniphest Tasks: T77348, T79356 Differential Revision: https://developer.blender.org/D8310 |
Commit Details:
Full Hash: 6c9c47904841d729d27393851133dc2764184960
Parent Commit: 23bf3b0
Lines Changed: +276, -0
9 Added Paths:
/release/windows/msix/AppxManifest.xml.template (+60, -0) (View)
/release/windows/msix/Assets/Square150x150Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square310x310Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square44x44Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square71x71Logo.png (+0, -0) (View)
/release/windows/msix/Assets/StoreLogo.png (+0, -0) (View)
/release/windows/msix/Assets/Wide310x150Logo.png (+0, -0) (View)
/release/windows/msix/create_msix_package.py (+135, -0) (View)
/release/windows/msix/README.md (+81, -0) (View)
/release/windows/msix/Assets/Square150x150Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square310x310Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square44x44Logo.png (+0, -0) (View)
/release/windows/msix/Assets/Square71x71Logo.png (+0, -0) (View)
/release/windows/msix/Assets/StoreLogo.png (+0, -0) (View)
/release/windows/msix/Assets/Wide310x150Logo.png (+0, -0) (View)
/release/windows/msix/create_msix_package.py (+135, -0) (View)
/release/windows/msix/README.md (+81, -0) (View)