Skip to content
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

Ensure all text files have terminal newlines #136

Open
wants to merge 1 commit 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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ install:
- npm i -g @elementaryos/houston

script:
- houston ci
- houston ci
2 changes: 1 addition & 1 deletion data/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ window {

entry {
border-bottom-color: rgba(0, 0, 0, 0.2);
}
}
2 changes: 1 addition & 1 deletion data/com.github.donadigo.appeditor.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,4 @@
<value key="x-appcenter-color-primary-text">#0A332D</value>
<value key="x-appcenter-suggested-price">5</value>
</custom>
</component>
</component>
2 changes: 1 addition & 1 deletion data/com.github.donadigo.appeditor.contract
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Name=Create a Menu Entry
Description=Create a new menu entry for executing this file
Icon=com.github.donadigo.appeditor
MimeType=application/x-executable;text/x-python;application/x-shellscript
Exec=com.github.donadigo.appeditor -c %f
Exec=com.github.donadigo.appeditor -c %f
2 changes: 1 addition & 1 deletion data/com.github.donadigo.appeditor.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
<gresource prefix="/com/github/donadigo/appeditor">
<file alias="application.css" compressed="true">application.css</file>
</gresource>
</gresources>
</gresources>
2 changes: 1 addition & 1 deletion data/com.github.donadigo.appeditor.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
<description>Whether entries with NoDisplay set to true should show</description>
</key>
</schema>
</schemalist>
</schemalist>
2 changes: 1 addition & 1 deletion meson/post_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

if not os.environ.get('DESTDIR'):
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', schemadir])
subprocess.call(['glib-compile-schemas', schemadir])
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
option('flatpak', type : 'boolean', value : 'false', description : 'Disables some defunct features when building with Flatpak')
option('flatpak', type : 'boolean', value : 'false', description : 'Disables some defunct features when building with Flatpak')
2 changes: 1 addition & 1 deletion po/meson.build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
i18n.gettext(meson.project_name(), preset: 'glib')
i18n.gettext(meson.project_name(), preset: 'glib')
2 changes: 1 addition & 1 deletion src/AppDirectoryScanner.vala
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ public class AppEditor.AppDirectoryScanner : Object {

return apps_dir;
}
}
}
2 changes: 1 addition & 1 deletion src/IconChooserDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ public class AppEditor.IconChooserDialog : Gtk.Dialog {
icon_list_box.search (search_entry.text);
icon_list_box.invalidate_filter ();
}
}
}
2 changes: 1 addition & 1 deletion src/IconListBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ public class AppEditor.IconListBox : Gtk.ListBox {
private static bool query_matches_name (string query, string icon_name) {
return query.down () in icon_name.down ();
}
}
}