Compare commits

...

4 Commits

Author SHA1 Message Date
Jason E. Hale
697fc9b2a5 Install heatmap0r filter
Format similarly to other plugins.
2025-11-04 07:15:12 +01:00
luzpaz
91526e95fb README: Add packaging section and repology badge
Added packaging section and repology status badge to README to facilitate an efficient way to survey the status of frei0r across the package ecosystem.
2025-11-04 07:13:46 +01:00
Jaromil
e2ab161052 fix some typos (#224)
Found via codespell -L currenty,distint,fo,parm,shotcut,te,teh
2025-11-04 07:12:08 +01:00
luzpaz
b061db50aa fix some typos
Found via codespell -L currenty,distint,fo,parm,shotcut,te,teh
2025-10-24 07:11:45 -04:00
4 changed files with 8 additions and 4 deletions

View File

@@ -53,6 +53,10 @@ Stable frei0r releases are built automatically and made available on
Frei0r sourcecode is released under the terms of the GNU General Public License and, eventually other compatible Free Software licenses.
## Packaging
[![Packaging status](https://repology.org/badge/vertical-allrepos/frei0r.svg?columns=3)](https://repology.org/project/frei0r/versions)
## Build dependencies
Frei0r can be built on GNU/Linux, M$/Windows and Apple/OSX platforms, possibly in even more environments like embedded devices.

View File

@@ -8,7 +8,7 @@
* a more eye-soothing threshold effect as seen in ImageMagick.
*
* This has the added benefit that, whereas the sigmoidal filter's base
* requires manual tuning, here it is determined algorithimically and thus
* requires manual tuning, here it is determined algorithmically and thus
* can adapt on a frame-to-frame basis.
*
* This file is a Frei0r plugin.

View File

@@ -6,6 +6,6 @@ if (MSVC)
endif (MSVC)
add_library (${TARGET} MODULE ${SOURCES})
# No «lib» prefix (name.so instead of libname.so)
set_target_properties (${TARGET} PROPERTIES PREFIX "")
install (TARGETS ${TARGET} LIBRARY DESTINATION ${LIBDIR})

View File

@@ -96,7 +96,7 @@ void f0r_get_plugin_info(f0r_plugin_info_t* info)
info->major_version = 0;
info->minor_version = 1;
info->num_params = 4;
info->explanation = "Performs a continious trichromatic tinting";
info->explanation = "Performs a continuous trichromatic tinting";
}
void f0r_get_param_info(f0r_param_info_t* info, int param_index)