Skip to content

Commit 6ff3530

Browse files
committed
Merge branch 'release-1.2b3'
2 parents ebd553f + 027b7d9 commit 6ff3530

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+391
-175
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ runserver:
5252
# Clean build files
5353
clean:
5454
find . -name "*.pyc" -print0 | xargs -0 rm -rf
55+
find . -name "__pycache__" -print0 | xargs -0 rm -rf
5556
-rm -rf htmlcov
5657
-rm -rf .coverage
5758
-rm -rf build

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,21 @@ The release versions that are sent to the Python package index (PyPI) are also t
107107

108108
The versioning uses a three part version system, "a.b.c" - "a" represents a major release that may not be backwards compatible. "b" is incremented on minor releases that may contain extra features, but are backwards compatible. "c" releases are bug fixes or other micro changes that developers should feel free to immediately update to.
109109

110+
### Version 1.2 Beta 3
111+
112+
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
113+
* **deployment**: Monday, July 11, 2016
114+
* **commit**: [see tag](#)
115+
116+
The third beta fixes the tag grid system which got all wonky in the first implementation when actual data was put in. The new style is similar to the Stack Overflow tag grid style. Moreover, now tags are case insensitive, which should help eliminate duplicates. The activity stream was also updated to use templates for a bit more robust control. The "answered" activity now takes the answer as a target rather than as a theme, and answers have detail links to the question that they're on.
117+
110118
### Version 1.1 Beta 2
111119

112120
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.1b2)
113121
* **deployment**: Friday, July 8, 2016
114-
* **commit**: [see tag](#)
122+
* **commit**: [ebd553f](https://github.com/DistrictDataLabs/minimum-entropy/commit/ebd553fd8ec202de38fb3f27de2993770ac48960)
115123

116-
The second beta release fixes a couple of bugs with the older profile system, and a lingering topic item from Kyudo. This release goes a bit further and creates a tagging system for questions (replacing topics) and allows for the ordering and search of questions in a more meaningful way. Hopefully this is the last official Beta version and Minimum Entropy can actually start to be used in a more meaningful way.
124+
The second beta release fixes a couple of bugs with the older profile system, and a lingering topic item from Kyudo. This release goes a bit further and creates a tagging system for questions (replacing topics) and allows for the ordering and search of questions in a more meaningful way. Hopefully this is the last official Beta version and Minimum Entropy can actually start to be used in a more meaningful way.
117125

118126
### Version 1.0 Beta 1
119127

docs/about.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,19 @@ The release versions that are sent to the Python package index (PyPI) are also t
4949

5050
The versioning uses a three part version system, "a.b.c" - "a" represents a major release that may not be backwards compatible. "b" is incremented on minor releases that may contain extra features, but are backwards compatible. "c" releases are bug fixes or other micro changes that developers should feel free to immediately update to.
5151

52+
### Version 1.2 Beta 3
53+
54+
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
55+
* **deployment**: Monday, July 11, 2016
56+
* **commit**: [see tag](#)
57+
58+
The third beta fixes the tag grid system which got all wonky in the first implementation when actual data was put in. The new style is similar to the Stack Overflow tag grid style. Moreover, now tags are case insensitive, which should help eliminate duplicates. The activity stream was also updated to use templates for a bit more robust control. The "answered" activity now takes the answer as a target rather than as a theme, and answers have detail links to the question that they're on.
59+
5260
### Version 1.1 Beta 2
5361

5462
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.1b2)
5563
* **deployment**: Friday, July 8, 2016
56-
* **commit**: [see tag](#)
64+
* **commit**: [ebd553f](https://github.com/DistrictDataLabs/minimum-entropy/commit/ebd553fd8ec202de38fb3f27de2993770ac48960)
5765

5866
The second beta release fixes a couple of bugs with the older profile system, and a lingering topic item from Kyudo. This release goes a bit further and creates a tagging system for questions (replacing topics) and allows for the ordering and search of questions in a more meaningful way. Hopefully this is the last official Beta version and Minimum Entropy can actually start to be used in a more meaningful way.
5967

fugato/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: __init__.py [] [email protected] $
10+
# ID: __init__.py [8eae6c4] [email protected] $
1111

1212
"""
1313
The fugato app is designed to collect questions.

fugato/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: admin.py [] [email protected] $
10+
# ID: admin.py [8eae6c4] [email protected] $
1111

1212
"""
1313
Description of the app for the admin site and CMS.

fugato/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: apps.py [] [email protected] $
10+
# ID: apps.py [8eae6c4] [email protected] $
1111

1212
"""
1313
Describes the Fugato application for Django

fugato/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: exceptions.py [] [email protected] $
10+
# ID: exceptions.py [8eae6c4] [email protected] $
1111

1212
"""
1313
Custom exceptions for API

fugato/managers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: managers.py [] [email protected] $
10+
# ID: managers.py [8eae6c4] [email protected] $
1111

1212
"""
1313
Custom managers for the fugato models
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.7 on 2016-07-10 13:09
3+
from __future__ import unicode_literals
4+
5+
import autoslug.fields
6+
from django.db import migrations
7+
from slugify import slugify
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('fugato', '0003_auto_20160707_2054'),
14+
]
15+
16+
operations = [
17+
migrations.AlterField(
18+
model_name='question',
19+
name='slug',
20+
field=autoslug.fields.AutoSlugField(editable=False, populate_from='text', slugify=slugify, unique=True),
21+
),
22+
]

fugato/migrations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (C) 2016 District Data Labs
88
# For license information, see LICENSE.txt
99
#
10-
# ID: __init__.py [] [email protected] $
10+
# ID: __init__.py [8eae6c4] [email protected] $
1111

1212
"""
1313
Database migrations for the fugato application

0 commit comments

Comments
 (0)