Bump 3.1.1

This commit is contained in:
Florian Mounier
2017-05-02 18:12:36 +02:00
parent 96d88a5e91
commit f9a1ff4dea
6 changed files with 13 additions and 6 deletions

View File

@@ -6,8 +6,10 @@ all: install lint check-outdated run-debug
install:
test -d $(VENV) || virtualenv $(VENV)
$(PIP) install --upgrade --no-cache pip setuptools -e .[lint] devcore
$(NPM) install
clean:
rm -fr $(NODE_MODULES)
rm -fr $(VENV)
rm -fr *.egg-info
@@ -22,7 +24,10 @@ run-debug:
sleep 0.5 && $(BROWSER) http://localhost:1212&
$(PYTHON) ./butterfly.server.py --port=1212 --unsecure --debug
release:
build-coffee:
$(NODE_MODULES)/.bin/grunt
release: build-coffee
git pull
$(eval VERSION := $(shell PROJECT_NAME=$(PROJECT_NAME) $(VENV)/bin/devcore bump $(LEVEL)))
git commit -am "Bump $(VERSION)"

View File

@@ -5,3 +5,5 @@ VENV = $(PWD)/.env
PIP = $(VENV)/bin/pip
PYTHON = $(VENV)/bin/python
PYTEST = $(VENV)/bin/py.test
NODE_MODULES = $(PWD)/node_modules
NPM = yarn

View File

@@ -1,5 +1,5 @@
__title__ = "butterfly"
__version__ = "3.1.0"
__version__ = "3.1.1"
__summary__ = "A sleek web based terminal emulator"
__uri__ = "https://github.com/paradoxxxzero/butterfly"

View File

@@ -221,7 +221,7 @@
if (!(e.altKey && e.keyCode === 79)) {
return true;
}
open(location.href);
open(location.origin);
return cancel(e);
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long