Commits on Source (9)
-
Yassine Doghri authored
set algorithm key as optional and set defaults for both algorithm (rsa-sha256) and headers (date) keys
-
Yassine Doghri authored
fixes #157
-
Yassine Doghri authored
-
Yassine Doghri authored
fixes #156
-
Yassine Doghri authored
update CommonMark to v2 + add Autolink, SmartPunct and DisallowedRawHtml extensions
-
Yassine Doghri authored
fix(activitypub): add target actor id to like / announce activities to send directly to note's actor
-
Yassine Doghri authored
-
Yassine Doghri authored
-
semantic-release-bot authored
# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03) ### Bug Fixes * **activitypub:** add conditions for possibly missing actor properties + add user-agent to requests ([8fbf948f](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2)) * **activitypub:** add target actor id to like / announce activities to send directly to note's actor ([962dd305](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d)) * **activitypub:** add target_actor_id for create activity to broadcast post reply ([0128a21e](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1)) * **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be sent in any order ([b7f285e4](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc)) * **install:** set message block on forms to show error messages ([3a0a20d5](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)), closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157) * **markdown-editor:** remove unnecessary buttons for podcast and episode editors + add extensions ([9c4f60e0](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e)) * **podcast-activity:** check if transcript and chapters are set before including them in audio ([5855a250](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f)) * **podcast:** use markdown description value for editor + set prose class to about description ([f304d97b](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)), closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
Showing
- CHANGELOG.md 30 additions, 0 deletionsCHANGELOG.md
- app/Config/Constants.php 1 addition, 1 deletionapp/Config/Constants.php
- app/Entities/Episode.php 18 additions, 5 deletionsapp/Entities/Episode.php
- app/Entities/Page.php 17 additions, 5 deletionsapp/Entities/Page.php
- app/Entities/Podcast.php 30 additions, 9 deletionsapp/Entities/Podcast.php
- app/Helpers/form_helper.php 45 additions, 0 deletionsapp/Helpers/form_helper.php
- app/Libraries/PodcastEpisode.php 8 additions, 2 deletionsapp/Libraries/PodcastEpisode.php
- app/Views/Components/Alert.php 2 additions, 0 deletionsapp/Views/Components/Alert.php
- app/Views/Components/Forms/MarkdownEditor.php 81 additions, 33 deletionsapp/Views/Components/Forms/MarkdownEditor.php
- composer.json 2 additions, 2 deletionscomposer.json
- composer.lock 423 additions, 217 deletionscomposer.lock
- modules/Fediverse/ActivityRequest.php 13 additions, 10 deletionsmodules/Fediverse/ActivityRequest.php
- modules/Fediverse/Controllers/ActorController.php 3 additions, 2 deletionsmodules/Fediverse/Controllers/ActorController.php
- modules/Fediverse/Controllers/SchedulerController.php 16 additions, 5 deletionsmodules/Fediverse/Controllers/SchedulerController.php
- modules/Fediverse/Entities/Actor.php 1 addition, 1 deletionmodules/Fediverse/Entities/Actor.php
- modules/Fediverse/Helpers/fediverse_helper.php 53 additions, 11 deletionsmodules/Fediverse/Helpers/fediverse_helper.php
- modules/Fediverse/HttpSignature.php 38 additions, 21 deletionsmodules/Fediverse/HttpSignature.php
- modules/Fediverse/Models/FavouriteModel.php 2 additions, 2 deletionsmodules/Fediverse/Models/FavouriteModel.php
- modules/Fediverse/Models/PostModel.php 3 additions, 3 deletionsmodules/Fediverse/Models/PostModel.php
- modules/Fediverse/Objects/NoteObject.php 2 additions, 0 deletionsmodules/Fediverse/Objects/NoteObject.php
app/Helpers/form_helper.php
0 → 100644
{ | ||
"name": "podlibre/castopod-host", | ||
"version": "1.0.0-beta5", | ||
"version": "1.0.0-beta6", | ||
"type": "project", | ||
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", | ||
"homepage": "https://castopod.org", | ||
... | ... | @@ -12,7 +12,7 @@ |
"geoip2/geoip2": "^v2.11.0", | ||
"myth/auth": "dev-develop", | ||
"codeigniter4/codeigniter4": "dev-develop", | ||
"league/commonmark": "^v1.6.6", | ||
"league/commonmark": "^2.2", | ||
"vlucas/phpdotenv": "^v5.3.0", | ||
"league/html-to-markdown": "^v5.0.1", | ||
"opawg/user-agents-php": "^v1.0", | ||
... | ... |
This diff is collapsed.