Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 797e3c3f authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

Merge branch 'main' of https://github.com/nextcloud/calendar into main

parents 03006185 cb9590cb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ jobs:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2']
        php-versions: ['7.4', '8.0', '8.1', '8.2']
    name: php${{ matrix.php-versions }} lint
    steps:
      - name: Checkout
+2 −4
Original line number Diff line number Diff line
@@ -11,11 +11,9 @@ jobs:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        php-versions: ['7.3', '7.4']
        nextcloud-versions: ['stable21', 'stable22', 'stable23']
        php-versions: ['7.4']
        nextcloud-versions: ['stable22', 'stable23']
        include:
          - php-versions: '7.3'
            nextcloud-versions: 'stable20'
          - php-versions: '7.4'
            nextcloud-versions: 'stable24'
          - php-versions: '8.0'
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ phpunit.unit.xml
README.md
screenshots
src
stylelint.config.js
tests
timezones
webpack.*
+16 −0
Original line number Diff line number Diff line
# Changelog

## 3.4.0 - 2022-07-20
### Added
- Visually distinguish events with attendees from ones without
- Visually distinguish events with reminders from ones without
- More key events on the simple editor
### Changed
- Drop PHP7.3 support (EOL)
- Drop Nextcloud 21 support (EOL)
- Event rendering now uses Vue
- Appointment booking message
### Fixed
- Logic to extract avatar link from inivitees list
- Missing stylelint
- Hide 3-dot menu button
- Attendee search

## 3.3.2 – 2022-06-02
### Fixed
- Squished settings checkbox label
+3 −3
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
* ☑️ Tasks! See tasks with a due date directly in the calendar
* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.
	]]></description>
	<version>3.4.0-alpha.1</version>
	<version>3.5.0-alpha.1</version>
	<licence>agpl</licence>
	<author>Anna Larch</author>
	<author homepage="https://github.com/nextcloud/groupware">Nextcloud Groupware Team</author>
@@ -32,8 +32,8 @@
	<screenshot>https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_room_suggestion.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_sidebar.png</screenshot>
	<dependencies>
		<php min-version="7.3" max-version="8.1" />
		<nextcloud min-version="21" max-version="25" />
		<php min-version="7.4" max-version="8.1" />
		<nextcloud min-version="22" max-version="25" />
	</dependencies>
	<background-jobs>
		<job>OCA\Calendar\BackgroundJob\CleanUpOutdatedBookingsJob</job>
Loading