Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • adaures/castopod
  • mkljczk/castopod-host
  • spaetz/castopod-host
  • PatrykMis/castopod
  • jonas/castopod
  • ajeremias/castopod
  • misuzu/castopod
  • KrzysztofDomanczyk/castopod
  • Behel/castopod
  • nebulon/castopod
  • ewen/castopod
  • NeoluxConsulting/castopod
  • nateritter/castopod-og
  • prcutler/castopod
14 results
Show changes
Commits on Source (4)
## [1.13.4](https://code.castopod.org/adaures/castopod/compare/v1.13.3...v1.13.4) (2025-02-24)
### Bug Fixes
- **platforms:** add podcast id when deleting platforms on save
([019fbaf](https://code.castopod.org/adaures/castopod/commit/019fbaf74ddd7427c3b7dfaef0d2e4409aab0e7c))
- return method instead of throwing a 404 when submitting a post
([44ad651](https://code.castopod.org/adaures/castopod/commit/44ad65117635b6292b4653bca7e22acecb025146)),
closes [#550](https://code.castopod.org/adaures/castopod/issues/550)
## [1.13.3](https://code.castopod.org/adaures/castopod/compare/v1.13.2...v1.13.3) (2025-01-08)
### Bug Fixes
......
......@@ -11,7 +11,7 @@ declare(strict_types=1);
|
| NOTE: this constant is updated upon release with Continuous Integration.
*/
defined('CP_VERSION') || define('CP_VERSION', '1.13.3');
defined('CP_VERSION') || define('CP_VERSION', '1.13.4');
/*
| --------------------------------------------------------------------
......
......@@ -53,7 +53,9 @@ class PostController extends FediversePostController
$this->actor = $this->podcast->actor;
if (count($params) <= 1) {
throw PageNotFoundException::forPageNotFound();
unset($params[0]);
return $this->{$method}(...$params);
}
if (
......
{
"name": "adaures/castopod",
"version": "1.13.3",
"version": "1.13.4",
"type": "project",
"description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
"homepage": "https://castopod.org",
......
......@@ -6,8 +6,9 @@ stages:
.documentation-setup:
before_script:
- npm install --global corepack@latest
- corepack enable
- corepack prepare pnpm@latest-9 --activate
- corepack prepare pnpm@latest-10 --activate
- pnpm config set store-dir .pnpm-store
- cd docs
- chmod +x ./scripts/i18n-filter.sh
......
......@@ -135,12 +135,10 @@ class PlatformModel extends Model
{
$this->clearCache($podcastId);
$platforms = service('platforms');
$platformsData = $platforms->getPlatformsByType($platformType);
// delete all platforms given the type to overwrite them with data
$this->builder()
->whereIn('slug', array_keys($platformsData))
->where('podcast_id', $podcastId)
->where('type', $platformType)
->delete();
if ($data === []) {
......
{
"name": "castopod",
"version": "1.13.3",
"version": "1.13.4",
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
"private": true,
"license": "AGPL-3.0-or-later",
......