Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Updated to version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mooshu1x2 committed Jul 29, 2016
1 parent 3b4dc24 commit 470ce34
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 12 deletions.
6 changes: 3 additions & 3 deletions AUTHORS.rst
@@ -1,5 +1,6 @@
UserAle.pyqt5 is written and maintained by Michelle Beard and
various contributors:
.. _authors:

UserAle.pyqt5 is written and maintained by Draper and various contributors:

Development Lead
````````````````
Expand All @@ -12,5 +13,4 @@ Additional Staff
- Laura Mariano <lmariano@draper.com>
- Dr. Joshua Poore <jpoore@draper.com>
- Clay Gimenez <cgimenez@draper.com>
- Steven York <syork@draper.com>
- Hugh Enxing <henxing@draper.com>
25 changes: 22 additions & 3 deletions CHANGELOG.rst
@@ -1,4 +1,23 @@
Version 1.0.0
-------------
.. _changelog:

- Initial commit.
1.0.1 (2016-07-29)
------------------

* All logs will be stored to file called userale.log (configurable).
* Users can specify which events to capture by passing in a list of event keys when instantiating UserAle.
* These are the events UserAle is tracking:

* ``mouseup``
* ``mousedown``
* ``mouseover``
* ``keypress`` (optional)
* ``keydown`` (optional)
* ``dragstart``
* ``dragleave``
* ``dragmove``
* ``dragdrop``

1.0.0 (2016-06-24)
------------------

Initial release.
6 changes: 4 additions & 2 deletions CONTRIBUTING.rst
@@ -1,3 +1,5 @@
.. _contributing:

Contributing to UserAle.pyqt5
-----------------------------

Expand All @@ -8,9 +10,9 @@ procedures are necessary to allow us to allocate resources for reviewing and
testing your contribution, as well as communicate effectively with you during
the review process.

1) Create an issue in our JIRA
1) Create an issue in GitHub

All changes to UserAle must have corresponding issues in JIRA so the
All changes to UserAle must have corresponding issues in GitHub so the
change can be properly tracked:

https://github.com/draperlaboratory/userale.pyqt5/issues
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -3,6 +3,6 @@ UserAle

UserAle.pyqt5 is one of the Software As A Sensor™ products. The goal of Software As A Sensor™ is to develop understanding
of your users through their interactions with your software product. You can then apply that understanding to improve your
product's design and funtionality. UserAle.pyqt5 provides an easy way to generate highly detailed log streams from an PyQT5 application.
product's design and functionality. UserAle.pyqt5 provides an easy way to generate highly detailed log streams from any PyQt5 application.

UserAle.pyqt5 is developed at Draper and released free and open source through the Apache v2.0 license. Bug reports and contributions are welcome through Github.
UserAle.pyqt5 is developed at Draper and released free and open source through the Apache v2.0 license. Bug reports and contributions are welcome through GitHub.
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Expand Up @@ -96,7 +96,7 @@ To build UserAle's documentation, create a directory at the root level of ``/use

::

$ mkdir userale.pyqt5-docs & cd userale.pyqt5/docs
$ mkdir userale.pyqt5-docs & cd userale.pyqt5-docs

Execute build command:

Expand Down
8 changes: 8 additions & 0 deletions docs/source/quickstart.rst
Expand Up @@ -54,3 +54,11 @@ Simply instantiate UserAle and install it as an event filter in your application
ale = Ale (output="mouse.log", user="testUser", version="0.0.1")
# install globally
app.installEventFilter (ale)


Instrumenting Your Application Manually with UserAle
----------------------------------------------------

.. todo::

Write guidelines for instrumenting specific PyQt5 Widgets with UserAle.
2 changes: 1 addition & 1 deletion userale/version.py
Expand Up @@ -18,4 +18,4 @@
and parsed by ``setup.py``.
"""

__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit 470ce34

Please sign in to comment.