Changed all core plugin versions to stay in sync

This commit is contained in:
Raphael Michel
2015-09-08 20:58:24 +02:00
parent 2a3a3e1c3d
commit 2ec4cbeceb
10 changed files with 22 additions and 10 deletions

View File

@@ -2,6 +2,7 @@ from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -13,7 +14,7 @@ class BankTransferApp(AppConfig):
type = PluginType.PAYMENT
name = _("Bank transfer")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to receive payments " +
"via bank transfer ")

View File

@@ -2,6 +2,7 @@ from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -13,7 +14,7 @@ class PaypalApp(AppConfig):
type = PluginType.PAYMENT
name = _("PayPal")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to receive payments via PayPal")
def ready(self):

View File

@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -12,7 +13,7 @@ class PretixdroidApp(AppConfig):
type = PluginType.ADMINFEATURE
name = _("pretixdroid API")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to use the pretixdroid Android app for your event.")
def ready(self):

View File

@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -12,7 +13,7 @@ class SendMailApp(AppConfig):
type = PluginType.ADMINFEATURE
name = _("Send out emails")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to send out emails " +
"to all your customers.")

View File

@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -12,7 +13,7 @@ class StatisticsApp(AppConfig):
type = PluginType.ADMINFEATURE
name = _("Statistics")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin shows you various statistics.")
def ready(self):

View File

@@ -2,6 +2,7 @@ from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -13,7 +14,7 @@ class StripeApp(AppConfig):
type = PluginType.PAYMENT
name = _("Stripe")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to receive credit card payments " +
"via Stripe")

View File

@@ -2,6 +2,7 @@ from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -13,7 +14,7 @@ class TicketOutputPdfApp(AppConfig):
type = PluginType.PAYMENT
name = _("PDF ticket output")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to print out tickets as PDF files")
def ready(self):

View File

@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -12,7 +13,7 @@ class TimeRestrictionApp(AppConfig):
type = PluginType.RESTRICTION
name = _("Restriction by time")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin adds the possibility to restrict the sale " +
"of a given product or variation to a certain timeframe " +
"or change its price during a certain period.")