Skip to content

Commit 8878996

Browse files
committed
Add necessary settings to prepare for update repo with signing
1 parent 9d3b317 commit 8878996

22 files changed

+76
-11
lines changed

applyHubbleToRGB.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Transforms red, "smoky" nebula to blueish with higher contrast.
1717
*
1818
*/
1919

20-
#feature-id DeepSkyWorkflows > ApplyHubbleToRGB
20+
#feature-id ApplyHubbleToRGB : DeepSkyWorkflows > ApplyHubbleToRGB
2121

2222
#define TITLE "Apply Hubble Palette to RGB"
2323
#define FEATURE "applyHubbleToRGB"

applyHubbleToRGB/engine.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Transforms red, "smoky" nebula to blueish with higher contrast.
1717
*
1818
*/
1919

20+
#script-id ApplyHubbleEngine
21+
2022
let hubbleEngine = (function (ds) {
2123
return {
2224
preserveStars: function () {

applyHubbleToRGB/ui.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Transforms red, "smoky" nebula to blueish with higher contrast.
1717
*
1818
*/
1919

20+
#script-id ApplyHubbleUI
21+
2022
function hubbleDialog() {
2123

2224
let dialog = this;

autoLinearFitAndCombine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ then use LRGB to combine them.
2020
* mailTo:deepskyworkflows@gmail.com
2121
*/
2222

23-
#feature-id DeepSkyWorkflows > AutoLinearFit
23+
#feature-id AutoLinearFit : DeepSkyWorkflows > AutoLinearFit
2424

2525
#define TITLE "Auto Linear Fit"
2626
#define FEATURE "autoLinearFit"

createLumMask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This script will extract luminance and stretch it for a mask.
1717
* mailTo:deepskyworkflows@gmail.com
1818
*/
1919

20-
#feature-id DeepSkyWorkflows > CreateLumMask
20+
#feature-id CreateLumMask : DeepSkyWorkflows > CreateLumMask
2121

2222
#define TITLE "Luminance Mask"
2323
#define FEATURE "createLumMask"

deepDenoise.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This script implements my workflow for deconvolution. It will:
2121
* mailTo:deepskyworkflows@gmail.com
2222
*/
2323

24-
#feature-id DeepSkyWorkflows > DeepDenoise
24+
#feature-id DeepDenoise : DeepSkyWorkflows > DeepDenoise
2525

2626
#define TITLE "Deep Denoise"
2727
#define DEBUG_DD false

deepDenoise/engine.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ This script implements my workflow for denoising linear (before stretching) imag
2222
* mailTo:deepskyworkflows@gmail.com
2323
*/
2424

25+
#script-id DeepDenoiseEngine
26+
2527
let denoiseEngine = (function (ds) {
2628
return {
2729
doExtractLuminance: function () {

deepDenoise/ui.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ This script implements the UI.
1616
* mailTo:deepskyworkflows@gmail.com
1717
*/
1818

19+
#script-id DeepDenoiseUI
20+
1921
function denoiseDialog() {
2022
let dialog = this;
2123
let ds = dialog.ds;

deepSkyCommon.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Imports all of the core Deep Sky modules.
1212
* mailTo:deepskyworkflows@gmail.com
1313
*/
1414

15+
#script-id DeepSkyCommon
16+
1517
#include "deepSkyUtils.js"
1618
#include "deepSkySettingsManager.js"
1719
#include "deepSkyUI.js"

deepSkyEngine.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Engine functions.
1717
*
1818
*/
1919

20+
#script-id DeepSkyEngine
21+
2022
#include "deepSkyInit.js"
2123

2224
#ifndef DEBUG_ENGINE

0 commit comments

Comments
 (0)