diff --git a/Application/src/grabber/default_config.cpp b/Application/src/grabber/default_config.cpp
index 6397cd0ce6da4562f8234e8b771d4e393a7bdc5e..c1211a79892951b23b7c8272553a74bb237a7e5e 100644
--- a/Application/src/grabber/default_config.cpp
+++ b/Application/src/grabber/default_config.cpp
@@ -72,7 +72,7 @@ namespace default_config {
 #endif
         
         CONFIG("app_name", std::string("TGrabs"), "Name of the application.", SYSTEM);
-        CONFIG("version", std::string("1.0"), "Version of the application.", SYSTEM);
+        CONFIG("version", std::string("1.0.4"), "Version of the application.", SYSTEM);
         CONFIG("color_channel", size_t(1), "Index (0-2) of the color channel to be used during video conversion, if more than one channel is present in the video file.");
         CONFIG("system_memory_limit", uint64_t(0), "Custom override of how many bytes of system RAM the program is allowed to fill. If `approximate_length_minutes` or `stop_after_minutes` are set, this might help to increase the resulting RAW video footage frame_rate.");
         
diff --git a/Application/src/tracker/misc/default_config.cpp b/Application/src/tracker/misc/default_config.cpp
index cc3be4e542e1cbef4f218c080d64c1b4c19e8887..088e3d6d1b11968737b9af66e83cafe09c597562 100644
--- a/Application/src/tracker/misc/default_config.cpp
+++ b/Application/src/tracker/misc/default_config.cpp
@@ -238,7 +238,7 @@ file::Path conda_environment_path() {
         Adding adding(config, docs, fn);
         
         CONFIG<std::string>("app_name", "TRex", "Name of the application.", SYSTEM);
-        CONFIG("version", std::string("1.0"), "Current application version.", SYSTEM);
+        CONFIG("version", std::string("1.0.4"), "Current application version.", SYSTEM);
         CONFIG("build_type", std::string(g_TREX_BUILD_TYPE), "The mode the application was built in.", SYSTEM);
         CONFIG("build_is_debug", std::string(is_ndebug_enabled()), "If built in debug mode, this will show 'debug'.", SYSTEM);
         CONFIG("build_cxx_options", std::string(g_TREX_BUILD_CXX_OPTIONS), "The mode the application was built in.", SYSTEM);
diff --git a/conda/meta.yaml b/conda/meta.yaml
index 75e4cdb69c6676859238ced73582fd2d905a513d..15b331a385bca32c57e4ac3d84ded6284063e5c2 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -5,10 +5,9 @@ package:
 source:
     git_url: https://github.com/mooch443/trex.git
     git_depth: 1
-    git_rev: 4ff9645ea75ab4b1be21ce409080763bcb0359ea
 
 build:
-    number: 5
+    number: 6
     string: saur
     run_exports:
         - {{ pin_compatible('ffmpeg', min_pin='x.x.x', max_pin='x.x.x') }}