summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBladen Martin2020-07-31 11:13:03 +0530
committerGitHub2020-07-31 11:13:03 +0530
commit207fa5ba56613331d605700b9bab9e87bf6bb94f (patch)
tree064b5802e4cdc328e9799b77714fa514139fcba3
parent76cbadc71587f8047e118f5e7a932221f083cb73 (diff)
downloadeSim-207fa5ba56613331d605700b9bab9e87bf6bb94f.tar.gz
eSim-207fa5ba56613331d605700b9bab9e87bf6bb94f.tar.bz2
eSim-207fa5ba56613331d605700b9bab9e87bf6bb94f.zip
Changes to be made when eSim version changes
-rw-r--r--eSimVersionChange.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/eSimVersionChange.md b/eSimVersionChange.md
new file mode 100644
index 00000000..cd43d36b
--- /dev/null
+++ b/eSimVersionChange.md
@@ -0,0 +1,39 @@
+# Changes 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 chnages that were made in the new version.
+
+
+
+