Skip to content

Commit

Permalink
#6 Add a brief description to the README
Browse files Browse the repository at this point in the history
  • Loading branch information
MGHollander committed Jun 22, 2020
1 parent 779604f commit 5c0630c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

A Chrome extension to edit multiple Strava activities at once.

The extension adds a title to the activity filter panel, and an update panel
below the activity panel. It will go through all filtered activities and
update then one by one.

![screenshot](src/images/screenshot-1280x800-google-chrome-1.png)

## Official Releases
Expand All @@ -11,8 +15,6 @@ A Chrome extension to edit multiple Strava activities at once.
## Usage

Visit the [My Activities page on Strava.com](https://www.strava.com/athlete/training).
The extension will add an update panel below the activity filters. It will also
add a title to the filter panel.

Use the filters to select the activities you want to edit. Choose the
privacy setting to apply to the selected activities. Click the "Update activities"
Expand Down
9 changes: 6 additions & 3 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ cd "$(cd -P -- "$(dirname -- "$0")" && pwd -P)/.." || exit 1

if [ ! -d build ]; then
log "Create a build directory"
mkdir build
mkdir build || exit 1
else
log "Empty the build directory"
rm -r build/*
rm -r build/* || exit 1
fi

log "Go to extension dir"
cd src/extension || exit 1

log "Create an archive to release"
zip -r -j "build/strava-bulk-edit-$(date +'%Y-%m-%d-%H-%M-%S').zip" src/extension
zip -r "../../build/strava-bulk-edit-$(date +'%Y-%m-%d-%H-%M-%S').zip" . || exit 1

log "========= End of build ========="

0 comments on commit 5c0630c

Please sign in to comment.