Skip to content
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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ nemo-compare/debian/nemo-compare/
nemo-dropbox/debian/nemo-dropbox/
nemo-emblems/debian/nemo-emblems/
nemo-fileroller/debian/nemo-fileroller/
nemo-fits/debian/nemo-fits/
nemo-image-converter/debian/nemo-image-converter/
nemo-media-columns/debian/nemo-media-columns/
nemo-pastebin/debian/nemo-pastebin/
Expand All @@ -29,3 +30,4 @@ nemo-seahorse/debian/nemo-seahorse/
nemo-share/debian/nemo-share/
nemo-terminal/debian/nemo-terminal/
tmp/
*.vscode
1 change: 1 addition & 0 deletions build-order
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ nemo-compare
nemo-dropbox
nemo-emblems
nemo-fileroller
nemo-fits
nemo-image-converter
nemo-media-columns
nemo-pastebin
Expand Down
2 changes: 2 additions & 0 deletions makepot
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ potfiles_c=(
nemo-dropbox/src/*.h
nemo-fileroller/src/*.c
nemo-fileroller/src/*.h
nemo-fits/*.c
nemo-fits/*.h
nemo-image-converter/data/*.ui.h
nemo-image-converter/src/*.c
nemo-image-converter/src/*.h
Expand Down
20 changes: 20 additions & 0 deletions nemo-fits/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Nemo Extension For fits Files

About
nemo-fits is a nemo extension which provides:
A thumbnail of .fits files.
Information from the .fits file header in the Image tab.
An option to autostretch the thumbnail.

Project page:
https://github.com/linuxmint/nemo-extensions/

Bug Tracker
https://github.com/linuxmint/nemo-extensions/issues/

Install
$ ./configure
$ make
# make install

Please read INSTALL, for detailed installation instructions.
10 changes: 10 additions & 0 deletions nemo-fits/debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
nemo-fits (6.7.0-1) wilma; urgency=medium

* Initial release
* View FITS image metadata in properties tab
* Provide thumbnails
* Optional auto-stretch for thumbnail and preview images using PixInsight
median/MADN algorithm (ported from KStars/Ekos) enabled by persistent toggle in properties page
* RGB colour image support for FITS cube format (NAXIS3=3)

-- Linux Mint <ed@thefamilee.co.uk> Sat, 29 Aug 2026 12:00:00 +0000
37 changes: 37 additions & 0 deletions nemo-fits/debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Source: nemo-fits
Section: gnome
Priority: optional
Maintainer: Linux Mint <root@linuxmint.com>
Build-Depends: debhelper-compat (= 13),
meson (>= 0.56.0),
libglib2.0-dev (>= 2.50.0),
libgtk-3-dev (>= 3.22.0),
libnemo-extension-dev (>= 3.0.0),
libcfitsio-dev (>= 3.0),
gettext,
intltool
Standards-Version: 4.6.0
Homepage: https://github.com/linuxmint/nemo-extensions

Package: nemo-fits
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
nemo (>= 3.0.0),
libcfitsio9 | libcfitsio10
Description: Nemo extension for FITS files
A Nemo extension that provides an "Image" tab
in the file properties dialog for FITS files commonly used in astronomy.
.
The extension displays metadata from FITS headers including:
- Image dimensions, colour mode, and data type
- Object name and observation details
- Telescope and instrument information
- Date of observation and exposure time
- Filter, Bayer pattern, and coordinate system information
.
A live preview with toggleable auto-stretch is shown in the properties tab.
The auto-stretch setting is saved persistently per user.
.
A thumbnailer is also provided, supporting greyscale and RGB colour images,
with auto-stretch applied by default.
9 changes: 9 additions & 0 deletions nemo-fits/debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow

%:
dh $@ --buildsystem=meson

# Don't generate a shlibs file for the plugin
override_dh_makeshlibs:
Loading