Changeset c6abc0c in OpenWorkouts-current


Ignore:
Timestamp:
Feb 13, 2019, 10:47:59 AM (5 years ago)
Author:
Borja Lopez <borja@…>
Branches:
current, feature/docs, master
Children:
57dcceb
Parents:
c660deb
Message:

Preparations for release of 0.1.0:

  • Updated README file with a brief description of the project + install instructions
  • Added LICENSE (3-clause BSD license)
  • Added AUTHORS file, with a list of authors and people contributing
  • Updated the CHANGES.txt changelog file
  • Set version on setup.py
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGES.txt

    rc660deb rc6abc0c  
    1 0.0
    2 ---
     1OpenWorkouts Changelog
     2======================
    33
    4 - Initial version.
     4.. contents::
     5
     6
     7Release summary
     8---------------
     9
     100.1.0, February 15, 2019:
     11       Initial release, includes signup/login + per-user complete workout
     12       management and an initial set of stats.
     13
     14Release details
     15---------------
     16
     170.1.0
     18+++++
     19
     20- New:
     21
     22  - User signup and login, password reset and basic user profile management
     23
     24  - Multi-sport workouts support
     25
     26    - Add workouts manually or upload using tracking files (gpx and fit
     27      supported)
     28
     29    - Edit/update workouts manually or with tracking files
     30
     31  - Time-based archive for workouts in the user dashboard
     32
     33  - Time-based (global, per-month, per-week) stats and charts
     34
     35  - Detailed view of a workout, including basic workout info, stats and
     36    an interactive map for those workouts with gps data
  • README.txt

    rc660deb rc6abc0c  
    22============
    33
    4 TBW, if you look for installation instructions, take a look at the script
    5 bin/install
     4.. contents::
     5
     6
     7What is it?
     8-----------
     9
     10OpenWorkouts is a web app for tracking workouts.
     11
     12Some highlights:
     13
     14- Add workouts manually or upload them from gps/tracker files (gpx and fit
     15  supported currently)
     16
     17- Time-based archive to access your workouts
     18
     19- Detailed view of each workout, including overview data (speed, distance,
     20  time, hr, power, etc), charts and an interactive map view for those
     21  workouts with gps tracking information
     22
     23- Tools to edit or update workouts from new gps/tracker files
     24
     25- Global stats (totals for distance, time, etc) and per-month, per-week
     26  stats
     27
     28- Personal profile data containing basic info
     29
     30
     31Install
     32-------
     33
     34Quick and easy, the install script
     35++++++++++++++++++++++++++++++++++
     36
     37The easies way to install is to grab a copy of the source code and run the
     38install script.
     39
     40You can get the sources using git, cloning the main repository from this
     41url::
     42
     43  https://openworkouts.org/sources/OpenWorkouts
     44
     45Once you have the sources, you can run the install script from a
     46terminal/console::
     47
     48  ./bin/install
     49
     50If you don't have any of the needed dependencies, the script will tell you.
     51Once everything is installed, you will see a message on screen telling you
     52how to start the app.
  • setup.py

    rc660deb rc6abc0c  
    4545setup(
    4646    name='ow',
    47     version='0.1',
     47    version='0.1.0',
    4848    description='OpenWorkouts, tracking your workouts openly',
    4949    long_description=README + '\n\n' + CHANGES,
Note: See TracChangeset for help on using the changeset viewer.