diff options
author | Rahul P | 2020-08-02 01:08:05 +0530 |
---|---|---|
committer | GitHub | 2020-08-02 01:08:05 +0530 |
commit | dcfa9968f4bb29fcac2b5b197e0d1db1a8370300 (patch) | |
tree | fd0c9106fc2380f058f334175888726d04abf71b /eSimVersionChange.md | |
parent | f5f3afe6b5ff6af20370e12fd186f81449fd0713 (diff) | |
parent | 23e13dcfb7d8654f5d274c6a9c51b6529d58b057 (diff) | |
download | eSim-dcfa9968f4bb29fcac2b5b197e0d1db1a8370300.tar.gz eSim-dcfa9968f4bb29fcac2b5b197e0d1db1a8370300.tar.bz2 eSim-dcfa9968f4bb29fcac2b5b197e0d1db1a8370300.zip |
Merge pull request #3 from bladen-martin/installers
Updated eSim NSIS script for NGHDL and KiCad; eSim version changes
Diffstat (limited to 'eSimVersionChange.md')
-rw-r--r-- | eSimVersionChange.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/eSimVersionChange.md b/eSimVersionChange.md new file mode 100644 index 00000000..3c119663 --- /dev/null +++ b/eSimVersionChange.md @@ -0,0 +1,39 @@ +# Changes to be made when eSim version is updated + +1. master/VERSION\ +- Change the version number + +2. master/conf.py\ +- Update `release` variable + +3. master/setup.py\ +- Update `version` field in `setup` function + +4. User manual +- Update user manual filename as `eSim_Manual_y.x.pdf` where y.x is the updated version. +- Update path in the following line at `master/src/browser/UserManual.py` with the updated manual name +```python + file = os.path.realpath('library/browser/User-Manual/eSim_Manual_2.0.pdf') +``` + +5. master/src/configuration/Appconfig.py\ +- In function `def __init__ (self)` , update the variable `sel._VERSION` + +6. master/INSTALL\ +- Update the installer file names according to the latest version + +7. installers/Windows/esim-setup-script.nsi\ +- Update the following lines in the script +```nsi +- !define PRODUCT_VERSION "y.x" +- !define VERSION "a.b.c.d" + +- OutFile "eSim-y.x_install.exe" +``` + +8. master/README.md +- Update new features, OS support and other changes that were made in the new version. + + + + |