diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | conf.py | 4 | ||||
-rw-r--r-- | library/browser/User-Manual/eSim.html | 5 | ||||
-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, 13 insertions, 12 deletions
@@ -39,7 +39,7 @@ Table of contents -2. eSim installation in Windows OS +2. eSim 2.4 installation in Windows OS i. Download eSim for Windows OS from "https://esim.fossee.in/". Disable the antivirus (if any). @@ -15,8 +15,8 @@ It is an integrated tool build using open source softwares such as KiCad, Ngspic ## Releases and Installation eSim is released for the following distributions (operating systems): -* Ubuntu 18.04 and 20.04 LTS versions. -* Microsoft Windows 8 and 10. +* Ubuntu 18.04, 20.04 LTS versions. +* Microsoft Windows 8, 10 and 11. To use eSim on your machine having above distributions, please refer to link [here](https://esim.fossee.in/downloads) for installation and other guidelines. @@ -39,7 +39,7 @@ To use eSim on your machine having above distributions, please refer to link [he * [SkyWater SKY130 PDK](https://skywater-pdk.rtfd.io/) ## 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.3.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.4.pdf) ## Contact For any queries regarding eSim please write us on at this [email address](mailto:contact-esim@fossee.in). @@ -1 +1 @@ -2.3 +2.4 @@ -25,9 +25,9 @@ copyright = u'2022, FOSSEE' author = u'FOSSEE, IIT Bombay' # The short X.Y version -version = u'2.2' +version = u'2.4' # The full version, including alpha/beta/rc tags -release = u'2.2.0' +release = u'2.4.0' # -- General configuration --------------------------------------------------- diff --git a/library/browser/User-Manual/eSim.html b/library/browser/User-Manual/eSim.html index 79afa31e..712ecbaf 100644 --- a/library/browser/User-Manual/eSim.html +++ b/library/browser/User-Manual/eSim.html @@ -28,7 +28,7 @@ src="figures/logo-trimmed.png" alt="PIC" <span class="cmbx-12x-x-144">eSim User Manual</span><br /> <span -class="cmr-10">version 1.0.0</span><br /> +class="cmr-10">version 2.4.0</span><br /> <span class="cmbx-10">Prepared By:</span><br /> <span @@ -3565,7 +3565,8 @@ href="http://www.scilab.org/" class="url" >http://www.scilab.org/</a> [4]<span class="bibsp">   </span></span><a id="XGARUDA"></a>(2013, May). [Online]. Available: <a -href="http://scilab-test.garudaindia.in/scilab_in/,
http://scilab-test.garudaindia.in/cloud" class="url" >http://scilab-test.garudaindia.in/scilab_in/,http://scilab-test.garudaindia.in/cloud</a> +href="http://scilab-test.garudaindia.in/scilab_in/, + http://scilab-test.garudaindia.in/cloud" class="url" >http://scilab-test.garudaindia.in/scilab_in/,http://scilab-test.garudaindia.in/cloud</a> </p> <p class="bibitem" ><span class="biblabel"> [5]<span class="bibsp">   </span></span><a @@ -9,7 +9,7 @@ Needed to define the module structure, look up `Modules` for python ''' setup( name='eSim', - version='2.3.0', + version='2.4.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 5f12bdc0..4ac78825 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.3.pdf' + manual = 'library/browser/User-Manual/eSim_Manual_2.4.pdf' if os.name == 'nt': os.startfile(os.path.realpath(manual)) diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index 4decf0b6..6cf8cc30 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -91,7 +91,7 @@ class Appconfig(QtWidgets.QWidget): # Application Details self._APPLICATION = 'eSim' - self._VERSION = '2.3' + self._VERSION = '2.4' self._AUTHOR = 'Fahim' self._REVISION = 'Rahul, Sumanto' |