Bump version to 2.9.1
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219609471
This commit is contained in:
parent
36fef95f47
commit
e1c6229cc8
@ -2,42 +2,49 @@
|
||||
|
||||
### dev-v2 (not yet released) ###
|
||||
|
||||
* DASH: Parse ProgramInformation element if present in the manifest.
|
||||
* Support for playing spherical videos on Daydream.
|
||||
* Improve decoder re-use between playbacks. TODO: Write and link a blog post
|
||||
here ([#2826](https://github.com/google/ExoPlayer/issues/2826)).
|
||||
* Improve initial bandwidth meter estimates using the current country and
|
||||
network type.
|
||||
* Add options for controlling audio track selections to `DefaultTrackSelector`
|
||||
([#3314](https://github.com/google/ExoPlayer/issues/3314)).
|
||||
* Do not retry failed loads whose error is `FileNotFoundException`.
|
||||
|
||||
### 2.9.1 ###
|
||||
|
||||
* Add convenience methods `Player.next`, `Player.previous`, `Player.hasNext`
|
||||
and `Player.hasPrevious`
|
||||
([#4863](https://github.com/google/ExoPlayer/issues/4863)).
|
||||
* HLS:
|
||||
* Add constructor to `DefaultHlsExtractorFactory` for adding TS payload reader
|
||||
factory flags ([#4861](https://github.com/google/ExoPlayer/issues/4861)).
|
||||
* Fix an issue with blind seeking to windows with non-zero offset in a
|
||||
`ConcatenatingMediaSource`
|
||||
([#4873](https://github.com/google/ExoPlayer/issues/4873)).
|
||||
* Fix issue where subtitles have a wrong position if SubtitleView has a non-zero
|
||||
offset to its parent
|
||||
([#4788](https://github.com/google/ExoPlayer/issues/4788)).
|
||||
* SubRip: Add support for alignment tags, and remove tags from the displayed
|
||||
captions ([#4306](https://github.com/google/ExoPlayer/issues/4306)).
|
||||
* Audio:
|
||||
* Support seeking based on MLLT metadata
|
||||
([#3241](https://github.com/google/ExoPlayer/issues/3241)).
|
||||
* Fix handling of MP3s with appended data
|
||||
([#4954](https://github.com/google/ExoPlayer/issues/4954)).
|
||||
* Fix issue where buffered position is not updated correctly when transitioning
|
||||
between periods
|
||||
([#4899](https://github.com/google/ExoPlayer/issues/4899)).
|
||||
* Improve initial bandwidth meter estimates using the current country and
|
||||
network type.
|
||||
* IMA extension:
|
||||
* For preroll to live stream transitions, project forward the loading position
|
||||
to avoid being behind the live window.
|
||||
* Let apps specify whether to focus the skip button on ATV
|
||||
([#5019](https://github.com/google/ExoPlayer/issues/5019)).
|
||||
* Support for playing spherical videos on Daydream.
|
||||
* MP3:
|
||||
* Support seeking based on MLLT metadata
|
||||
([#3241](https://github.com/google/ExoPlayer/issues/3241)).
|
||||
* Fix handling of streams with appended data
|
||||
([#4954](https://github.com/google/ExoPlayer/issues/4954)).
|
||||
* DASH: Parse ProgramInformation element if present in the manifest.
|
||||
* HLS: Add constructor to `DefaultHlsExtractorFactory` for adding TS payload
|
||||
reader factory flags
|
||||
([#4861](https://github.com/google/ExoPlayer/issues/4861)).
|
||||
* SubRip: Add support for alignment tags, and remove tags from the displayed
|
||||
captions ([#4306](https://github.com/google/ExoPlayer/issues/4306)).
|
||||
* Fix issue with blind seeking to windows with non-zero offset in a
|
||||
`ConcatenatingMediaSource`
|
||||
([#4873](https://github.com/google/ExoPlayer/issues/4873)).
|
||||
* Fix issue where subtitles were positioned incorrectly if `SubtitleView` had a
|
||||
non-zero position offset to its parent
|
||||
([#4788](https://github.com/google/ExoPlayer/issues/4788)).
|
||||
* Fix issue where the buffered position was not updated correctly when
|
||||
transitioning between periods
|
||||
([#4899](https://github.com/google/ExoPlayer/issues/4899)).
|
||||
* Suppress a spurious assertion failure on some Samsung devices
|
||||
([#4532](https://github.com/google/ExoPlayer/issues/4532)).
|
||||
* Suppress spurious "references unknown class member" shrinking warning
|
||||
([#4890](https://github.com/google/ExoPlayer/issues/4890)).
|
||||
* Fix issue where a `NullPointerException` is thrown when removing an unprepared
|
||||
media source from a `ConcatenatingMediaSource` with the `useLazyPreparation`
|
||||
option enabled ([#4986](https://github.com/google/ExoPlayer/issues/4986)).
|
||||
|
@ -13,8 +13,8 @@
|
||||
// limitations under the License.
|
||||
project.ext {
|
||||
// ExoPlayer version and version code.
|
||||
releaseVersion = '2.9.0'
|
||||
releaseVersionCode = 2009000
|
||||
releaseVersion = '2.9.1'
|
||||
releaseVersionCode = 2009001
|
||||
// Important: ExoPlayer specifies a minSdkVersion of 14 because various
|
||||
// components provided by the library may be of use on older devices.
|
||||
// However, please note that the core media playback functionality provided
|
||||
|
@ -29,11 +29,11 @@ public final class ExoPlayerLibraryInfo {
|
||||
|
||||
/** The version of the library expressed as a string, for example "1.2.3". */
|
||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
|
||||
public static final String VERSION = "2.9.0";
|
||||
public static final String VERSION = "2.9.1";
|
||||
|
||||
/** The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}. */
|
||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.9.0";
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.9.1";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as an integer, for example 1002003.
|
||||
@ -43,7 +43,7 @@ public final class ExoPlayerLibraryInfo {
|
||||
* integer version 123045006 (123-045-006).
|
||||
*/
|
||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
||||
public static final int VERSION_INT = 2009000;
|
||||
public static final int VERSION_INT = 2009001;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">সবগুলি আইটেম আবার চালান</string>
|
||||
<string name="exo_controls_shuffle_description">শাফেল করুন</string>
|
||||
<string name="exo_controls_fullscreen_description">পূর্ণ স্ক্রিন মোড</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">ভিআর মোড</string>
|
||||
<string name="exo_download_description">ডাউনলোড করুন</string>
|
||||
<string name="exo_download_notification_channel_name">ডাউনলোড</string>
|
||||
<string name="exo_download_downloading">ডাউনলোড হচ্ছে</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">બધાને રિપીટ કરો</string>
|
||||
<string name="exo_controls_shuffle_description">શફલ કરો</string>
|
||||
<string name="exo_controls_fullscreen_description">પૂર્ણસ્ક્રીન મોડ</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR મોડ</string>
|
||||
<string name="exo_download_description">ડાઉનલોડ કરો</string>
|
||||
<string name="exo_download_notification_channel_name">ડાઉનલોડ</string>
|
||||
<string name="exo_download_downloading">ડાઉનલોડ કરી રહ્યાં છીએ</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">חזור על הכול</string>
|
||||
<string name="exo_controls_shuffle_description">ערבוב</string>
|
||||
<string name="exo_controls_fullscreen_description">מצב מסך מלא</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">מצב VR</string>
|
||||
<string name="exo_download_description">הורדה</string>
|
||||
<string name="exo_download_notification_channel_name">הורדות</string>
|
||||
<string name="exo_download_downloading">ההורדה מתבצעת</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">ಎಲ್ಲವನ್ನು ಪುನರಾವರ್ತಿಸಿ</string>
|
||||
<string name="exo_controls_shuffle_description">ಶಫಲ್</string>
|
||||
<string name="exo_controls_fullscreen_description">ಪೂರ್ಣ ಪರದೆ ಮೋಡ್</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR ಮೋಡ್</string>
|
||||
<string name="exo_download_description">ಡೌನ್ಲೋಡ್</string>
|
||||
<string name="exo_download_notification_channel_name">ಡೌನ್ಲೋಡ್ಗಳು</string>
|
||||
<string name="exo_download_downloading">ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">ຫຼິ້ນຊ້ຳທັງໝົດ</string>
|
||||
<string name="exo_controls_shuffle_description">ຫຼີ້ນແບບສຸ່ມ</string>
|
||||
<string name="exo_controls_fullscreen_description">ໂໝດເຕັມຈໍ</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">ໂໝດ VR</string>
|
||||
<string name="exo_download_description">ດາວໂຫລດ</string>
|
||||
<string name="exo_download_notification_channel_name">ດາວໂຫລດ</string>
|
||||
<string name="exo_download_downloading">ກຳລັງດາວໂຫລດ</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">എല്ലാം ആവർത്തിക്കുക</string>
|
||||
<string name="exo_controls_shuffle_description">ഇടകലര്ത്തുക</string>
|
||||
<string name="exo_controls_fullscreen_description">പൂർണ്ണ സ്ക്രീൻ മോഡ്</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR മോഡ്</string>
|
||||
<string name="exo_download_description">ഡൗൺലോഡ്</string>
|
||||
<string name="exo_download_notification_channel_name">ഡൗൺലോഡുകൾ</string>
|
||||
<string name="exo_download_downloading">ഡൗൺലോഡ് ചെയ്യുന്നു</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">सबै दोहोर्याउनुहोस्</string>
|
||||
<string name="exo_controls_shuffle_description">मिसाउनुहोस्</string>
|
||||
<string name="exo_controls_fullscreen_description">पूर्ण स्क्रिन मोड</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR मोड</string>
|
||||
<string name="exo_download_description">डाउनलोड गर्नुहोस्</string>
|
||||
<string name="exo_download_notification_channel_name">डाउनलोडहरू</string>
|
||||
<string name="exo_download_downloading">डाउनलोड गरिँदै छ</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">ਸਾਰਿਆਂ ਨੂੰ ਦੁਹਰਾਓ</string>
|
||||
<string name="exo_controls_shuffle_description">ਬੇਤਰਤੀਬ ਕਰੋ</string>
|
||||
<string name="exo_controls_fullscreen_description">ਪੂਰੀ-ਸਕ੍ਰੀਨ ਮੋਡ</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR ਮੋਡ</string>
|
||||
<string name="exo_download_description">ਡਾਊਨਲੋਡ ਕਰੋ</string>
|
||||
<string name="exo_download_notification_channel_name">ਡਾਊਨਲੋਡ</string>
|
||||
<string name="exo_download_downloading">ਡਾਊਨਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">සියල්ල පුනරාවර්තනය කරන්න</string>
|
||||
<string name="exo_controls_shuffle_description">කලවම් කරන්න</string>
|
||||
<string name="exo_controls_fullscreen_description">සම්පූර්ණ තිර ප්රකාරය</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR ප්රකාරය</string>
|
||||
<string name="exo_download_description">බාගන්න</string>
|
||||
<string name="exo_download_notification_channel_name">බාගැනීම්</string>
|
||||
<string name="exo_download_downloading">බාගනිමින්</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">அனைத்தையும் மீண்டும் இயக்கு</string>
|
||||
<string name="exo_controls_shuffle_description">கலைத்துப் போடு</string>
|
||||
<string name="exo_controls_fullscreen_description">முழுத்திரைப் பயன்முறை</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR பயன்முறை</string>
|
||||
<string name="exo_download_description">பதிவிறக்கும் பட்டன்</string>
|
||||
<string name="exo_download_notification_channel_name">பதிவிறக்கங்கள்</string>
|
||||
<string name="exo_download_downloading">பதிவிறக்குகிறது</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">అన్నింటినీ పునరావృతం చేయండి</string>
|
||||
<string name="exo_controls_shuffle_description">షఫుల్ చేయండి</string>
|
||||
<string name="exo_controls_fullscreen_description">పూర్తి స్క్రీన్ మోడ్</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">వర్చువల్ రియాలిటీ మోడ్</string>
|
||||
<string name="exo_download_description">డౌన్లోడ్ చేయి</string>
|
||||
<string name="exo_download_notification_channel_name">డౌన్లోడ్లు</string>
|
||||
<string name="exo_download_downloading">డౌన్లోడ్ చేస్తోంది</string>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<string name="exo_controls_repeat_all_description">سبھی کو دہرائیں</string>
|
||||
<string name="exo_controls_shuffle_description">شفل کریں</string>
|
||||
<string name="exo_controls_fullscreen_description">پوری اسکرین والی وضع</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_controls_vr_description">VR موڈ</string>
|
||||
<string name="exo_download_description">ڈاؤن لوڈ کریں</string>
|
||||
<string name="exo_download_notification_channel_name">ڈاؤن لوڈز</string>
|
||||
<string name="exo_download_downloading">ڈاؤن لوڈ ہو رہا ہے</string>
|
||||
|
Loading…
x
Reference in New Issue
Block a user