Skip to content

Commit

Permalink
Version Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfthefallen committed May 17, 2016
1 parent 0c0c218 commit e63aad6
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/source/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ Version 1.x.x
Version 1.3.0
^^^^^^^^^^^^^

*In Progress*
Released :release:`1.3.0` on May 17th, 2016

* Added automatic setup of PostgreSQL database for the server
* Server bug fixes when running on non-standard HTTP ports
* Added completion to the messaged editor
* Support for plugins in the client application
* Add a client plugin to automatically check for updates
* Added a client plugin to automatically check for updates
* Added a client plugin to generate anonmous statistics
* Added debug logging of parameters for key RPC methods
* Lots of Python 3.x compatiblity fixes

Expand Down
17 changes: 17 additions & 0 deletions docs/source/windows_build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,20 @@ with Python, the "tools/build_msi.bat" script can be executed to create the
build. The build process will take a few minutes, but once completed an MSI
installer file will be created in a new "dist" directory in the projects root
folder.

Version Information
-------------------

After building the MSI file you will need to add custom properties.
By right clicking on the MSI file, select properties, and then the
custom tab you can add custom fields. You will need to add
the Python Version, and PyGI-AIO version utilized in making the build
as text entries. Below is the name fields and example values.

+--------------------------------+---------------------------------+
| Name | Example Value |
+================================+=================================+
| Python Version | 2.7.11 |
+--------------------------------+---------------------------------+
| PyGI-AIO Version | 3.14.0 rev22 |
+--------------------------------+---------------------------------+
2 changes: 1 addition & 1 deletion king_phisher/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_revision():
version_info = collections.namedtuple('version_info', ['major', 'minor', 'micro'])(1, 3, 0)
"""A tuple representing the version information in the format ('major', 'minor', 'micro')"""

version_label = 'beta'
version_label = ''
"""A version label such as alpha or beta."""
version = "{0}.{1}.{2}".format(version_info.major, version_info.minor, version_info.micro)
"""A string representing the full version information."""
Expand Down
13 changes: 11 additions & 2 deletions tools/cx_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
'libdbus-1-3.dll',
'libdbus-glib-1-2.dll',
'libenchant-1.dll',
'lib\enchant\libenchant_myspell.dll',
'lib\enchant\libenchant_voikko.dll',
'lib\enchant\libenchant_ispell.dll',
'libffi-6.dll',
'libfontconfig-1.dll',
'libfreetype-6.dll',
Expand All @@ -75,6 +78,7 @@
'libgsttag-1.0-0.dll',
'libgstvideo-1.0-0.dll',
'libgtk-3-0.dll',
'libgtksourceview-3.0-1.dll',
'libgnutls-26.dll',
'libgconf-2-4.dll',
'libharfbuzz-gobject-0.dll',
Expand All @@ -92,6 +96,7 @@
'librsvg-2-2.dll',
'libsoup-2.4-1.dll',
'libsqlite3-0.dll',
'libtiff-5.dll',
'libwebkitgtk-3.0-0.dll',
'libwebp-5.dll',
'libwinpthread-1.dll',
Expand Down Expand Up @@ -137,8 +142,12 @@
'matplotlib',
'mpl_toolkits',
'msgpack',
'paramiko'
]
'paramiko',
'pkg_resources',
'pluginbase',
'smoke_zephyr',
],
excludes=['collections.abc']
)

setup(
Expand Down

0 comments on commit e63aad6

Please # to comment.