diff --git a/Makefile b/Makefile index 9de3e463..ac602a3f 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ APP=pybitmessage -VERSION=0.3.3-2 +VERSION=0.3.4 DEST_SHARE=$(DESTDIR)/usr/share DEST_APP=$(DEST_SHARE)/$(APP) @@ -18,6 +18,7 @@ install: mkdir -m 755 -p $(DEST_APP)/pyelliptic mkdir -m 755 -p $(DEST_APP)/socks mkdir -m 755 -p $(DEST_APP)/bitmessageqt + mkdir -m 755 -p $(DEST_APP)/translations mkdir -m 755 -p $(DEST_SHARE)/pixmaps mkdir -m 755 -p $(DEST_SHARE)/icons mkdir -m 755 -p $(DEST_SHARE)/icons/hicolor @@ -35,6 +36,7 @@ install: install -m 644 src/pyelliptic/*.py $(DEST_APP)/pyelliptic install -m 644 src/socks/*.py $(DEST_APP)/socks install -m 644 src/bitmessageqt/*.py $(DEST_APP)/bitmessageqt + install -m 644 src/translations/*.qm $(DEST_APP)/translations install -m 755 debian/pybm $(DESTDIR)/usr/bin/$(APP) install -m 644 desktop/$(APP).desktop $(DEST_SHARE)/applications/$(APP).desktop diff --git a/debian.sh b/debian.sh index 42817522..4b9410ed 100755 --- a/debian.sh +++ b/debian.sh @@ -7,8 +7,8 @@ #!/bin/bash APP=pybitmessage -PREV_VERSION=0.3.2 -VERSION=0.3.3-2 +PREV_VERSION=0.3.3 +VERSION=0.3.4 ARCH_TYPE=all #update version numbers automatically - so you don't have to diff --git a/src/build_osx.py b/src/build_osx.py index db004769..aac551b9 100644 --- a/src/build_osx.py +++ b/src/build_osx.py @@ -14,7 +14,7 @@ from setuptools import setup # @UnresolvedImport name = "Bitmessage" mainscript = 'bitmessagemain.py' -version = "0.3.3" +version = "0.3.4" if sys.platform == 'darwin': extra_options = dict( diff --git a/src/shared.py b/src/shared.py index 22c3b9f6..4b3ef73b 100644 --- a/src/shared.py +++ b/src/shared.py @@ -1,4 +1,4 @@ -softwareVersion = '0.3.3-2' +softwareVersion = '0.3.4' verbose = 1 maximumAgeOfAnObjectThatIAmWillingToAccept = 216000 # Equals two days and 12 hours. lengthOfTimeToLeaveObjectsInInventory = 237600 # Equals two days and 18 hours. This should be longer than maximumAgeOfAnObjectThatIAmWillingToAccept so that we don't process messages twice.