Skip to content

Batch mode of changing feed properties #181

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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ cssdir = $(pkgdatadir)/css
css_DATA = \
css/liferea.css \
css/user.css \
css/batch_feed_property.css \
css/adblock.css

dtddir = $(pkgdatadir)/dtd
Expand Down
11 changes: 11 additions & 0 deletions css/batch_feed_property.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* @file batch_feed_property.css Liferea batch feed proprety dialog stylesheet
*/
.batch-feed-property-changed {
border-width: 2px;
border-color: red;
border-style: solid;
background-color: darkgreen;
color: orange;
margin: 4px;
}
1 change: 1 addition & 0 deletions glade/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
gladedir = $(pkgdatadir)
glade_DATA = liferea.ui \
auth.ui \
batch_feed_property.ui \
new_subscription.ui \
simple_subscription.ui \
google_source.ui \
Expand Down
1,141 changes: 1,141 additions & 0 deletions glade/batch_feed_property.ui

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ src/vfolder_loader.c
src/vfolder_loader.h
src/xml.c
src/xml.h
src/ui/batch_feed_property.c
src/ui/batch_feed_property.h
src/ui/enclosure_list_view.c
src/ui/enclosure_list_view.h
src/ui/icons.c
Expand Down Expand Up @@ -182,6 +184,7 @@ src/fl_sources/theoldreader_source_feed_list.c
src/fl_sources/theoldreader_source_feed_list.h
src/webkit/webkit.c
[type: gettext/glade]glade/auth.ui
[type: gettext/glade]glade/batch_feed_property.ui
[type: gettext/glade]glade/google_source.ui
[type: gettext/glade]glade/inoreader_source.ui
[type: gettext/glade]glade/liferea.ui
Expand Down
1 change: 1 addition & 0 deletions src/ui/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ libliui_a_CFLAGS = $(PACKAGE_CFLAGS) $(LIBINDICATE_CFLAGS)
libliui_a_SOURCES = \
auth_dialog.c auth_dialog.h \
browser_tabs.c browser_tabs.h \
batch_feed_property.c batch_feed_property.h \
enclosure_list_view.c enclosure_list_view.h \
feed_list_view.c feed_list_view.h \
feed_list_node.c feed_list_node.h \
Expand Down
Loading