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 (2)
# [1.0.0-beta.5](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-01-31)
### Bug Fixes
- **analytics:** set initial value for duration and bandwidth
([ee50539](https://code.podlibre.org/podlibre/castopod-host/commit/ee5053959154b1a2e5fbe4b43162968425206a26))
# [1.0.0-beta.4](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-01-29) # [1.0.0-beta.4](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-01-29)
### Bug Fixes ### Bug Fixes
......
...@@ -11,7 +11,7 @@ declare(strict_types=1); ...@@ -11,7 +11,7 @@ declare(strict_types=1);
| |
| NOTE: this constant is updated upon release with Continuous Integration. | NOTE: this constant is updated upon release with Continuous Integration.
*/ */
defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.4'); defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.5');
/* /*
| -------------------------------------------------------------------- | --------------------------------------------------------------------
......
{ {
"name": "podlibre/castopod-host", "name": "podlibre/castopod-host",
"version": "1.0.0-beta4", "version": "1.0.0-beta5",
"type": "project", "type": "project",
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
"homepage": "https://castopod.org", "homepage": "https://castopod.org",
......
...@@ -50,8 +50,8 @@ class AddAnalyticsPodcastsProcedure extends Migration ...@@ -50,8 +50,8 @@ class AddAnalyticsPodcastsProcedure extends Migration
SET @current_hour = HOUR(@current_datetime); SET @current_hour = HOUR(@current_datetime);
IF NOT `p_bot` THEN IF NOT `p_bot` THEN
INSERT INTO `{$prefix}analytics_podcasts`(`podcast_id`, `date`) INSERT INTO `{$prefix}analytics_podcasts`(`podcast_id`, `date`, `duration`, `bandwidth`)
VALUES (p_podcast_id, @current_date) VALUES (p_podcast_id, @current_date, `p_duration`, `p_filesize`)
ON DUPLICATE KEY UPDATE ON DUPLICATE KEY UPDATE
`duration`=`duration`+`p_duration`, `duration`=`duration`+`p_duration`,
`bandwidth`=`bandwidth`+`p_filesize`, `bandwidth`=`bandwidth`+`p_filesize`,
......
{ {
"name": "castopod-host", "name": "castopod-host",
"version": "1.0.0-beta.4", "version": "1.0.0-beta.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "castopod-host", "name": "castopod-host",
"version": "1.0.0-beta.4", "version": "1.0.0-beta.5",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"dependencies": { "dependencies": {
"@amcharts/amcharts4": "^4.10.23", "@amcharts/amcharts4": "^4.10.23",
......
{ {
"name": "castopod-host", "name": "castopod-host",
"version": "1.0.0-beta.4", "version": "1.0.0-beta.5",
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
"private": true, "private": true,
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
......