Skip to content

Commit

Permalink
Update README and bump version to 1.0.0dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 25, 2019
1 parent 301b9bc commit a885969
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,44 @@ URLs can include the following parameters:
**Packet capture**

`gns3+pcap://localhost:3080?project_id=d991dbc0-b98f-42aa-88b2-288170cca9c7&link_id=5c7f5285-ba2f-4ff6-8741-d1a77324441a&name=MyPacketCapture`

## Installation

### Windows

Use the provided installer. Protocol handlers are registered during the installation.

### macOS

Drag and drop the app from the DMG into /Applications. Start the app at least once the register the protocol handlers.

### Linux (Debian package)

**ONLY FOR UBUNTU 18.04 AT THE MOMENT**

You can install gns3-webclient-pack from our official [PPA](https://launchpad.net/~gns3/+archive/ubuntu/unstable):


```
sudo add-apt-repository ppa:gns3/unstable
sudo apt-get update
sudo apt-get install gns3-webclient-pack
```

or download .deb packages from [here](https://launchpad.net/~gns3/+archive/ubuntu/unstable/+packages).

The Debian package will install all dependencies including telnet, vinagre, virt-viewer and wireshark.

### Linux (Pypi package)

pip3 install gns3-webclient-pack

You may have to manually install dependencies including telnet, vinagre, virt-viewer and wireshark.

### Linux script installation

Alternatively, you can install gns3-webclient-pack from terminal using the following command:

wget -qO- https://raw.githubusercontent.com/GNS3/gns3-webclient-pack/master/install.sh | sh

This method should work on most Linux distros. Please open an new issue if this is not the case.
4 changes: 2 additions & 2 deletions gns3_webclient_pack/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "1.0.0b1"
__version_info__ = (1, 0, 0, -99)
__version__ = "1.0.0dev2"
__version_info__ = (1, 0, 0, 99)

# Add the commit ID if this is a development version
if "dev" in __version__:
Expand Down

0 comments on commit a885969

Please sign in to comment.