streama

Self hosted streaming media server. https://docs.streama-project.com/

MIT License

Stars
9.6K

Bot releases are hidden (Show)

streama - v1.7.0-RC10 (unstable)

Published by dularion over 5 years ago

  • add edit functionality for trailer & createdDate #800
  • add missing trailerKey adding from bulkCreate
  • Fix missing genre creation for BulkCreate #264
streama - v1.7.0-RC9 (unstable)

Published by dularion over 5 years ago

  • Bulk adding subtitles #461
streama - v1.7.0-RC8 (unstable)

Published by dularion over 5 years ago

  • Fix Dash search for accents #799
streama - v1.7.0-RC7 (unstable)

Published by dularion over 5 years ago

  • Fix exception during movie creation due to empty ID #798
streama - v1.7.0-RC6 (unstable)

Published by dularion over 5 years ago

  • add requestUrl to tmdb error #791
streama - v1.7.0-RC5 (unstable)

Published by dularion over 5 years ago

  • add improved error messages for BulkCreation #791
  • fix season & episode padding for getMatchDisplay during bulk
streama - v1.7.0-RC4 (unstable)

Published by dularion over 5 years ago

  • fix "refetch season" button - response was not handled correctly
  • fix nullpointer issue for tags during movieSave
  • improve movie regex
  • improve display of bulk-matched files #776
  • fix BulkCreation nullpointer
  • fix directory selection issue for "create bulk from files"
streama - v1.7.0-RC3 (unstable)

Published by dularion over 5 years ago

  • fix "undefined" error for non-accessible localFiles directory (when setting isnt set)
  • fix settings validation error display
  • simplify getFirstEpisode() logic
  • fix episode-upload-bug (after successful upload, the episode card still displayed as "no video files added" until page refresh)
streama - v1.7.0-RC2 (unstable)

Published by dularion over 5 years ago

  • updating contentType as per #752
  • fix faulty falsey check on currentTime for updateViewingStatus
streama - v1.7.0-RC1 (unstable)

Published by dularion over 5 years ago

Features

  • Work-In-Progress: add multi-video-file support for movies & tv-show episodes

Bugfixes

  • fix initial mySQL startup by downgrading the mysql-connector again
streama - v1.6.7

Published by dularion over 5 years ago

  • fix genre-auto-add issue for similar movies #264
  • fix "add from similar" redirect - wrong usage of response
  • Fix poster-display for manually added tv-shows
  • fix faulty /save endpoint for tvShows - always created new one #787
  • add "Add Manually" toggle-button for tv-shows
  • fix non-displaying similarMovies display in movie-detail for admins #788
  • add genre-selector for tv-shows & movies
streama - v1.6.6

Published by dularion over 5 years ago

Fix Movie Genre issue during playback (for Movies without genre) (SQLGrammarException #662)

streama - v1.6.5

Published by dularion over 5 years ago

streama - v1.6.4

Published by dularion over 5 years ago

  • Fix validateSettings javascript error #773
streama - v1.6.3

Published by dularion over 5 years ago

Breaking changes

  • change from .war to .jar ! Make sure to update your dockerfiles / linux services / links etc

Other changes

  • minor updates to some gradle dependencies
  • translate "Up Next" thanks @CardealRusso
  • Bugfix for playback introduced in 1.6.2
streama - v1.6.2

Published by dularion over 5 years ago

Bugfixes

  • Fix: Streama doesn't remember where you left a series #721 (thanks @f1reflyyyylmao)
  • Fix: Leaving empty background breaks streama #747 (thanks @f1reflyyyylmao)
  • Fix: Upgrading an "Admin"/"Content Manager" to a "Trusted User" removes all roles #729 (thanks @f1reflyyyylmao)
  • Improve time-widget for outro-start, intro-start & intro-end
  • Fix outroStart logic (was double converted to seconds) which solves #762

Other notes:

  • Upgrade AngularJS & some angularJS dependencies, which might break some forms. Please keep me posted about anything you might notice
streama - v1.6.1

Published by dularion over 5 years ago

Features

  • Added GoogleAnalytics Support (via application.yml)
  • (maybe) fix exception: Batch update returned unexpected row count from update

GoogleAnalytics Syntax

streama:
  googleAnalytics:
      enabled: true
      id: 'UA-xxxxxxxx-x'

streama - v1.6.0-FINAL

Published by HannahRy almost 6 years ago

Fixes for bugs found in RC10.

  • Fix NPE for missing episodeSelector - caused movies to not run
  • Fix viewing status for movies
  • Redirect to sub-profiles page after login

This is the last release for 1.6.0

streama - v1.6.0-RC10

Published by dularion almost 6 years ago

What's New

image

image

image

Breaking Changes

  • update mysqlConnector plugin version (thanks @DrEthan77)
    This requires that you make two changes to your application.yml in case you are using mysql:
  • you need to change the driverclass from com.mysql.jdbc.Driver to com.mysql.cj.jdbc.Driver
  • you need to add some new options to your url:
    • useLegacyDatetimeCode=false
    • serverTimezone=UTC
    • useSSL=false

So the result should look something like this:

environments:
    production:
        dataSource:
            #For mysql database
            driverClassName:  'com.mysql.cj.jdbc.Driver'
            url: jdbc:mysql://localhost/streama?useLegacyDatetimeCode=false&serverTimezone=UTC&useSSL=false
            username: root
            password: 

Other Changes

  • improvements to mouse-wheel volume control (thanks @fuji44 )
  • some grammar fixes (thanks @imronras)
  • updates to Dutch language (thanks @SmitBe)
  • add control over downloads by adding trustedUser role (thanks @DrEthan77)
streama - v1.6.0-RC9

Published by dularion about 6 years ago

  • hotfix for movie-bug introduced in RC8