diff options
author | rahulp13 | 2022-02-22 13:35:10 +0530 |
---|---|---|
committer | rahulp13 | 2022-02-22 13:35:10 +0530 |
commit | 46f8b6c19dbc7857bfac031a6823b3fba88d3ea1 (patch) | |
tree | 48e6c991f4244d3560001f7459e139ec61e4acd6 | |
parent | f163ec557099c8ba6fcf66bfb4c4476c4c4528d5 (diff) | |
download | eSim-46f8b6c19dbc7857bfac031a6823b3fba88d3ea1.tar.gz eSim-46f8b6c19dbc7857bfac031a6823b3fba88d3ea1.tar.bz2 eSim-46f8b6c19dbc7857bfac031a6823b3fba88d3ea1.zip |
Updated version details to v2.2
-rw-r--r-- | INSTALL | 9 | ||||
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | conf.py | 4 | ||||
-rwxr-xr-x | library/tlv/lint_off.txt | 1 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | src/browser/UserManual.py | 2 | ||||
-rw-r--r-- | src/configuration/Appconfig.py | 2 |
8 files changed, 17 insertions, 12 deletions
@@ -14,7 +14,7 @@ Table of contents i. After downloading eSim, extract it using: - $ unzip eSim-2.2_pre-release.zip + $ unzip eSim-2.2.zip ii. Now change directories in to the top-level eSim directory (where this INSTALL file can be found). @@ -43,9 +43,12 @@ Table of contents i. Download eSim for Windows OS from "https://esim.fossee.in/". Disable the antivirus (if any). - ii. Now double click on eSim installer and then follow the instruction to install eSim. + ii. If MinGW and/or MSYS is already installed in your machine, then remove it from the + PATH environment variable as it may interfere with eSim and might not work as intended. - iii. To uninstall eSim and all of its components, run the uninstaller "uninst-eSim.exe" located at + iii. Now double click on eSim installer and then follow the instruction to install eSim. + + iv. To uninstall eSim and all of its components, run the uninstaller "uninst-eSim.exe" located at top-level eSim directory (where this INSTALL file can be found). @@ -33,11 +33,12 @@ To use eSim on your machine having above distributions, please refer to link [he ## Open-Source Softwares Used * [Python](https://www.python.org/) -* [KiCad](https://kicad.org/) -* [NGHDL](https://github.com/fossee/nghdl) +* [KiCad](https://www.kicad.org/) +* [Makerchip](https://www.makerchip.com/) +* [NGHDL](https://github.com/fossee/nghdl/) ## eSim Manual -To know everything about eSim, how it works and it's feature please download the manual from [here](https://static.fossee.in/esim/manuals/eSim_Manual_2.2_pre-release.pdf) +To know everything about eSim, how it works and it's feature please download the manual from [here](https://static.fossee.in/esim/manuals/eSim_Manual_2.2.pdf) ## Contact For any queries regarding eSim please write us on at this [email address](mailto:contact-esim@fossee.in). @@ -1 +1 @@ -2.2 pre-release +2.2 @@ -25,9 +25,9 @@ copyright = u'2022, FOSSEE' author = u'FOSSEE, IIT Bombay' # The short X.Y version -version = u'2.2 pre-release' +version = u'2.2' # The full version, including alpha/beta/rc tags -release = u'2.2.0 pre-release' +release = u'2.2.0' # -- General configuration --------------------------------------------------- diff --git a/library/tlv/lint_off.txt b/library/tlv/lint_off.txt index 5d4b7f0a..e659e188 100755 --- a/library/tlv/lint_off.txt +++ b/library/tlv/lint_off.txt @@ -27,3 +27,4 @@ MODDUP STMTDLY LITENDIAN INITIALDLY + @@ -9,7 +9,7 @@ Needed to define the module structure, look up `Modules` for python ''' setup( name='eSim', - version='2.2.0 pre-release', + version='2.2.0', author='FOSSEE', author_email='contact-esim@fossee.in', package_dir={'': 'src'}, diff --git a/src/browser/UserManual.py b/src/browser/UserManual.py index a3005846..bf9c4b2b 100644 --- a/src/browser/UserManual.py +++ b/src/browser/UserManual.py @@ -14,7 +14,7 @@ class UserManual(QtWidgets.QWidget): self.vlayout = QtWidgets.QVBoxLayout() - manual = 'library/browser/User-Manual/eSim_Manual_2.2-pre_release.pdf' + manual = 'library/browser/User-Manual/eSim_Manual_2.2.pdf' if os.name == 'nt': os.startfile(os.path.realpath(manual)) diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index e41fc218..ab19ada5 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -105,7 +105,7 @@ class Appconfig(QtWidgets.QWidget): # Application Details self._APPLICATION = 'eSim' - self._VERSION = '2.2 pre-release' + self._VERSION = '2.2' self._AUTHOR = 'Fahim' self._REVISION = 'Rahul, Sumanto' |