Skip to content

Commit

Permalink
Upgrade GTK restrictions to v3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
fengalin committed Jan 30, 2018
1 parent 9d9fc87 commit 5491ba2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "media-toc"
version = "0.2.1"
authors = ["fengalin <fengalin@free.fr>"]
authors = ["François Laignel <fengalin@free.fr>"]
keywords = ["multimedia", "chapter", "table-of-contents", "gtk3", "gstreamer"]
repository = "https://github.com/fengalin/media-toc"
readme = "README.md"
description = "Build a table of contents from a media file or split a media file into chapters"
license = "MIT"

[dependencies]
byte-slice-cast = "^0"
Expand All @@ -12,7 +17,7 @@ lazy_static = "^0"
cairo-rs = { git = "https://github.com/gtk-rs/cairo.git" }
gdk = { git = "https://github.com/gtk-rs/gdk.git" }
glib = { git = "https://github.com/gtk-rs/glib.git" }
gtk = { git = "https://github.com/gtk-rs/gtk.git", features = ["v3_10"] }
gtk = { git = "https://github.com/gtk-rs/gtk.git", features = ["v3_18"] }

gstreamer = { git = "https://github.com/sdroege/gstreamer-rs.git", features = ["v1_10"] }
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs.git", features = ["v1_10"] }
Expand Down
2 changes: 1 addition & 1 deletion src/ui/media-toc-export.ui
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.20.2 -->
<interface>
<requires lib="gtk+" version="3.20"/>
<requires lib="gtk+" version="3.18"/>
<object class="GtkDialog" id="export-dlg">
<property name="width_request">400</property>
<property name="can_focus">False</property>
Expand Down
6 changes: 3 additions & 3 deletions src/ui/media-toc.ui
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.20.2 -->
<interface>
<requires lib="gtk+" version="3.10"/>
<requires lib="gtk+" version="3.18"/>
<object class="GtkListStore" id="audio_streams-liststore">
<columns>
<!-- column-name stream_id_full -->
Expand Down Expand Up @@ -188,7 +188,7 @@
<property name="can_focus">False</property>
<property name="label" translatable="yes">Remove Chapter</property>
<property name="use_underline">True</property>
<property name="stock_id">gtk-remove</property>
<property name="icon_name">list-remove</property>
</object>
<packing>
<property name="expand">False</property>
Expand All @@ -201,7 +201,7 @@
<property name="can_focus">False</property>
<property name="label" translatable="yes">Add Chapter</property>
<property name="use_underline">True</property>
<property name="stock_id">gtk-add</property>
<property name="icon_name">list-add</property>
</object>
<packing>
<property name="expand">False</property>
Expand Down

0 comments on commit 5491ba2

Please sign in to comment.