mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Changed all core plugin versions to stay in sync
This commit is contained in:
@@ -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 ")
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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.")
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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")
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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.")
|
||||
|
||||
Reference in New Issue
Block a user