Skip to content

Commit

Permalink
Merge pull request #41 from andfoy/release_notes_0.1
Browse files Browse the repository at this point in the history
PR: v0.1 Changelog, overview and version update
  • Loading branch information
andfoy committed Apr 12, 2017
2 parents 51433e1 + 06f9ff2 commit adfc844
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
## Version 0.1 (2017/04/02)
## Version 0.1 (2017/04/11)

### Issues Closed

* [Issue 37](https://github.com/spyder-ide/spyder-terminal/issues/37) - Each terminal should be numbered sequentially
* [Issue 34](https://github.com/spyder-ide/spyder-terminal/issues/34) - Terminals should use user-defined fonts
* [Issue 32](https://github.com/spyder-ide/spyder-terminal/issues/32) - Fix text overflow when commands fill all the terminal space
* [Issue 31](https://github.com/spyder-ide/spyder-terminal/issues/31) - Prevent running this plugin if Spyder is using PyQt4
* [Issue 27](https://github.com/spyder-ide/spyder-terminal/issues/27) - Don't hard code port number
* [Issue 24](https://github.com/spyder-ide/spyder-terminal/issues/24) - Add CI Engines and Minor Tests
* [Issue 21](https://github.com/spyder-ide/spyder-terminal/issues/21) - Each terminal instance should be launched on currently opened path
* [Issue 20](https://github.com/spyder-ide/spyder-terminal/issues/20) - Create basic terminal shortcuts
* [Issue 15](https://github.com/spyder-ide/spyder-terminal/issues/15) - Server should start and end with Spyder process
* [Issue 14](https://github.com/spyder-ide/spyder-terminal/issues/14) - Extract Javascript dependencies to a bower.json file
* [Issue 12](https://github.com/spyder-ide/spyder-terminal/issues/12) - Solve security access problem
* [Issue 10](https://github.com/spyder-ide/spyder-terminal/issues/10) - Display xterm terminal inside a QWebView widget
* [Issue 6](https://github.com/spyder-ide/spyder-terminal/issues/6) - Implement basic web bash console using tornado and xterm.js
* [Issue 4](https://github.com/spyder-ide/spyder-terminal/issues/4) - Add project skeleton
* [Issue 3](https://github.com/spyder-ide/spyder-terminal/issues/3) - Write package documentation and description

In this release 7 issues were closed.
In this release 15 issues were closed.

### Pull Requests Merged

* [PR 40](https://github.com/spyder-ide/spyder-terminal/pull/40) - New terminals inherit Spyder current working directory
* [PR 39](https://github.com/spyder-ide/spyder-terminal/pull/39) - Server port is now variable
* [PR 38](https://github.com/spyder-ide/spyder-terminal/pull/38) - Terminal tabs naming convention is sequential
* [PR 36](https://github.com/spyder-ide/spyder-terminal/pull/36) - Plugin import is restricted to PyQt5
* [PR 35](https://github.com/spyder-ide/spyder-terminal/pull/35) - PR: Custom font loading
* [PR 33](https://github.com/spyder-ide/spyder-terminal/pull/33) - Overflow resolution
* [PR 30](https://github.com/spyder-ide/spyder-terminal/pull/30) - PR: Fix tests
* [PR 28](https://github.com/spyder-ide/spyder-terminal/pull/28) - PR: Basic test added
* [PR 26](https://github.com/spyder-ide/spyder-terminal/pull/26) - PR: Documentation and Changelog update
* [PR 25](https://github.com/spyder-ide/spyder-terminal/pull/25) - PR: Server deploys on port 8070 by default
* [PR 23](https://github.com/spyder-ide/spyder-terminal/pull/23) - PR: Added basic shortcuts and menu entries
* [PR 19](https://github.com/spyder-ide/spyder-terminal/pull/19) - Code cleanup: Removed useless font HTML examples
Expand All @@ -27,4 +44,4 @@ In this release 7 issues were closed.
* [PR 7](https://github.com/spyder-ide/spyder-terminal/pull/7) - PR: Web terminal proof-of-concept
* [PR 5](https://github.com/spyder-ide/spyder-terminal/pull/5) - Add plugin template skeleton

In this release 12 pull requests were closed.
In this release 21 pull requests were closed.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Spyder Plugin for displaying a virtual terminal (OS independent) inside the main

This plugin allows you to execute flawlessly any bash command inside spyder, even ncurses applications like ``nano`` or ``vi``.

## Build status
[![CircleCI](https://circleci.com/gh/spyder-ide/spyder-terminal.svg?style=svg)](https://circleci.com/gh/spyder-ide/spyder-terminal)
[![Coverage Status](https://coveralls.io/repos/github/spyder-ide/spyder-terminal/badge.svg?branch=master)](https://coveralls.io/github/spyder-ide/spyder-terminal?branch=master)

## Installation
To install this plugin, you can use either ``pip`` or ``conda`` package managers, as it follows:

Expand All @@ -17,7 +21,7 @@ conda install spyder-terminal
```

## Dependencies
This project depends on [Spyder](https://github.com/spyder-ide/spyder), [Tornado](https://github.com/tornadoweb/tornado), [pexpect](pexpect.sourceforge.net/pexpect.html) and [Coloredlogs](https://github.com/xolox/python-coloredlogs). It also depends on [xterm.js](https://github.com/sourcelair/xterm.js/)
This project depends on [Spyder](https://github.com/spyder-ide/spyder), [Tornado](https://github.com/tornadoweb/tornado), [pexpect](https://pexpect.sourceforge.net/pexpect.html) and [Coloredlogs](https://github.com/xolox/python-coloredlogs). It also depends on [xterm.js](https://github.com/sourcelair/xterm.js/)

## Changelog
Visit our [CHANGELOG](CHANGELOG.md) file to know more about our new features and improvements.
Expand Down
Binary file modified doc/example.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion spyder_terminal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
if PYQT5:
from .terminalplugin import TerminalPlugin as PLUGIN_CLASS

VERSION_INFO = (0, 1, 0, 'dev0')
VERSION_INFO = (0, 1, 0)
__version__ = '.'.join(map(str, VERSION_INFO))

0 comments on commit adfc844

Please sign in to comment.