<?xml version="1.0" encoding="utf-8"?>
<!--RSS generated by Flaimo.com RSS Builder [2026-08-09 10:49:54]-->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><docs>https://ap-i.net/mantis/</docs><link>https://ap-i.net/mantis/</link><description><![CDATA[MantisBT - Issues]]></description><title>MantisBT - Issues</title><image><title>MantisBT - Issues</title><url>https://ap-i.net/mantis/images/mantis_logo_notext.png</url><link>https://ap-i.net/mantis/</link><description><![CDATA[MantisBT - Issues]]></description></image><language>en</language><category>All Projects</category><ttl>10</ttl><dc:language>en</dc:language><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title>0002943: Wrong Moon Rise and Set Times in Ephemeris, and Details</title><author></author><link>https://ap-i.net/mantis/view.php?id=2943</link><description><![CDATA[When checking the rise/set times in the Ephemeris Calendar, they are totally wrong when compared to rise/set times from other sources.&lt;br /&gt;
&lt;br /&gt;
For example: &lt;a href=&quot;https://www.timeanddate.com/moon/canada/toronto&quot;&gt;https://www.timeanddate.com/moon/canada/toronto&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The same error can be found when clicking on the moon, and selecting the object details, at the very bottom:&lt;br /&gt;
&lt;br /&gt;
Rise: Local horizon 03h42m42s Azimuth: [...]&lt;br /&gt;
Transit: [...]&lt;br /&gt;
Set: Local horizon 14h06m33s Azimuth: [...]]]></description><category>1-Software</category><pubDate>Sun, 09 Aug 2026 04:27:15 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2943</guid><comments>https://ap-i.net/mantis/view.php?id=2943#bugnotes</comments></item><item><title>0002942: Indi, CCDCiel handling of Indi driver refusal connect</title><author></author><link>https://ap-i.net/mantis/view.php?id=2942</link><description><![CDATA[Noted the following:&lt;br /&gt;
&lt;br /&gt;
Indi, CCDCiel handling of Indi driver refusal connect result in this in the log:&lt;br /&gt;
&lt;br /&gt;
026-08-04T22:18:07.201 9: Sky Simulator: Connecting to INDI server &quot;localhost:7624&quot; for device &quot;Sky Simulator&quot;&lt;br /&gt;
2026-08-04T22:18:07.216 2: Connecting Mount INDI &quot;Sky Simulator&quot; …&lt;br /&gt;
2026-08-04T22:18:07.278 9: Sky Simulator: INDI server send new device: &quot;Sky Simulator&quot;&lt;br /&gt;
2026-08-04T22:18:07.278 9: Sky Simulator: Exec: indi_skysimulator, Version: 1.0, Interface: 1&lt;br /&gt;
2026-08-04T22:18:08.622 1: Sky Simulator: Server Disconnected&lt;br /&gt;
2026-08-04T22:18:09.279 1: Mount connected&lt;br /&gt;
2026-08-04T22:18:10.404 3: Sky Simulator: Mount capabilities: &lt;br /&gt;
2026-08-04T22:20:47.476 9: Disconnecting devices&lt;br /&gt;
&lt;br /&gt;
A driver that refuses a connection is legal INDI, and the client should say so rather than dropping the server and claiming success.]]></description><category>General</category><pubDate>Thu, 06 Aug 2026 08:49:57 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2942</guid><comments>https://ap-i.net/mantis/view.php?id=2942#bugnotes</comments></item><item><title>0002941: CCDCiel discovery find only one of two Alpaca servers</title><author></author><link>https://ap-i.net/mantis/view.php?id=2941</link><description><![CDATA[My Sky simulator has Alpaca server address 127.0.0.1, port 11111. When I use a com device in Ascom 7 is starts a second Alpaca server 127.0.0.1, port 32323. CCDciel sees the only the Ascom7 server. Fix to discover both servers:&lt;br /&gt;
&lt;br /&gt;
cu_alpacamanagement.pas:&lt;br /&gt;
&lt;br /&gt;
Line 354 &lt;br /&gt;
 - if not f_loopback then Result.Add('127.0.0.1');&lt;br /&gt;
&lt;br /&gt;
+   {A unicast datagram to 127.0.0.1 reaches only ONE of the sockets bound to&lt;br /&gt;
   the discovery port, so a second Alpaca server on the same machine - ASCOM&lt;br /&gt;
   7 starts one automatically - is silently invisible.  The loopback&lt;br /&gt;
   broadcast address is delivered to every socket bound with SO_REUSEADDR,&lt;br /&gt;
   so all local servers answer.}&lt;br /&gt;
  if not f_loopback then begin&lt;br /&gt;
    Result.Add('127.255.255.255');&lt;br /&gt;
    Result.Add('127.0.0.1');&lt;br /&gt;
  end;&lt;br /&gt;
&lt;br /&gt;
Keeping 127.0.0.1 as well costs one extra datagram and covers any server that binds the loopback address explicitly rather than 0.0.0.0; the duplicate check drops the second reply from a server that answers both.]]></description><category>General</category><pubDate>Wed, 05 Aug 2026 11:30:12 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2941</guid><comments>https://ap-i.net/mantis/view.php?id=2941#bugnotes</comments></item><item><title>0002940: Minor tweak in cu_tiff.pas</title><author></author><link>https://ap-i.net/mantis/view.php?id=2940</link><description><![CDATA[Minor tweak in cu_tiff.pas, remove the thefile.free in lines 370, 522, 661, 808&lt;br /&gt;
&lt;br /&gt;
try&lt;br /&gt;
  thefile := tfilestream.Create(filen2, fmcreate);&lt;br /&gt;
except&lt;br /&gt;
  thefile.free;      // &lt;-- thefile is garbage here&lt;br /&gt;
  exit;&lt;br /&gt;
end;&lt;br /&gt;
&lt;br /&gt;
or use attached version]]></description><category>General</category><pubDate>Wed, 29 Jul 2026 14:55:29 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2940</guid><comments>https://ap-i.net/mantis/view.php?id=2940#bugnotes</comments></item><item><title>0002939: Le driver de Bresser ne veut pas s'installer</title><author></author><link>https://ap-i.net/mantis/view.php?id=2939</link><description><![CDATA[C'est un problème avec ASCOM j'aimerai savoir si d'autre ont eu le même problème ?]]></description><category>General</category><pubDate>Sat, 25 Jul 2026 09:48:39 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2939</guid><comments>https://ap-i.net/mantis/view.php?id=2939#bugnotes</comments></item><item><title>0002927: Camera cooling not fully stopped</title><author></author><link>https://ap-i.net/mantis/view.php?id=2927</link><description><![CDATA[Hello,&lt;br /&gt;
&lt;br /&gt;
when selecting camera warmup as termination command of a planned sequence, CCDCiel just sets the target temperature to 20°C. This is in summer not ideal, since the ambient temperature can go higher. This leads to continued cooling at the end of the session (or during daytime, if CCDCiel not terminated until then).&lt;br /&gt;
&lt;br /&gt;
I see the following as possible solutions:&lt;br /&gt;
- Set target temperature to really high values (e.g. 60°C)&lt;br /&gt;
- Disable cooling instead of increasing target temperature&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thank you]]></description><category>General</category><pubDate>Mon, 20 Jul 2026 22:04:47 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2927</guid><comments>https://ap-i.net/mantis/view.php?id=2927#bugnotes</comments></item><item><title>0002935: Fails to import CSV file for sequence</title><author></author><link>https://ap-i.net/mantis/view.php?id=2935</link><description><![CDATA[Using Sequence-&gt; new and Import csv to pick the file, entire line appears in one column, even the commas.]]></description><category>General</category><pubDate>Mon, 20 Jul 2026 22:04:09 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2935</guid><comments>https://ap-i.net/mantis/view.php?id=2935#bugnotes</comments></item><item><title>0002938: New multi-theaded tiff unit</title><author></author><link>https://ap-i.net/mantis/view.php?id=2938</link><description><![CDATA[Attached an update for the unit cu_tiff.pas. It is now multi-threaded and twice as fast.&lt;br /&gt;
&lt;br /&gt;
With reference to the other issue I raised, I have also an multi-threaded rice compression unit for fits.fz files.  Works well and compression/decompression time is much smaller then the I/O processing time. Seems to me the way to go if you use compatible software like Sirl or ASTAP for stacking.&lt;br /&gt;
&lt;br /&gt;
cs, Han]]></description><category>General</category><pubDate>Mon, 20 Jul 2026 22:02:58 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2938</guid><comments>https://ap-i.net/mantis/view.php?id=2938#bugnotes</comments></item><item><title>0002936: Rice compression in native Pascal code.</title><author></author><link>https://ap-i.net/mantis/view.php?id=2936</link><description><![CDATA[Hi Patrick,&lt;br /&gt;
&lt;br /&gt;
I have just finished for my ASTAP program the reading and writing rice compressed files using native Pascal code. This makes the utility program fpack and funpack redundant. The implementation is as follows:&lt;br /&gt;
&lt;br /&gt;
Read 16 bit and floating point fits files. Format rice only. Not gzip;&lt;br /&gt;
Write 16 bit fits files.&lt;br /&gt;
&lt;br /&gt;
I skipped writing floating point fits files since rice is an compression for integer files and compression of floating point is always lossy. It is also not relevant for CCDCiel.&lt;br /&gt;
&lt;br /&gt;
Compression for my 16 bit images is identical to fpack to about 40%. Compression is lossless so nothing is lost.&lt;br /&gt;
&lt;br /&gt;
The question would you be interested in adding native rice compression/decompression to CCdCiel? If so I can start working on it.&lt;br /&gt;
&lt;br /&gt;
cs, Han]]></description><category>General</category><pubDate>Mon, 20 Jul 2026 22:02:36 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2936</guid><comments>https://ap-i.net/mantis/view.php?id=2936#bugnotes</comments></item><item><title>0002937: Unable to install virtualmoon_9.1_amd64.deb on Ubuntu 26,04</title><author></author><link>https://ap-i.net/mantis/view.php?id=2937</link><description><![CDATA[I downloaded the last version but install stop for Package libgtk2.0-0 is not installed.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;mailto:corrado@corrado-ns2-resolute&quot;&gt;corrado@corrado-ns2-resolute&lt;/a&gt;:~$ inxi -SCGc&lt;br /&gt;
System:&lt;br /&gt;
  Host: corrado-ns2-resolute Kernel: 7.0.0-27-generic arch: x86_64 bits: 64&lt;br /&gt;
  Desktop: GNOME v: 50.1 Distro: Ubuntu 26.04 LTS (Resolute Raccoon)&lt;br /&gt;
CPU:&lt;br /&gt;
  Info: quad core model: 12th Gen Intel Core i3-12100 bits: 64 type: MT MCP&lt;br /&gt;
    cache: L2: 5 MiB&lt;br /&gt;
  Speed (MHz): avg: 799 min/max: 800/5500 cores: 1: 799 2: 799 3: 799 4: 799&lt;br /&gt;
    5: 799 6: 799 7: 799 8: 799&lt;br /&gt;
Graphics:&lt;br /&gt;
  Device-1: Intel Alder Lake-S GT1 [UHD Graphics 730] driver: i915 v: kernel&lt;br /&gt;
  Device-2: Logitech QuickCam Pro 9000 driver: snd-usb-audio,uvcvideo&lt;br /&gt;
    type: USB&lt;br /&gt;
  Display: wayland server: X.Org v: 24.1.10 with: Xwayland v: 24.1.10&lt;br /&gt;
    compositor: gnome-shell driver: dri: iris gpu: i915&lt;br /&gt;
    resolution: 1920x1080~60Hz&lt;br /&gt;
  API: EGL v: 1.5 drivers: iris,swrast&lt;br /&gt;
    platforms: gbm,wayland,x11,surfaceless,device&lt;br /&gt;
  API: OpenGL v: 4.6 compat-v: 4.5 vendor: intel mesa v: 26.0.3-1ubuntu1&lt;br /&gt;
    renderer: Mesa Intel UHD Graphics 730 (ADL-S GT1)&lt;br /&gt;
  Info: Tools: api: eglinfo,glxinfo x11: xdriinfo, xdpyinfo, xprop, xrandr&lt;br /&gt;
&lt;a href=&quot;mailto:corrado@corrado-ns2-resolute&quot;&gt;corrado@corrado-ns2-resolute&lt;/a&gt;:~$]]></description><category>1-Software</category><pubDate>Mon, 20 Jul 2026 21:50:20 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2937</guid><comments>https://ap-i.net/mantis/view.php?id=2937#bugnotes</comments></item><item><title>0002933: Ce n'est pas la bonne étoile qui est amenée sur la fente</title><author></author><link>https://ap-i.net/mantis/view.php?id=2933</link><description><![CDATA[Bonjour Patrick,&lt;br /&gt;
&lt;br /&gt;
J'ai réussi à faire des scripts pour automatiser les acquisitions en spectro avec CCD Ciel. Parmi ceux-ci, celui qui permet d'amener la cible à l'endroit voulu sur la fente. Les positions sur la caméra chercheur et sur la caméra de guidage ont été synchronisées au préalable en cliquant puis en ajustant avec les valeurs.&lt;br /&gt;
Ca fonctionne le plus souvent, par exemple sur T Crb puis Ups CrB (étoile de référence) mais pour la séquence qui a suivi sur V1331 Cyg, ça n'a pas accroché la bonne étoile.. J'avais pris deux étoiles de référence pour comparer mon traitement, une des deux a été ratée également (Rho Cyg).&lt;br /&gt;
&lt;br /&gt;
Je joins le log qui le montre, mon script dérivé de celui existant dans CCD Ciel (qui ne fonctionnait pas pour moi) et ma séquence. Les parties qui concerne l'arrêt du guuidage, calib et flats fonctionnent.&lt;br /&gt;
&lt;br /&gt;
Mon setup est un newton 150/750, un Alpy 600 et une Player One IMX585, une ASI290M en guidage, une ASI678MC sur lunette 50/205 en chercheur le tout sur ZWO AM5.&lt;br /&gt;
&lt;br /&gt;
Je ne sais pas comment améliorer la détection de la bonne étoile..&lt;br /&gt;
Merci d'avance pour votre aide !]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:52:32 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2933</guid><comments>https://ap-i.net/mantis/view.php?id=2933#bugnotes</comments></item><item><title>0002931: The crosshair is randomly shift of the center in the preview image</title><author></author><link>https://ap-i.net/mantis/view.php?id=2931</link><description><![CDATA[CCDCiel version 0.9.94-4104-e6ad9b65&lt;br /&gt;
&lt;br /&gt;
Sometimes the crosshair is wrongly displayed off center and have to be deactivated and reactivated again to be redrawn in the center of the preview image.]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:52:09 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2931</guid><comments>https://ap-i.net/mantis/view.php?id=2931#bugnotes</comments></item><item><title>0002930: Auto guiding step 2 calibration error</title><author></author><link>https://ap-i.net/mantis/view.php?id=2930</link><description><![CDATA[CCDCiel Version: 0.9.94-4104-e6ad9b65&lt;br /&gt;
&lt;br /&gt;
After doing the first step of the CCDCiel autoguider calibration when doing the second step I got several times the following error and then the auto guider was stuck until a CCDCiel relaunch :&lt;br /&gt;
&lt;br /&gt;
telescope/0: Pulse guide error: duration -1293 must be between 1 and 10000 ms.&lt;br /&gt;
&lt;br /&gt;
Telescope/0 is a Benro Polaris mount with Alapca v2.2beta driver (&lt;a href=&quot;https://github.com/ogecko/alpaca-benro-polaris&quot;&gt;https://github.com/ogecko/alpaca-benro-polaris&lt;/a&gt;)]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:51:46 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2930</guid><comments>https://ap-i.net/mantis/view.php?id=2930#bugnotes</comments></item><item><title>0002929: Type de fichier</title><author></author><link>https://ap-i.net/mantis/view.php?id=2929</link><description><![CDATA[Bonjour Patrick,&lt;br /&gt;
Serait-il possible d'ajouter un type de capture pour la spectro : Calibration (en plus de Light, Bias, Dark et Flat).&lt;br /&gt;
J'ai réussi à automatiser les captures (Alpy 600 + module de calibration/flats + bidouille arduino) mais pour mes fichiers de calibration, le nom donné est celui de la séquence puisqu'il n'y a pas ce type dans la liste, contrairement à Flat dans mon cas mis exemple.&lt;br /&gt;
Merci d'avance pour cette évolution.. ou  solution de contournement.&lt;br /&gt;
&lt;br /&gt;
Jean-Marc Moreau]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:50:50 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2929</guid><comments>https://ap-i.net/mantis/view.php?id=2929#bugnotes</comments></item><item><title>0002928: Predefined histrogram settings for full 16 bit cameras</title><author></author><link>https://ap-i.net/mantis/view.php?id=2928</link><description><![CDATA[This is a follow-up of the discussion &lt;a href=&quot;https://groups.io/g/ccdciel/topic/118169275#msg4158&quot;&gt;https://groups.io/g/ccdciel/topic/118169275#msg4158&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
For true 16 bit cameras with unity gain setting the output increase one ADU for each electron. Then in practise most histogram data is typically contained in a few hundred ADU. These cameras require in CCDCiel an presetting &quot;Extreme&quot; to get a good contrast.  &lt;br /&gt;
&lt;br /&gt;
This is different then for 12 bit cameras whitch unity gain setting where the output increases with 16 ADU for each electron. For those 12 bit cameras the histogram data is 16 times wider. The more moderate stretching settings are required.&lt;br /&gt;
&lt;br /&gt;
So 12 bit camera there is an inherent gain of 16 build in the data.&lt;br /&gt;
&lt;br /&gt;
Is there a way to adapt the stretching for this true 16 bit cameras to cope with this factor 16?]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:50:13 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2928</guid><comments>https://ap-i.net/mantis/view.php?id=2928#bugnotes</comments></item><item><title>0002925: Gain and offset settings in sequence and camera tab</title><author></author><link>https://ap-i.net/mantis/view.php?id=2925</link><description><![CDATA[With the setup of Gerard I noted the following:&lt;br /&gt;
&lt;br /&gt;
Setup with Windows, ASI1600 camera&lt;br /&gt;
 &lt;br /&gt;
1) Yesterday using the camera tab both the gain and offset values where not in the FITS header.&lt;br /&gt;
&lt;br /&gt;
2) Today&lt;br /&gt;
&lt;br /&gt;
1) Gain and offset are recorded in the header if a sequence is run.&lt;br /&gt;
2) Gain and offset are NOT recorded if images are made using the camera tab.&lt;br /&gt;
&lt;br /&gt;
After a reset of CCDCiel both gain and offst where recorded. So the problem was fixed by a program reset&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3) When I switched between profiles, it is possible that the offset setting is not visible. After a reset it is visible again. See attached screenshots.&lt;br /&gt;
&lt;br /&gt;
4) The offset in CCDciel does not change the background of the ASI1600 image. But the camera driver offset setting does. So it looks like the offset in not transmitted to the ASI1600 driver.&lt;br /&gt;
  &lt;br /&gt;
Screenshots of the ASI1600 connected are attached. Note that the offset is missing in the second screenshot.]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:49:51 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2925</guid><comments>https://ap-i.net/mantis/view.php?id=2925#bugnotes</comments></item><item><title>0002926: Séquence d'acquisition en spectro : démarrage des captures avant que l'étoile soit sur la fente</title><author></author><link>https://ap-i.net/mantis/view.php?id=2926</link><description><![CDATA[Bonjour Patrick,&lt;br /&gt;
J'ai créé une séquence pour acquérir plusieurs spectres de façons automatique. Le centrage de l'étoile sur la fente se fait bien comme il faut mais les acquisitions ont démarré avant que le centrage soit finalisé. Je ne vois rien dans la séquence (étape prévue/condition) qui permettrait de temporiser ou asservir le début des acquisitions au positionnement correct. J'ai ajouter quelques captures qui seront perdues de fait mais je me dis qu'il doit y avoir une solution plus élégante..&lt;br /&gt;
&lt;br /&gt;
Merci d'avance pour votre aide (encore une fois..)&lt;br /&gt;
JM.]]></description><category>General</category><pubDate>Fri, 26 Jun 2026 17:49:15 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2926</guid><comments>https://ap-i.net/mantis/view.php?id=2926#bugnotes</comments></item><item><title>0002932: Setting server log file in IndiStarter setup ask permission to access Documents directory</title><author></author><link>https://ap-i.net/mantis/view.php?id=2932</link><description><![CDATA[IndiStarter version 0.9.94-4104-e6ad9b65&lt;br /&gt;
&lt;br /&gt;
After setting a directory path for server log file setting and restarting IndiStarter, it keeps asking permission to access Document directory but was stuck after allowing it. After a restart it keeps asking for the permission, again and again until I removed the path in the server log file setting.]]></description><category>General</category><pubDate>Thu, 18 Jun 2026 14:18:01 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2932</guid><comments>https://ap-i.net/mantis/view.php?id=2932#bugnotes</comments></item><item><title>0002896: SVBony powerbox switch</title><author></author><link>https://ap-i.net/mantis/view.php?id=2896</link><description><![CDATA[I couldn't connect to the SVbony SV241Pro powerbox (&lt;a href=&quot;https://www.svbony.com/products/sv241-remote-astro-power-controller&quot;&gt;https://www.svbony.com/products/sv241-remote-astro-power-controller&lt;/a&gt;) using ASCOM. It shows an error: &quot;ASCOM.SVBONY.Switch: Connection error: Method 'Connect' is not supported by automation object&quot;&lt;br /&gt;
&lt;br /&gt;
The ASCOM driver is installed, and I can connect it from Astro Photography Tool (APT). Also, if I use INDI (running on Raspberry Pi), I can connect to it from CCDCiel running on Windows.&lt;br /&gt;
But I couldn't change values in the PWM fields in the switch window. They always immediately return to default values. The only option is to set it directly in the INDI server settings.]]></description><category>General</category><pubDate>Thu, 11 Jun 2026 14:25:28 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2896</guid><comments>https://ap-i.net/mantis/view.php?id=2896#bugnotes</comments></item><item><title>0002923: La texture ne s'affiche pas avec la version de base 9.0 sous Windows 11 64bits</title><author></author><link>https://ap-i.net/mantis/view.php?id=2923</link><description><![CDATA[Bonjour&lt;br /&gt;
J'ai installé la version de base 9.0 sur windows 11 64bits. Après lancement de l'applicatif AtLune, je n'ai à qu'un écran noire dans la partie texture. Quand je déplace la sourie, les coordonnées et altutudes changent comme attendu.&lt;br /&gt;
Cordialement&lt;br /&gt;
Jacques]]></description><category>1-Software</category><pubDate>Mon, 25 May 2026 17:26:48 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2923</guid><comments>https://ap-i.net/mantis/view.php?id=2923#bugnotes</comments></item><item><title>0002924: Nom des captures</title><author></author><link>https://ap-i.net/mantis/view.php?id=2924</link><description><![CDATA[Bonjour Patrick,&lt;br /&gt;
Je n'arrive pas à faire nommer les fichiers capturés avec CCDCiel sous une forme directement adaptée au traitement avec SpecINTI.&lt;br /&gt;
Ils sont sous cette forme : HD237475-300s-1x1-0C-20260521-224938-210-6 &lt;br /&gt;
J'aimerai qu'ils soient sous celle-ci : HD237475-300s-1x1-0C-20260521-210-6-1, HD237475-300s-1x1-0C-20260521-210-6-2,...., HD237475-300s-1x1-0C-20260521-210-6-11&lt;br /&gt;
C'est à dire sans l'heure et avec un incrément automatique -1, -2,... , -11, -12 etc...&lt;br /&gt;
Idem pour les flats, darks, offsets et calib.&lt;br /&gt;
&lt;br /&gt;
Merci d'avance pour votre explication !&lt;br /&gt;
JM]]></description><category>General</category><pubDate>Sun, 24 May 2026 11:49:56 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2924</guid><comments>https://ap-i.net/mantis/view.php?id=2924#bugnotes</comments></item><item><title>0002841: Implémentation de Platesolve3</title><author></author><link>https://ap-i.net/mantis/view.php?id=2841</link><description><![CDATA[Bonjour Patrick&lt;br /&gt;
Aujourd'hui CCDCIEL intègre, entre autres, comme solveur Platesolve2. Pour NINA, le concepteur a proposé la version améliorée Platesolve3 , en autonome,  qui est plus rapide, fonctionne en aveugle et hors ligne, il pourrait être intéressant pour CCDCIEL d'intégrer ce solveur (il reste une place dans l'interface pour un choix :)).&lt;br /&gt;
 J'ai essayé une intégration à l'arrache en changeant juste le nom de l'exe de platesolve3 en platesolve2 (on ne sait jamais), ça lance bien l'application, mais après ça se bloque ..., les paramètres doivent être différents.&lt;br /&gt;
- Page NINA (line de téléchargement en fin de page) :&lt;br /&gt;
&lt;a href=&quot;https://nighttime-imaging.eu/docs/master/site/advanced/platesolving/&quot;&gt;https://nighttime-imaging.eu/docs/master/site/advanced/platesolving/&lt;/a&gt;&lt;br /&gt;
- Modalités de commande en PJ.&lt;br /&gt;
Cordialement&lt;br /&gt;
Jacques]]></description><category>General</category><pubDate>Sun, 17 May 2026 21:27:43 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2841</guid><comments>https://ap-i.net/mantis/view.php?id=2841#bugnotes</comments></item><item><title>0002921: Consistant progress display of guide/finder camera exposure time</title><author></author><link>https://ap-i.net/mantis/view.php?id=2921</link><description><![CDATA[When looping through exposures from the finder and guider camera, the progress indicator of the camera is not displayed at a consistent location and, depending on the chosen tab, not displayed at all. When for instance doing an AutoFocus the exposure progress is not shown at all. In the tabs where it is shown it is shown at different locations. It would be appreciated if an exposure progress bar could be added next to the exposure progress bar of the main camera. Being able to see this progress is especially useful when working with long exposures (e.g. 30s).]]></description><category>General</category><pubDate>Fri, 08 May 2026 20:12:30 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2921</guid><comments>https://ap-i.net/mantis/view.php?id=2921#bugnotes</comments></item><item><title>0002922: Add indicator in split guider/finder view to show which image is (or not is) being refreshed</title><author></author><link>https://ap-i.net/mantis/view.php?id=2922</link><description><![CDATA[When using the split finder/guider window two images are shown to the user. Currently it is, however, not possible to tell which one is recent and which one is old. It would be good to make it clear that an image has recently been (or soon will be) refreshed, and/or to indicate which image is old (old being older than the image in the other pane).&lt;br /&gt;
&lt;br /&gt;
A few suggestions:&lt;br /&gt;
- a small red dot in a corner or along the edge of the window that is not currently being refreshed and a green one in the other&lt;br /&gt;
- greying the window that has the oldest image of the two (i.e. adding a grey layer with transparency)&lt;br /&gt;
&lt;br /&gt;
Nicolàs]]></description><category>General</category><pubDate>Fri, 08 May 2026 20:12:08 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2922</guid><comments>https://ap-i.net/mantis/view.php?id=2922#bugnotes</comments></item><item><title>0002919: Spectroscopy, ghost stars supression for focusing and solving.</title><author></author><link>https://ap-i.net/mantis/view.php?id=2919</link><description><![CDATA[For bright stars, a reflection on the slit glas results in two ghost stars with a different focus point. This is problematic for focusing and solving.&lt;br /&gt;
&lt;br /&gt;
To fix this there are two options:&lt;br /&gt;
&lt;br /&gt;
1) Focus on the brightest star only. This will not help for solving but in some case solving could cope with ghost stars.&lt;br /&gt;
2) Blackout the ghost star above and below using a software routine.&lt;br /&gt;
&lt;br /&gt;
Which option to implement? 1) or 2) or both? &lt;br /&gt;
&lt;br /&gt;
For 2) I have developed a simple brute force procedure which works. I will attach it later.]]></description><category>General</category><pubDate>Fri, 08 May 2026 20:11:35 +0200</pubDate><guid>https://ap-i.net/mantis/view.php?id=2919</guid><comments>https://ap-i.net/mantis/view.php?id=2919#bugnotes</comments></item></channel></rss>
