Skip to content

Releases: streamaserver/streama

v1.6.7

04 May 21:46
Compare
Choose a tag to compare
  • 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

v1.6.6

04 May 08:26
Compare
Choose a tag to compare

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

v1.6.5

16 Apr 18:35
Compare
Choose a tag to compare
  • fix logo/bg/favicon uploading in settings (fixes #778)

v1.6.4

11 Apr 19:44
Compare
Choose a tag to compare
  • Fix validateSettings javascript error #773

v1.6.3

08 Apr 19:03
Compare
Choose a tag to compare

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

v1.6.2

07 Apr 21:18
ca75b94
Compare
Choose a tag to compare

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

v1.6.1

04 Feb 21:55
Compare
Choose a tag to compare
v1.6.1 Pre-release
Pre-release

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'

v1.6.0-FINAL

22 Dec 05:39
Compare
Choose a tag to compare

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

v1.6.0-RC10

03 Dec 21:13
78414f6
Compare
Choose a tag to compare

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)

v1.6.0-RC9

28 Sep 20:00
Compare
Choose a tag to compare
  • hotfix for movie-bug introduced in RC8