Skip to content

Commit

Permalink
v2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmartens committed Oct 17, 2018
1 parent 9efacc4 commit 0c6f5da
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Solspace Calendar Changelog

## 2.0.8 - 2018-10-17
### Fixed
- Fixed a bug where the CP Events list page would not load because of an accidental reference to Freeform.

## 2.0.7 - 2018-10-17
### Added
- Added `timezone` parameter for `calendar.export` function, allowing users to simulate a localized timezone, more-so as a workaround for Google Calendar not correctly supporting floating timezones.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "solspace/craft3-calendar",
"description": "The most powerful event management plugin for Craft.",
"version": "2.0.7",
"version": "2.0.8",
"type": "craft-plugin",
"minimum-stability": "dev",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Controllers/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function actionSaveSettings(): Response

/**
* Determines which template has to be rendered based on $template
* Adds a Freeform_SettingsModel to template variables
* Adds a Calendar_SettingsModel to template variables
*
* @param string $template
* @param array $variables
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/js/src/event-index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/templates/events/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set title = "Calendar: Events"|t('calendar') %}
{% set selectedSubnavItem = 'events' %}

{% do view.registerTranslations('freeform', [
{% do view.registerTranslations('calendar', [
'New Event',
'New {calendar} Event',
]) %}
2 changes: 1 addition & 1 deletion src/templates/layouts/_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{% block actionButton %}
<div class="buttons">
<div class="btngroup submit">
<input type="submit" class="btn submit" value="{{ 'Save'|t('freeform') }}">
<input type="submit" class="btn submit" value="{{ 'Save'|t('calendar') }}">
</div>
</div>
{% endblock %}
Expand Down

0 comments on commit 0c6f5da

Please sign in to comment.