Skip to content

Commit

Permalink
Merge branch 'release/0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Aug 20, 2019
2 parents 1969076 + a5ddc7b commit ed818ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changes/0.0.5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"description": "Ensure we use the proper blueprint in our templates",
"type": "patch"
}
]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.0.5

- patch: Ensure we use the proper blueprint in our templates

## 0.0.4

- patch: Ensure the MANIFEST contains the templates, scripts and styles
Expand Down
4 changes: 2 additions & 2 deletions flask_beet/templates/beet/login-form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script type="text/javascript" src="{{url_for('.beet_js')}}"></script>
<script type="text/javascript" src="{{url_for('beet.beet_js')}}"></script>
<script type="text/javascript">
function connectBeet() {
beet.get("{{app.config.get('BEET_APP_NAME')}}", "BTS").then(beet => {
Expand All @@ -19,7 +19,7 @@
<form class="ui form" id="beetLogin" method="POST">
{{ loginForm.csrf_token }}
<button class="ui basic button" value="Beet" onclick="connectBeet()" type="button">
<h2 class="ui header"><img class="image icon" src="{{url_for('.beet_logo')}}"/>
<h2 class="ui header"><img class="image icon" src="{{url_for('beet.beet_logo')}}"/>
<div class="content">Login
<div class="sub header">with Beet</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup

__version__ = "0.0.3"
__version__ = "0.0.4"

setup(
name="Flask-Beet",
Expand Down

0 comments on commit ed818ed

Please sign in to comment.