Skip to content
Commits on Source (307)
New features and significant updates in version...
Major changes in 41.alpha.0:
- ...
Major changes in 42.beta:
- Port video widget from obsolete Clutter to OpenGL
- Move subtitles and audio track selection to its own menu
- Add shortcuts for mute, cycling through subtitles, toggling
subtitles and seeking to specific places in the video
- Implement a enabled-by-default native MPRIS plugin to replace
the Python MPRIS plugin
- Remove media-player-keys plugin that supported the old GNOME
Settings Daemon API, now replaced by MPRIS
- Show more precise elapsed time when stepping frame-by-frame
- Implement "search by title" in OpenSubtitles plugin
Major changes in 3.38.0:
- Translation updates
......
......@@ -34,10 +34,7 @@ private_headers = [
]
version_conf = configuration_data()
version_conf.set('TOTEM_VERSION_MAJOR', totem_major_version)
version_conf.set('TOTEM_VERSION_MINOR', totem_minor_version)
version_conf.set('TOTEM_VERSION_MICRO', totem_micro_version)
version_conf.set('VERSION', totem_version)
version_xml = 'version.xml'
configure_file(
......
@TOTEM_VERSION_MAJOR@.@TOTEM_VERSION_MINOR@.@TOTEM_VERSION_MICRO@
@VERSION@
project(
'totem', 'c',
version: '41.alpha.0',
version: '42.beta',
license: 'GPL2+ with exception',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0'
......@@ -8,9 +8,7 @@ project(
totem_version = meson.project_version()
version_array = totem_version.split('.')
totem_major_version = version_array[0].to_int()
totem_minor_version = version_array[1]
totem_micro_version = version_array[2].to_int()
totem_api_version = '1.0'
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.