Projects
Multimedia
flowblade
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 17
View file
_service
Changed
@@ -1,7 +1,7 @@ <services> <service name="obs_scm"> <param name="filename">flowblade</param> - <param name="revision">771df1219d5e22f2b04d779200507c3b839211af</param> + <param name="revision">90a76f16a97f08d2c0301718e46276cc402ea7f4</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/jliljebl/flowblade.git</param>
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/audiowaveformrenderer.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/audiowaveformrenderer.py
Changed
@@ -163,10 +163,10 @@ def _repaint(): callbackbridge.updater_repaint_tline() - try: - gui.monitor_waveform_display.widget.queue_draw() - except: - pass # We might not have a producer set in monitor to draw. + #try: + # gui.monitor_waveform_display.widget.queue_draw() + #except: + # pass # We might not have a producer set in monitor to draw. return False
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/dialogs.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/dialogs.py
Changed
@@ -598,8 +598,8 @@ # Application tab img = Gtk.Image.new_from_file(respaths.IMAGE_PATH + "flowbladeappicon.png") flow_label = Gtk.Label(label="Flowblade Movie Editor") - ver_label = Gtk.Label(label="2.24") - janne_label = Gtk.Label(label="Copyright 2025 Janne Liljeblad and contributors.") + ver_label = Gtk.Label(label="2.24.1") + janne_label = Gtk.Label(label="Copyright 2026 Janne Liljeblad and contributors.") page_label = Gtk.Label(label=_("Project page:") + " " + "<a href=\"https://github.com/jliljebl/flowblade\">https://github.com/jliljebl/flowblade</a>") page_label.set_use_markup(True) flow_label.modify_font(Pango.FontDescription("sans bold 14"))
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/editorstate.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/editorstate.py
Changed
@@ -98,7 +98,7 @@ # Runtime environment data gtk_version = None mlt_version = None -appversion = "2.24" +appversion = "2.24.1" RUNNING_FROM_INSTALLATION = 0 RUNNING_FROM_DEV_VERSION = 1 RUNNING_FROM_FLATPAK = 2
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/editorwindow.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/editorwindow.py
Changed
@@ -1143,7 +1143,7 @@ # Audio master meter # Tool Selection Widget - audiomaster_menu_item = Gtk.MenuItem(_("Audoi Master Level Meter")) + audiomaster_menu_item = Gtk.MenuItem(_("Audio Master Level Meter")) audiomaster_menu = Gtk.Menu() audiomaster_top = Gtk.RadioMenuItem() audiomaster_top.set_label( _("Top Row")) @@ -1361,7 +1361,7 @@ # Monitor position bar self.pos_bar.set_listener(mltplayer.seek_position_normalized) - gui.monitor_waveform_display.set_listener(mltplayer.seek_position_normalized) + #gui.monitor_waveform_display.set_listener(mltplayer.seek_position_normalized) def _get_edit_buttons_row(self): tools_pixbufs = tlinecursors.get_tools_pixbuffs()
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/gtkevents.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/gtkevents.py
Changed
@@ -36,11 +36,11 @@ class ScrollEvent: def __init__(self, dx, dy): - if dy == -1.0: + if dy < 0.0: self.direction = Gdk.ScrollDirection.UP - elif dy == 1.0: + elif dy > 0.0: self.direction = Gdk.ScrollDirection.DOWN - elif dx == 1.0: + elif dx > 0.0: self.direction = Gdk.ScrollDirection.RIGHT else: self.direction = Gdk.ScrollDirection.LEFT
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/gui.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/gui.py
Changed
@@ -112,7 +112,7 @@ monitor_widget = editor_window.monitor_widget monitor_switch = editor_window.monitor_switch - monitor_waveform_display = monitor_widget.waveform_display + #monitor_waveform_display = monitor_widget.waveform_display tline_display = editor_window.tline_display tline_scale = editor_window.tline_scale
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/keygtkactions.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/keygtkactions.py
Changed
@@ -56,8 +56,8 @@ TLINE_MONITOR_DISPLAY = "tlinemonitordisplay" TLINE_ALL = TLINE_CANVAS, TLINE_TRACK_COLUMN, TLINE_SCALE, TLINE_LEFT_CORNER, TLINE_SCROLL, TLINE_MONITOR_DISPLAY MONITOR_SWITCH = "monitorswitch" -MONITOR_WAVEFORM_DISPLAY = "monitorwaveformdisplay" -MONITOR_ALL = MONITOR_SWITCH, MONITOR_WAVEFORM_DISPLAY, POS_BAR +#MONITOR_WAVEFORM_DISPLAY = "monitorwaveformdisplay" +MONITOR_ALL = MONITOR_SWITCH, POS_BAR MIDDLE_BUTTONS_1 = "midbar_b_1" MIDDLE_BUTTONS_2 = "midbar_b_2" MIDDLE_BUTTONS_3 = "midbar_b_3" @@ -84,7 +84,6 @@ TLINE_SCROLL: gui.tline_scroll, TLINE_MONITOR_DISPLAY: gui.tline_display, MONITOR_SWITCH: gui.monitor_switch.widget, - MONITOR_WAVEFORM_DISPLAY: gui.monitor_waveform_display.widget, SEQUENCE_LIST_VIEW: gui.sequence_list_view, BIN_LIST_VIEW: gui.bin_list_view, LOG_LIST_VIEW: gui.editor_window.media_log_events_list_view,
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/Flowblade/flowblade.pot -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/Flowblade/flowblade.pot
Changed
@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1082,7 +1082,7 @@ msgstr "" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/cs/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/cs/LC_MESSAGES/flowblade.po
Changed
@@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2021-02-28 16:18+0100\n" "Last-Translator: Pavel Fric <pavelfric@seznam.cz>\n" "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n" @@ -1168,7 +1168,7 @@ #: editorwindow.py:1146 #, fuzzy -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "Ukázat měřidlo hlavní hlasitosti" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/de/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/de/LC_MESSAGES/flowblade.po
Changed
@@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2014-11-23 14:22+0100\n" "Last-Translator: Martin Wielebinski <blueray.mw@gmail.com>\n" "Language-Team: German\n" @@ -1165,8 +1165,9 @@ msgstr "Eingebettet" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Audio-Niveaus-Daten" #: editorwindow.py:1149 #, fuzzy
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/es/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/es/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2024-08-12 13:54+0200\n" "Last-Translator: David Gámiz Jiménez <david.gamiz@gmail.com>\n" "Language-Team: David Gamiz Jimenez\n" @@ -1196,8 +1196,9 @@ msgstr "Muelle" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Datos de niveles de audio" #: editorwindow.py:1149 #, fuzzy
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/fr/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/fr/LC_MESSAGES/flowblade.po
Changed
@@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2020-12-14 14:52+0100\n" "Last-Translator: Jean-Paul Favier <favijep@laposte.net>\n" "Language-Team: French\n" @@ -1162,8 +1162,9 @@ msgstr "" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Afficher les niveaux de son" #: editorwindow.py:1149 #, fuzzy
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/hu/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/hu/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2017-03-24 08:40+0100\n" "Last-Translator: Péter Gábor <ptrg@freemail.hu>\n" "Language-Team: \n" @@ -1186,7 +1186,7 @@ #: editorwindow.py:1146 #, fuzzy -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "Főhangerő kijelzőjének megjelenítése" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/it/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/it/LC_MESSAGES/flowblade.po
Changed
@@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Floblade Italian Translation 0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2020-29-02 21:24+0200\n" "Last-Translator: Albano Battistella <albano_battistella@hotmail.com>\n" "Language-Team: Italiano\n" @@ -1178,8 +1178,9 @@ msgstr "" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Dati dei livelli audio" #: editorwindow.py:1149 msgid "Top Row"
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/pl/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/pl/LC_MESSAGES/flowblade.po
Changed
@@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2024-08-27 10:29+0200\n" "Last-Translator: Stanislaw Polak <polak@agh.edu.pl>\n" "Language-Team: Polish\n" @@ -1161,7 +1161,7 @@ #: editorwindow.py:1146 #, fuzzy -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "Pokaż miernik poziomu głośności" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/ru/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/ru/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Flowblade\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2023-06-20 15:06+0300\n" "Last-Translator: Смольянинов Николай <smolianinow.colya2016@yandex.ru>\n" "Language-Team: ru\n" @@ -1158,8 +1158,9 @@ msgstr "Встроенной панели" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Данные уровней звука" #: editorwindow.py:1149 #, fuzzy
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/tr/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/tr/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2021-04-04 15:07+0300\n" "Last-Translator: \n" "Language-Team: Türkçe\n" @@ -1163,8 +1163,9 @@ msgstr "Yuva" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "Ses Düzeyleri Verisi" #: editorwindow.py:1149 #, fuzzy
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/uk/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/uk/LC_MESSAGES/flowblade.po
Changed
@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2021-01-15 21:19+0300\n" "Last-Translator: Микита Бесчастний <micitabesh1992@rambler.ua>\n" "Language-Team: \n" @@ -1161,7 +1161,7 @@ msgstr "Панель" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/zh_CN/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/zh_CN/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2017-04-15 18:47+0800\n" "Last-Translator: wu <laowudebox@126.com>\n" "Language-Team: Language LANGUAGE\n" @@ -1157,7 +1157,7 @@ #: editorwindow.py:1146 #, fuzzy -msgid "Audoi Master Level Meter" +msgid "Audio Master Level Meter" msgstr "显示音量控制条" #: editorwindow.py:1149
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/locale/zh_TW/LC_MESSAGES/flowblade.po -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/locale/zh_TW/LC_MESSAGES/flowblade.po
Changed
@@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-05 16:57+0200\n" +"POT-Creation-Date: 2026-04-12 18:44+0300\n" "PO-Revision-Date: 2018-12-31 10:20+0800\n" "Last-Translator: Steve Nian <sdnian@gmail.com>\n" "Language-Team: Chinese (traditional)\n" @@ -1159,8 +1159,9 @@ msgstr "" #: editorwindow.py:1146 -msgid "Audoi Master Level Meter" -msgstr "" +#, fuzzy +msgid "Audio Master Level Meter" +msgstr "音訊波形資料" #: editorwindow.py:1149 msgid "Top Row"
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/mltplayer.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/mltplayer.py
Changed
@@ -83,8 +83,8 @@ print("Create SDL2 consumer...") self.consumer = mlt.Consumer(self.profile, "sdl2") self.consumer.set("window_id", self.window_xid) - w = gui.tline_display.get_allocated_width() - h = gui.tline_display.get_allocated_height() + w = int(gui.tline_display.get_allocated_width() * gui.tline_display.get_scale_factor()) + h = int(gui.tline_display.get_allocated_height() * gui.tline_display.get_scale_factor()) self.consumer.set("window_width", w) self.consumer.set("window_height", h) else: @@ -104,8 +104,8 @@ def display_resized(self): if self.consumer != None and _sdl_consumer_version == SDL_2: - w = gui.tline_display.get_allocated_width() - h = gui.tline_display.get_allocated_height() + w = int(gui.tline_display.get_allocated_width() * gui.tline_display.get_scale_factor()) + h = int(gui.tline_display.get_allocated_height() * gui.tline_display.get_scale_factor()) self.consumer.set("window_width", w) self.consumer.set("window_height", h)
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/monitorwidget.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/monitorwidget.py
Changed
@@ -113,7 +113,7 @@ black_box.add(Gtk.Label()) self.monitor = black_box - self.waveform_display = positionbar.ClipWaveformArea() + #self.waveform_display = positionbar.ClipWaveformArea() self.right_display = cairoarea.CairoDrawableArea2(1, 1, self._draw_match_frame_right, use_widget_bg=False) @@ -130,7 +130,7 @@ self.widget.pack_start(self.top_row, False, False,0) self.widget.pack_start(self.mid_row , True, True,0) self.widget.pack_start(self.bottom_row, False, False,0) - self.widget.pack_start(self.waveform_display.widget, False, False, 0) + #self.widget.pack_start(self.waveform_display.widget, False, False, 0) self.CLOSE_MATCH_ICON = cairo.ImageSurface.create_from_png(respaths.IMAGE_PATH + "close_match.png") self.PATTERN_PRODUCER_ICON = cairo.ImageSurface.create_from_png(respaths.IMAGE_PATH + "pattern_producer_trim_view.png")
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/Flowblade/updater.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/Flowblade/updater.py
Changed
@@ -449,7 +449,7 @@ # Display frame, marks and pos gui.pos_bar.update_display_from_producer(clip_producer) - gui.monitor_waveform_display.update_display_from_producer(clip_producer) + #gui.monitor_waveform_display.update_display_from_producer(clip_producer) display_monitor_clip_name() @@ -471,7 +471,7 @@ gui.pos_bar.set_clip_bg(True) gui.media_list_view.widget.queue_draw() gui.monitor_switch.widget.queue_draw() - gui.monitor_waveform_display.update_visibility() + #gui.monitor_waveform_display.update_visibility() repaint_tline() def display_monitor_clip_name():#we're displaying length and range length also @@ -528,7 +528,7 @@ gui.apply_widget_css_class_style_from_string(gui.editor_window.player_buttons_row, css_str) gui.pos_bar.set_clip_bg(False) - gui.monitor_waveform_display.widget.hide() + #gui.monitor_waveform_display.widget.hide() gui.monitor_switch.widget.queue_draw() repaint_tline() @@ -601,7 +601,7 @@ norm_pos = frame / float(producer_length) gui.pos_bar.set_normalized_pos(norm_pos) - gui.monitor_waveform_display.set_normalized_pos(norm_pos) + #gui.monitor_waveform_display.set_normalized_pos(norm_pos) kftoolmode.update_clip_frame(frame)
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/flowblade -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/flowblade
Changed
@@ -24,8 +24,8 @@ import sys -print ("FLOWBLADE MOVIE EDITOR 2.24") -print ("---------------------------") +print ("FLOWBLADE MOVIE EDITOR 2.24.1") +print ("-----------------------------") # Get launch script dir launch_dir = os.path.dirname(os.path.abspath(sys.argv0))
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/installdata/io.github.jliljebl.Flowblade.appdata.xml -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/installdata/io.github.jliljebl.Flowblade.appdata.xml
Changed
@@ -22,6 +22,15 @@ </screenshots> <content_rating type="oars-1.1" /> <releases> + <release version="2.24.1" date="2026-4-12"> + <description> + <p>Features:</p> + <ul> + <li>Dual Sync Trim</li> + <li>New Container Clip Types</li> + </ul> + </description> + </release> <release version="2.24" date="2025-12-5"> <description> <p>Features:</p>
View file
_service:obs_scm:flowblade-2.24.obscpio/flowblade-trunk/setup.py -> _service:obs_scm:flowblade-2.24.1.obscpio/flowblade-trunk/setup.py
Changed
@@ -50,7 +50,7 @@ locale_files.append(filepath) setup( name='flowblade', - version='2.24', + version='2.24.1', author='Janne Liljeblad', author_email='janne.liljeblad at gmail dot com', description='Non-linear video editor',
View file
_service:obs_scm:flowblade.obsinfo
Changed
@@ -1,4 +1,4 @@ name: flowblade -version: 2.24 -mtime: 1765007875 -commit: 771df1219d5e22f2b04d779200507c3b839211af +version: 2.24.1 +mtime: 1776008725 +commit: 90a76f16a97f08d2c0301718e46276cc402ea7f4
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.