diff options
author | MArk Finlay <sisob@eircom.net> | 2003-05-04 02:16:57 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-05-04 02:16:57 +0800 |
commit | f2aee30be5861937fa946ba4abf54273a20197ff (patch) | |
tree | 69279b7235d81d742b486b8eae33e6f25ddccd16 | |
parent | 7b8bbf8cb9b28e181a33b2ef49cbe991c8a4dc63 (diff) | |
download | gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar.gz gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar.bz2 gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar.lz gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar.xz gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.tar.zst gsoc2013-epiphany-f2aee30be5861937fa946ba4abf54273a20197ff.zip |
Marco Pesenti Gritti <marco@it.gnome.org>
2003-05-03 MArk Finlay <sisob@eircom.net>
Marco Pesenti Gritti <marco@it.gnome.org>
* data/Makefile.am:
* data/epiphany.applications:
Register ephy for mime types
* data/epiphany.desktop.in:
Use %U, so drag and drop on ephy icon will work
Ready for 0.6.0
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | data/Makefile.am | 10 | ||||
-rw-r--r-- | data/epiphany.applications | 7 | ||||
-rw-r--r-- | data/epiphany.desktop.in | 2 |
5 files changed, 30 insertions, 4 deletions
@@ -1,3 +1,17 @@ +2003-05-03 MArk Finlay <sisob@eircom.net> + Marco Pesenti Gritti <marco@it.gnome.org> + + * data/Makefile.am: + * data/epiphany.applications: + + Register ephy for mime types + + * data/epiphany.desktop.in: + + Use %U, so drag and drop on ephy icon will work + + Ready for 0.6.0 + 2003-05-03 Marco Pesenti Gritti <marco@it.gnome.org> * data/ui/epiphany-bookmark-editor-ui.xml.in: @@ -50,6 +50,7 @@ Interface improvements Bugfixes * Add bugzilla info (Mark Finlay) + * Register application info (for mimetypes) (Mark Finlay) * Fix a compilation bug on 2.95 (Vincent Untz) * Fix select all for the bookmarks view (Dave Bordoley) * Paste is only sensitive when in a text entry (Dave Bordoley) diff --git a/data/Makefile.am b/data/Makefile.am index b103c6677..930f9e435 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -11,8 +11,11 @@ serverdir = $(libdir)/bonobo/servers DESKTOP_IN_FILES= epiphany.desktop.in bme.desktop.in DESKTOP_FILES= $(DESKTOP_IN_FILES:.desktop.in=.desktop) -Applicationsdir = $(datadir)/applications -Applications_DATA = $(DESKTOP_FILES) +desktopdir = $(datadir)/applications +desktop_DATA = $(DESKTOP_FILES) + +applicationsdir = $(datadir)/application-registry +applications_DATA = epiphany.applications schemadir = $(sysconfdir)/gconf/schemas schema_in_files = epiphany.schemas.in @@ -33,5 +36,6 @@ CLEANFILES = $(server_DATA) $(Applications_DATA) $(schema_DATA) EXTRA_DIST = $(server_in_files) \ $(schema_in_files) \ $(DESKTOP_IN_FILES) \ - $(about_DATA) + $(about_DATA) \ + $(applications_DATA) diff --git a/data/epiphany.applications b/data/epiphany.applications new file mode 100644 index 000000000..42283d8db --- /dev/null +++ b/data/epiphany.applications @@ -0,0 +1,7 @@ +epiphany + requires_terminal=false + expects_uris=false + command=epiphany + can_open_multiple_files=false + name=Web Browser + mime_types=text/html,text/xml,x-directory/webdav,x-directory/webdav-prefer-directory diff --git a/data/epiphany.desktop.in b/data/epiphany.desktop.in index 820bf3604..e0fe8c546 100644 --- a/data/epiphany.desktop.in +++ b/data/epiphany.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] _Name=Web Browser _Comment=Browse the web -Exec=epiphany +Exec=epiphany %U StartupNotify=true Terminal=0 Type=Application |