-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gtk gui #10
base: master
Are you sure you want to change the base?
Conversation
Hmm it works locally for me. @ubruhin could you try to build it? |
Compiling torrent-search v0.1.0 |
Hmm... That's the same error that travis gets. Why is it working for me 😕 |
@ubruhin Does it work for you as well now? |
c5c2d47
to
5e40013
Compare
fcf1b86
to
529cccb
Compare
Since we want to split multiple user interfaces into multiple binaries, we can't have a single main file.
Just searches for hard coded term and displays them in a ScrolledWindow. Inspired by https://mmstick.gitbooks.io/rust-programming-phoronix-reader-how-to/content/index.html
This seems to fail to compile on some systems with: Compiling torrent-search v0.1.0 (file:///media/Daten/Eigene_Dateien/Programmieren/rust/rust-torrent-search) src/bin/torrent-search-gtk.rs:42:23: 42:42 error: no method named `set_margin_start` found for type `gtk::widgets::link_button::LinkButton` in the current scope src/bin/torrent-search-gtk.rs:42 title_and_url.set_margin_start(0); ^~~~~~~~~~~~~~~~~~~ error: aborting due to previous error Build failed, waiting for other jobs to finish... Could not compile `torrent-search`. Since it doesn't do anything meaningful we can just remove it.
Since we provide our own toolchain we must not install the "Linker and platform libraries".
Woohoo! It builds on AppVeyor! |
👍 |
Just searches for hard coded term and displays them in a ScrolledWindow.
Inspired by
https://mmstick.gitbooks.io/rust-programming-phoronix-reader-how-to/content/index.html