[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kstars-devel
Subject:    Re: [Kstars-devel] Kstars-devel Digest, Vol 63, Issue 2
From:       "=?ISO-8859-1?Q?Pedro_Sim=E3o?=" <pedrolimao () gmail ! com>
Date:       2008-10-03 13:21:48
Message-ID: 4ae8e2230810030621j25af0106i9a5f333022f8bb3c () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hi,
I am still trying to download Kstars but I dont now where to find it.
Where can I get? Is ther a version for windows?
Thx

On Fri, Oct 3, 2008 at 7:00 AM, <kstars-devel-request@kde.org> wrote:

> Send Kstars-devel mailing list submissions to
>        kstars-devel@kde.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        https://mail.kde.org/mailman/listinfo/kstars-devel
> or, via email, send a message with subject or body 'help' to
>        kstars-devel-request@kde.org
>
> You can reach the person managing the list at
>        kstars-devel-owner@kde.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Kstars-devel digest..."
>
>
> Today's Topics:
>
>   1. Re: INDI as a separate package (Brian)
>   2. KDE/kdeedu/kstars/kstars (Akarsh Simha)
>   3. KDE/kdeedu/kstars/kstars/tools (Akarsh Simha)
>   4. Re: INDI as a separate package (Jasem Mutlaq)
>   5. (no subject)
>   6. KDE/kdeedu/kstars/kstars/skycomponents (Akarsh Simha)
>   7. KDE/kdeedu/kstars/kstars/skycomponents (Akarsh Simha)
>   8. KDE/kdeedu/kstars/kstars/tools (Akarsh Simha)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 02 Oct 2008 21:29:10 +1000
> From: Brian <bnc@astronomicalresearchaustralia.org>
> Subject: Re: [Kstars-devel] INDI as a separate package
> To: KStars Development Mailing List <kstars-devel@kde.org>
> Message-ID: <48E4B086.6070001@astronomicalresearchaustralia.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Jasem,
> As you know I use INDI extensively every clear night.
> As long as the separate install works ok and we do not lose any
> functionality, should be fine by me.
> However, would it still integrate with kstars, i.e. will I still be able
> to right click on a star and tell the scope to slew to it?
>
> I was bit concerned when I found out that all the hardware drivers were
> being removed. Has the doco been changed to describe how to install
> required drivers?
>
> I am currently running my observatory on suse 10.3 on a 64bit machine.
> I have also installed a SUSE 11.0, which uses kde4  in part.
> What level of kde4 will I need to test the new indi?
> Can I download it vis svn?
>
> Thanks,
> Brian
>
> Jasem Mutlaq wrote:
> > Hi,
> >
> > After much consideration, I think it is better to remove INDI from KStars
> > repo and make it as an optional add on. This is due to many factors
> > including maintenance of two INDIs (KStars and the primary) and packaging
> > consideration (some distros ship the two INDIs!). Furthermore, INDI is
> only
> > available for Linux and KStars can be now run on multiple OSes. All in
> all,
> > there will be less headache and only one INDI package will be available.
> > Please let me know if there are any objections to this idea.
> >
> > Regards,
> > Jasem
> >
> >
> >
> > _______________________________________________
> > Kstars-devel mailing list
> > Kstars-devel@kde.org
> > https://mail.kde.org/mailman/listinfo/kstars-devel
> >
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 02 Oct 2008 20:46:55 +0000
> From: Akarsh Simha <akarshsimha@gmail.com>
> Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars
> To: kde-commits@kde.org
> Cc: kstars-devel@kde.org
> Message-ID: <1222980415.831939.17881.nullmailer@svn.kde.org>
> Content-Type: text/plain; charset=UTF-8
>
> SVN commit 867116 by asimha:
>
> Fixes incorrect message in What's Up Tonight Dialog. Should not
> translate an empty string.
>
> Many thanks to Avinash Krishnakumar and Suvinay S for helping me out.
>
> CCMAIL: kstars-devel@kde.org
>
>
>
>  M  +4 -4      geolocation.h
>
>
> --- trunk/KDE/kdeedu/kstars/kstars/geolocation.h #867115:867116
> @@ -124,19 +124,19 @@
>     QString name() const { return Name; }
>     /**@return translated City name
>        */
> -    QString translatedName() const { return i18nc("City name (optional,
> probably does not need a translation)", Name.toUtf8().data()); }
> -    /**@return untranslated Province name
> +    QString translatedName() const { return Name.isEmpty() ? QString() :
> i18nc("City name (optional, probably does not need a translation)",
> Name.toUtf8().data()); }
> +    /**@return untranslated Province name
>        */
>     QString province() const { return Province; }
>     /**@return translated Province name
>        */
> -    QString translatedProvince() const { return i18nc("Region/state name
> (optional, rarely needs a translation)", Province.toUtf8().data()); }
> +    QString translatedProvince() const { return Province.isEmpty() ?
> QString() : i18nc("Region/state name (optional, rarely needs a
> translation)", Province.toUtf8().data()); }
>     /**@return untranslated Country name
>        */
>     QString country() const { return Country; }
>     /**@return translated Country name
>      */
> -    QString translatedCountry() const { return i18nc("Country name
> (optional, but should be translated)", Country.toUtf8().data()); }
> +    QString translatedCountry() const { return Country.isEmpty() ?
> QString() :  i18nc("Country name (optional, but should be translated)",
> Country.toUtf8().data()); }
>
>     /**@return comma-separated city, province, country names (each
> localized)
>      */
>
>
> ------------------------------
>
> Message: 3
> Date: Thu, 02 Oct 2008 21:22:05 +0000
> From: Akarsh Simha <akarshsimha@gmail.com>
> Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/tools
> To: kde-commits@kde.org
> Cc: kstars-devel@kde.org
> Message-ID: <1222982525.625949.19301.nullmailer@svn.kde.org>
> Content-Type: text/plain; charset=UTF-8
>
> SVN commit 867132 by asimha:
>
> Fixing incorrect label in the Conjunctions Dialog. The conjunction
> tool, since quite some time, allows one of the objects to be a generic
> sky object.
>
> CCMAIL: kstars-devel@kde.org
>
>
>
>  M  +1 -1      conjunctions.ui
>
>
> --- trunk/KDE/kdeedu/kstars/kstars/tools/conjunctions.ui #867131:867132
> @@ -86,7 +86,7 @@
>         </sizepolicy>
>        </property>
>        <property name="text" >
> -        <string>Between solar system bodies:</string>
> +        <string>Between objects:</string>
>        </property>
>       </widget>
>      </item>
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 3 Oct 2008 01:31:10 +0300
> From: "Jasem Mutlaq" <mutlaqja@ikarustech.com>
> Subject: Re: [Kstars-devel] INDI as a separate package
> To: <bnc@astronomicalresearchaustralia.org>,    "'KStars Development
>        Mailing List'" <kstars-devel@kde.org>
> Message-ID: <001101c924de$941b3340$bc5199c0$@com>
> Content-Type: text/plain;       charset="us-ascii"
>
> Hi Brian,
>
>
> ------------------------------
>
> Message: 5
> Message-ID: <mailman.8.1223028009.12356.kstars-devel@kde.org>
>
> packagers ship KStars, they compile it with the INDI package, and I'll try
> to make sure this happens on Linux. Regarding drivers which depend on
> external libraries like apogee, sbig, ..etc, they will not be part of the
> primary INDI package, but they'll be offered as separate packages.
> Installation-wise, I'm using SUSE BuildService to make all these packages
> available to all major distributions, and will try to include them in the
> official repo for each major distribution.
>
> Regards,
> Jasem
>
> > -----Original Message-----
> > From: Brian [mailto:bnc@astronomicalresearchaustralia.org]
> > Sent: Thursday, October 02, 2008 2:29 PM
> > To: KStars Development Mailing List
> > Subject: Re: [Kstars-devel] INDI as a separate package
> >
> > Hi Jasem,
> > As you know I use INDI extensively every clear night.
> > As long as the separate install works ok and we do not lose any
> > functionality, should be fine by me.
> > However, would it still integrate with kstars, i.e. will I still be
> > able
> > to right click on a star and tell the scope to slew to it?
> >
> > I was bit concerned when I found out that all the hardware drivers were
> > being removed. Has the doco been changed to describe how to install
> > required drivers?
> >
> > I am currently running my observatory on suse 10.3 on a 64bit machine.
> > I have also installed a SUSE 11.0, which uses kde4  in part.
> > What level of kde4 will I need to test the new indi?
> > Can I download it vis svn?
> >
> > Thanks,
> > Brian
> >
> > Jasem Mutlaq wrote:
> > > Hi,
> > >
> > > After much consideration, I think it is better to remove INDI from
> > KStars
> > > repo and make it as an optional add on. This is due to many factors
> > > including maintenance of two INDIs (KStars and the primary) and
> > packaging
> > > consideration (some distros ship the two INDIs!). Furthermore, INDI
> > is only
> > > available for Linux and KStars can be now run on multiple OSes. All
> > in all,
> > > there will be less headache and only one INDI package will be
> > available.
> > > Please let me know if there are any objections to this idea.
> > >
> > > Regards,
> > > Jasem
> > >
> > >
> > >
> > > _______________________________________________
> > > Kstars-devel mailing list
> > > Kstars-devel@kde.org
> > > https://mail.kde.org/mailman/listinfo/kstars-devel
> > >
> > _______________________________________________
> > Kstars-devel mailing list
> > Kstars-devel@kde.org
> > https://mail.kde.org/mailman/listinfo/kstars-devel
>
>
>
>
> ------------------------------
>
> Message: 6
> Date: Fri, 03 Oct 2008 00:51:22 +0000
> From: Akarsh Simha <akarshsimha@gmail.com>
> Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents
> To: kde-commits@kde.org
> Cc: kstars-devel@kde.org
> Message-ID: <1222995082.417519.25899.nullmailer@svn.kde.org>
> Content-Type: text/plain; charset=UTF-8
>
> SVN commit 867186 by asimha:
>
> Remove the warning about magnitude jump. While this is great help for
> debugging and exposes hidden problems, it is a nuisance with the NOMAD
> catalog and since the catalogs and code are pretty much fine, it might
> be safe to remove it now.
>
> CCMAIL: kstars-devel@kde.org
>
>
>
>  M  +2 -0      starblocklist.cpp
>
>
> --- trunk/KDE/kdeedu/kstars/kstars/skycomponents/starblocklist.cpp
> #867185:867186
> @@ -135,10 +135,12 @@
>        }
>
>         blocks[nBlocks - 1]->addStar( &star );
> +        /*
>         if( faintMag > -5.0 && fabs(faintMag - blocks[nBlocks -
> 1]->getFaintMag()) > 0.2 ) {
>             kDebug() << "Encountered a jump from mag" << faintMag << "to
> mag"
>                      << blocks[nBlocks - 1]->getFaintMag() << "in trixel"
> << trixel;
>         }
> +        */
>         faintMag = blocks[nBlocks - 1]->getFaintMag();
>         nStars++;
>     }
>
>
> ------------------------------
>
> Message: 7
> Date: Fri, 03 Oct 2008 01:23:57 +0000
> From: Akarsh Simha <akarshsimha@gmail.com>
> Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents
> To: kde-commits@kde.org
> Cc: kstars-devel@kde.org
> Message-ID: <1222997037.226692.26190.nullmailer@svn.kde.org>
> Content-Type: text/plain; charset=UTF-8
>
> SVN commit 867187 by asimha:
>
> Manage the setting of the inDraw flag correctly.
>
> Thanks to Madhusudhan, Santhosh and Krishna for working on it.
>
> CCMAIL: kstars-devel@kde.org
>
>
>
>  M  +2 -2      deepstarcomponent.cpp
>
>
> --- trunk/KDE/kdeedu/kstars/kstars/skycomponents/deepstarcomponent.cpp
> #867186:867187
> @@ -178,8 +178,8 @@
>     float radius = map->fov();
>     if ( radius > 90.0 ) radius = 90.0;
>
> -    if ( m_skyMesh->inDraw() ) {
> -        printf("Warning: aborting concurrent
> DeepStarComponent::draw()\n");
> +    if ( m_skyMesh != SkyMesh::Instance() && m_skyMesh->inDraw() ) {
> +        printf("Warning: aborting concurrent DeepStarComponent::draw()");
>     }
>     bool checkSlewing = ( map->isSlewing() && Options::hideOnSlew() );
>
>
>
> ------------------------------
>
> Message: 8
> Date: Fri, 03 Oct 2008 01:32:28 +0000
> From: Akarsh Simha <akarshsimha@gmail.com>
> Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/tools
> To: kde-commits@kde.org
> Cc: kstars-devel@kde.org
> Message-ID: <1222997548.890329.26290.nullmailer@svn.kde.org>
> Content-Type: text/plain; charset=UTF-8
>
> SVN commit 867188 by asimha:
>
> The conjunctions tool must object if both objects selected are the
> same.
>
> Thanks for the patch, Prakash.
>
> CCMAIL: kstars-devel@kde.org
>
>
>
>  M  +6 -3      conjunctions.cpp
>
>
> --- trunk/KDE/kdeedu/kstars/kstars/tools/conjunctions.cpp #867187:867188
> @@ -138,11 +138,11 @@
>                 break;
>             }
>             case 9: {
> -                Object1 = (KSComet *) new KSComet( (KSComet &)
> *fd.selectedObject() );
> +                Object1 =  new KSComet( (KSComet &) *fd.selectedObject()
> );
>                 break;
>             }
>             case 10: {
> -                Object1 = (KSAsteroid *) new KSAsteroid( (KSAsteroid &)
> *fd.selectedObject() );
> +                Object1 =  new KSAsteroid( (KSAsteroid &)
> *fd.selectedObject() );
>                 break;
>             }
>             }
> @@ -179,7 +179,10 @@
>         return;
>     }
>     Object2 = KSPlanetBase::createPlanet( Obj2ComboBox->currentIndex() );
> -
> +    if( Object1->name() == Object2->name() ) {
> +       KMessageBox::sorry( 0 , i18n("Please select two different objects
> to check conjunctions with.") );
> +       return;
> +    }
>     QApplication::setOverrideCursor( QCursor(Qt::WaitCursor) );
>     KSConjunct ksc;
>     ComputeStack->setCurrentIndex( 1 );
>
>
> ------------------------------
>
> _______________________________________________
> Kstars-devel mailing list
> Kstars-devel@kde.org
> https://mail.kde.org/mailman/listinfo/kstars-devel
>
>
> End of Kstars-devel Digest, Vol 63, Issue 2
> *******************************************
>



-- 
Pedro Simão
Cel.: [55](21)8830-8382
MSN: pedrosimao@live.com

[Attachment #5 (text/html)]

<div dir="ltr">Hi,<br>I am still trying to download Kstars but I dont now where to \
find it.<br>Where can I get? Is ther a version for windows?<br>Thx<br><br><div \
class="gmail_quote">On Fri, Oct 3, 2008 at 7:00 AM,  <span dir="ltr">&lt;<a \
href="mailto:kstars-devel-request@kde.org">kstars-devel-request@kde.org</a>&gt;</span> \
wrote:<br> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, \
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Send Kstars-devel mailing \
list submissions to<br>  &nbsp; &nbsp; &nbsp; &nbsp;<a \
href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br> <br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a \
href="https://mail.kde.org/mailman/listinfo/kstars-devel" \
target="_blank">https://mail.kde.org/mailman/listinfo/kstars-devel</a><br> or, via \
email, send a message with subject or body &#39;help&#39; to<br>  &nbsp; &nbsp; \
&nbsp; &nbsp;<a href="mailto:kstars-devel-request@kde.org">kstars-devel-request@kde.org</a><br>
 <br>
You can reach the person managing the list at<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a \
href="mailto:kstars-devel-owner@kde.org">kstars-devel-owner@kde.org</a><br> <br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Kstars-devel digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
 &nbsp; 1. Re: INDI as a separate package (Brian)<br>
 &nbsp; 2. KDE/kdeedu/kstars/kstars (Akarsh Simha)<br>
 &nbsp; 3. KDE/kdeedu/kstars/kstars/tools (Akarsh Simha)<br>
 &nbsp; 4. Re: INDI as a separate package (Jasem Mutlaq)<br>
 &nbsp; 5. (no subject)<br>
 &nbsp; 6. KDE/kdeedu/kstars/kstars/skycomponents (Akarsh Simha)<br>
 &nbsp; 7. KDE/kdeedu/kstars/kstars/skycomponents (Akarsh Simha)<br>
 &nbsp; 8. KDE/kdeedu/kstars/kstars/tools (Akarsh Simha)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 02 Oct 2008 21:29:10 +1000<br>
From: Brian &lt;<a href="mailto:bnc@astronomicalresearchaustralia.org">bnc@astronomicalresearchaustralia.org</a>&gt;<br>
                
Subject: Re: [Kstars-devel] INDI as a separate package<br>
To: KStars Development Mailing List &lt;<a \
                href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:48E4B086.6070001@astronomicalresearchaustralia.org">48E4B086.6070001@astronomicalresearchaustralia.org</a>&gt;<br>
                
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi Jasem,<br>
As you know I use INDI extensively every clear night.<br>
As long as the separate install works ok and we do not lose any<br>
functionality, should be fine by me.<br>
However, would it still integrate with kstars, i.e. will I still be able<br>
to right click on a star and tell the scope to slew to it?<br>
<br>
I was bit concerned when I found out that all the hardware drivers were<br>
being removed. Has the doco been changed to describe how to install<br>
required drivers?<br>
<br>
I am currently running my observatory on suse 10.3 on a 64bit machine.<br>
I have also installed a SUSE 11.0, which uses kde4 &nbsp;in part.<br>
What level of kde4 will I need to test the new indi?<br>
Can I download it vis svn?<br>
<br>
Thanks,<br>
Brian<br>
<br>
Jasem Mutlaq wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; After much consideration, I think it is better to remove INDI from KStars<br>
&gt; repo and make it as an optional add on. This is due to many factors<br>
&gt; including maintenance of two INDIs (KStars and the primary) and packaging<br>
&gt; consideration (some distros ship the two INDIs!). Furthermore, INDI is only<br>
&gt; available for Linux and KStars can be now run on multiple OSes. All in all,<br>
&gt; there will be less headache and only one INDI package will be available.<br>
&gt; Please let me know if there are any objections to this idea.<br>
&gt;<br>
&gt; Regards,<br>
&gt; Jasem<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Kstars-devel mailing list<br>
&gt; <a href="mailto:Kstars-devel@kde.org">Kstars-devel@kde.org</a><br>
&gt; <a href="https://mail.kde.org/mailman/listinfo/kstars-devel" \
target="_blank">https://mail.kde.org/mailman/listinfo/kstars-devel</a><br> &gt;<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 02 Oct 2008 20:46:55 +0000<br>
From: Akarsh Simha &lt;<a \
                href="mailto:akarshsimha@gmail.com">akarshsimha@gmail.com</a>&gt;<br>
Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars<br>
To: <a href="mailto:kde-commits@kde.org">kde-commits@kde.org</a><br>
Cc: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
Message-ID: &lt;<a href="mailto:1222980415.831939.17881.nullmailer@svn.kde.org">1222980415.831939.17881.nullmailer@svn.kde.org</a>&gt;<br>
                
Content-Type: text/plain; charset=UTF-8<br>
<br>
SVN commit 867116 by asimha:<br>
<br>
Fixes incorrect message in What&#39;s Up Tonight Dialog. Should not<br>
translate an empty string.<br>
<br>
Many thanks to Avinash Krishnakumar and Suvinay S for helping me out.<br>
<br>
CCMAIL: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
<br>
<br>
<br>
&nbsp;M &nbsp;+4 -4 &nbsp; &nbsp; &nbsp;geolocation.h<br>
<br>
<br>
--- trunk/KDE/kdeedu/kstars/kstars/geolocation.h #867115:867116<br>
@@ -124,19 +124,19 @@<br>
 &nbsp; &nbsp; QString name() const { return Name; }<br>
 &nbsp; &nbsp; /**@return translated City name<br>
 &nbsp; &nbsp; &nbsp; &nbsp;*/<br>
- &nbsp; &nbsp;QString translatedName() const { return i18nc(&quot;City name \
                (optional, probably does not need a translation)&quot;, \
                Name.toUtf8().data()); }<br>
- &nbsp; &nbsp;/**@return untranslated Province name<br>
+ &nbsp; &nbsp;QString translatedName() const { return Name.isEmpty() ? QString() : \
i18nc(&quot;City name (optional, probably does not need a translation)&quot;, \
Name.toUtf8().data()); }<br> + &nbsp; &nbsp;/**@return untranslated Province name<br>
 &nbsp; &nbsp; &nbsp; &nbsp;*/<br>
 &nbsp; &nbsp; QString province() const { return Province; }<br>
 &nbsp; &nbsp; /**@return translated Province name<br>
 &nbsp; &nbsp; &nbsp; &nbsp;*/<br>
- &nbsp; &nbsp;QString translatedProvince() const { return i18nc(&quot;Region/state \
name (optional, rarely needs a translation)&quot;, Province.toUtf8().data()); }<br> + \
&nbsp; &nbsp;QString translatedProvince() const { return Province.isEmpty() ? \
QString() : i18nc(&quot;Region/state name (optional, rarely needs a \
translation)&quot;, Province.toUtf8().data()); }<br>  &nbsp; &nbsp; /**@return \
untranslated Country name<br>  &nbsp; &nbsp; &nbsp; &nbsp;*/<br>
 &nbsp; &nbsp; QString country() const { return Country; }<br>
 &nbsp; &nbsp; /**@return translated Country name<br>
 &nbsp; &nbsp; &nbsp;*/<br>
- &nbsp; &nbsp;QString translatedCountry() const { return i18nc(&quot;Country name \
(optional, but should be translated)&quot;, Country.toUtf8().data()); }<br> + &nbsp; \
&nbsp;QString translatedCountry() const { return Country.isEmpty() ? QString() : \
&nbsp;i18nc(&quot;Country name (optional, but should be translated)&quot;, \
Country.toUtf8().data()); }<br> <br>
 &nbsp; &nbsp; /**@return comma-separated city, province, country names (each \
localized)<br>  &nbsp; &nbsp; &nbsp;*/<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Thu, 02 Oct 2008 21:22:05 +0000<br>
From: Akarsh Simha &lt;<a \
                href="mailto:akarshsimha@gmail.com">akarshsimha@gmail.com</a>&gt;<br>
Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/tools<br>
To: <a href="mailto:kde-commits@kde.org">kde-commits@kde.org</a><br>
Cc: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
Message-ID: &lt;<a href="mailto:1222982525.625949.19301.nullmailer@svn.kde.org">1222982525.625949.19301.nullmailer@svn.kde.org</a>&gt;<br>
                
Content-Type: text/plain; charset=UTF-8<br>
<br>
SVN commit 867132 by asimha:<br>
<br>
Fixing incorrect label in the Conjunctions Dialog. The conjunction<br>
tool, since quite some time, allows one of the objects to be a generic<br>
sky object.<br>
<br>
CCMAIL: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
<br>
<br>
<br>
&nbsp;M &nbsp;+1 -1 &nbsp; &nbsp; &nbsp;conjunctions.ui<br>
<br>
<br>
--- trunk/KDE/kdeedu/kstars/kstars/tools/conjunctions.ui #867131:867132<br>
@@ -86,7 +86,7 @@<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &lt;/sizepolicy&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;/property&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;property name=&quot;text&quot; &gt;<br>
- &nbsp; &nbsp; &nbsp; &nbsp;&lt;string&gt;Between solar system \
bodies:&lt;/string&gt;<br> + &nbsp; &nbsp; &nbsp; &nbsp;&lt;string&gt;Between \
objects:&lt;/string&gt;<br>  &nbsp; &nbsp; &nbsp; &nbsp;&lt;/property&gt;<br>
 &nbsp; &nbsp; &nbsp; &lt;/widget&gt;<br>
 &nbsp; &nbsp; &nbsp;&lt;/item&gt;<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Fri, 3 Oct 2008 01:31:10 +0300<br>
From: &quot;Jasem Mutlaq&quot; &lt;<a \
                href="mailto:mutlaqja@ikarustech.com">mutlaqja@ikarustech.com</a>&gt;<br>
                
Subject: Re: [Kstars-devel] INDI as a separate package<br>
To: &lt;<a href="mailto:bnc@astronomicalresearchaustralia.org">bnc@astronomicalresearchaustralia.org</a>&gt;, \
&nbsp; &nbsp;&quot;&#39;KStars Development<br>  &nbsp; &nbsp; &nbsp; &nbsp;Mailing \
List&#39;&quot; &lt;<a \
                href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a>&gt;<br>
Message-ID: &lt;001101c924de$941b3340$bc5199c0$@com&gt;<br>
Content-Type: text/plain; &nbsp; &nbsp; &nbsp; charset=&quot;us-ascii&quot;<br>
<br>
Hi Brian,<br>
<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Message-ID: &lt;<a href="mailto:mailman.8.1223028009.12356.kstars-devel@kde.org">mailman.8.1223028009.12356.kstars-devel@kde.org</a>&gt;<br>
 <br>
packagers ship KStars, they compile it with the INDI package, and I&#39;ll try<br>
to make sure this happens on Linux. Regarding drivers which depend on<br>
external libraries like apogee, sbig, ..etc, they will not be part of the<br>
primary INDI package, but they&#39;ll be offered as separate packages.<br>
Installation-wise, I&#39;m using SUSE BuildService to make all these packages<br>
available to all major distributions, and will try to include them in the<br>
official repo for each major distribution.<br>
<br>
Regards,<br>
Jasem<br>
<br>
&gt; -----Original Message-----<br>
&gt; From: Brian [mailto:<a \
href="mailto:bnc@astronomicalresearchaustralia.org">bnc@astronomicalresearchaustralia.org</a>]<br>
 &gt; Sent: Thursday, October 02, 2008 2:29 PM<br>
&gt; To: KStars Development Mailing List<br>
&gt; Subject: Re: [Kstars-devel] INDI as a separate package<br>
&gt;<br>
&gt; Hi Jasem,<br>
&gt; As you know I use INDI extensively every clear night.<br>
&gt; As long as the separate install works ok and we do not lose any<br>
&gt; functionality, should be fine by me.<br>
&gt; However, would it still integrate with kstars, i.e. will I still be<br>
&gt; able<br>
&gt; to right click on a star and tell the scope to slew to it?<br>
&gt;<br>
&gt; I was bit concerned when I found out that all the hardware drivers were<br>
&gt; being removed. Has the doco been changed to describe how to install<br>
&gt; required drivers?<br>
&gt;<br>
&gt; I am currently running my observatory on suse 10.3 on a 64bit machine.<br>
&gt; I have also installed a SUSE 11.0, which uses kde4 &nbsp;in part.<br>
&gt; What level of kde4 will I need to test the new indi?<br>
&gt; Can I download it vis svn?<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Brian<br>
&gt;<br>
&gt; Jasem Mutlaq wrote:<br>
&gt; &gt; Hi,<br>
&gt; &gt;<br>
&gt; &gt; After much consideration, I think it is better to remove INDI from<br>
&gt; KStars<br>
&gt; &gt; repo and make it as an optional add on. This is due to many factors<br>
&gt; &gt; including maintenance of two INDIs (KStars and the primary) and<br>
&gt; packaging<br>
&gt; &gt; consideration (some distros ship the two INDIs!). Furthermore, INDI<br>
&gt; is only<br>
&gt; &gt; available for Linux and KStars can be now run on multiple OSes. All<br>
&gt; in all,<br>
&gt; &gt; there will be less headache and only one INDI package will be<br>
&gt; available.<br>
&gt; &gt; Please let me know if there are any objections to this idea.<br>
&gt; &gt;<br>
&gt; &gt; Regards,<br>
&gt; &gt; Jasem<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; Kstars-devel mailing list<br>
&gt; &gt; <a href="mailto:Kstars-devel@kde.org">Kstars-devel@kde.org</a><br>
&gt; &gt; <a href="https://mail.kde.org/mailman/listinfo/kstars-devel" \
target="_blank">https://mail.kde.org/mailman/listinfo/kstars-devel</a><br> &gt; \
&gt;<br> &gt; _______________________________________________<br>
&gt; Kstars-devel mailing list<br>
&gt; <a href="mailto:Kstars-devel@kde.org">Kstars-devel@kde.org</a><br>
&gt; <a href="https://mail.kde.org/mailman/listinfo/kstars-devel" \
target="_blank">https://mail.kde.org/mailman/listinfo/kstars-devel</a><br> <br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Fri, 03 Oct 2008 00:51:22 +0000<br>
From: Akarsh Simha &lt;<a \
                href="mailto:akarshsimha@gmail.com">akarshsimha@gmail.com</a>&gt;<br>
Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents<br>
To: <a href="mailto:kde-commits@kde.org">kde-commits@kde.org</a><br>
Cc: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
Message-ID: &lt;<a href="mailto:1222995082.417519.25899.nullmailer@svn.kde.org">1222995082.417519.25899.nullmailer@svn.kde.org</a>&gt;<br>
                
Content-Type: text/plain; charset=UTF-8<br>
<br>
SVN commit 867186 by asimha:<br>
<br>
Remove the warning about magnitude jump. While this is great help for<br>
debugging and exposes hidden problems, it is a nuisance with the NOMAD<br>
catalog and since the catalogs and code are pretty much fine, it might<br>
be safe to remove it now.<br>
<br>
CCMAIL: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
<br>
<br>
<br>
&nbsp;M &nbsp;+2 -0 &nbsp; &nbsp; &nbsp;starblocklist.cpp<br>
<br>
<br>
--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/starblocklist.cpp #867185:867186<br>
@@ -135,10 +135,12 @@<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; blocks[nBlocks - 1]-&gt;addStar( &amp;star );<br>
+ &nbsp; &nbsp; &nbsp; &nbsp;/*<br>
 &nbsp; &nbsp; &nbsp; &nbsp; if( faintMag &gt; -5.0 &amp;&amp; fabs(faintMag - \
blocks[nBlocks - 1]-&gt;getFaintMag()) &gt; 0.2 ) {<br>  &nbsp; &nbsp; &nbsp; &nbsp; \
&nbsp; &nbsp; kDebug() &lt;&lt; &quot;Encountered a jump from mag&quot; &lt;&lt; \
faintMag &lt;&lt; &quot;to mag&quot;<br>  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;&lt; blocks[nBlocks - 1]-&gt;getFaintMag() \
&lt;&lt; &quot;in trixel&quot; &lt;&lt; trixel;<br>  &nbsp; &nbsp; &nbsp; &nbsp; \
}<br> + &nbsp; &nbsp; &nbsp; &nbsp;*/<br>
 &nbsp; &nbsp; &nbsp; &nbsp; faintMag = blocks[nBlocks - 1]-&gt;getFaintMag();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; nStars++;<br>
 &nbsp; &nbsp; }<br>
<br>
<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Fri, 03 Oct 2008 01:23:57 +0000<br>
From: Akarsh Simha &lt;<a \
                href="mailto:akarshsimha@gmail.com">akarshsimha@gmail.com</a>&gt;<br>
Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents<br>
To: <a href="mailto:kde-commits@kde.org">kde-commits@kde.org</a><br>
Cc: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
Message-ID: &lt;<a href="mailto:1222997037.226692.26190.nullmailer@svn.kde.org">1222997037.226692.26190.nullmailer@svn.kde.org</a>&gt;<br>
                
Content-Type: text/plain; charset=UTF-8<br>
<br>
SVN commit 867187 by asimha:<br>
<br>
Manage the setting of the inDraw flag correctly.<br>
<br>
Thanks to Madhusudhan, Santhosh and Krishna for working on it.<br>
<br>
CCMAIL: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
<br>
<br>
<br>
&nbsp;M &nbsp;+2 -2 &nbsp; &nbsp; &nbsp;deepstarcomponent.cpp<br>
<br>
<br>
--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/deepstarcomponent.cpp \
#867186:867187<br> @@ -178,8 +178,8 @@<br>
 &nbsp; &nbsp; float radius = map-&gt;fov();<br>
 &nbsp; &nbsp; if ( radius &gt; 90.0 ) radius = 90.0;<br>
<br>
- &nbsp; &nbsp;if ( m_skyMesh-&gt;inDraw() ) {<br>
- &nbsp; &nbsp; &nbsp; &nbsp;printf(&quot;Warning: aborting concurrent \
DeepStarComponent::draw()\n&quot;);<br> + &nbsp; &nbsp;if ( m_skyMesh != \
SkyMesh::Instance() &amp;&amp; m_skyMesh-&gt;inDraw() ) {<br> + &nbsp; &nbsp; &nbsp; \
&nbsp;printf(&quot;Warning: aborting concurrent DeepStarComponent::draw()&quot;);<br> \
&nbsp; &nbsp; }<br>  &nbsp; &nbsp; bool checkSlewing = ( map-&gt;isSlewing() \
&amp;&amp; Options::hideOnSlew() );<br> <br>
<br>
<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Fri, 03 Oct 2008 01:32:28 +0000<br>
From: Akarsh Simha &lt;<a \
                href="mailto:akarshsimha@gmail.com">akarshsimha@gmail.com</a>&gt;<br>
Subject: [Kstars-devel] KDE/kdeedu/kstars/kstars/tools<br>
To: <a href="mailto:kde-commits@kde.org">kde-commits@kde.org</a><br>
Cc: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
Message-ID: &lt;<a href="mailto:1222997548.890329.26290.nullmailer@svn.kde.org">1222997548.890329.26290.nullmailer@svn.kde.org</a>&gt;<br>
                
Content-Type: text/plain; charset=UTF-8<br>
<br>
SVN commit 867188 by asimha:<br>
<br>
The conjunctions tool must object if both objects selected are the<br>
same.<br>
<br>
Thanks for the patch, Prakash.<br>
<br>
CCMAIL: <a href="mailto:kstars-devel@kde.org">kstars-devel@kde.org</a><br>
<br>
<br>
<br>
&nbsp;M &nbsp;+6 -3 &nbsp; &nbsp; &nbsp;conjunctions.cpp<br>
<br>
<br>
--- trunk/KDE/kdeedu/kstars/kstars/tools/conjunctions.cpp #867187:867188<br>
@@ -138,11 +138,11 @@<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 9: {<br>
- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Object1 = (KSComet *) new \
KSComet( (KSComet &amp;) *fd.selectedObject() );<br> + &nbsp; &nbsp; &nbsp; &nbsp; \
&nbsp; &nbsp; &nbsp; &nbsp;Object1 = &nbsp;new KSComet( (KSComet &amp;) \
*fd.selectedObject() );<br>  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
break;<br>  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 10: {<br>
- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Object1 = (KSAsteroid *) new \
KSAsteroid( (KSAsteroid &amp;) *fd.selectedObject() );<br> + &nbsp; &nbsp; &nbsp; \
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Object1 = &nbsp;new KSAsteroid( (KSAsteroid &amp;) \
*fd.selectedObject() );<br>  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
break;<br>  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
@@ -179,7 +179,10 @@<br>
 &nbsp; &nbsp; &nbsp; &nbsp; return;<br>
 &nbsp; &nbsp; }<br>
 &nbsp; &nbsp; Object2 = KSPlanetBase::createPlanet( Obj2ComboBox-&gt;currentIndex() \
                );<br>
-<br>
+ &nbsp; &nbsp;if( Object1-&gt;name() == Object2-&gt;name() ) {<br>
+ &nbsp; &nbsp; &nbsp; KMessageBox::sorry( 0 , i18n(&quot;Please select two different \
objects to check conjunctions with.&quot;) );<br> + &nbsp; &nbsp; &nbsp; return;<br>
+ &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; QApplication::setOverrideCursor( QCursor(Qt::WaitCursor) );<br>
 &nbsp; &nbsp; KSConjunct ksc;<br>
 &nbsp; &nbsp; ComputeStack-&gt;setCurrentIndex( 1 );<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Kstars-devel mailing list<br>
<a href="mailto:Kstars-devel@kde.org">Kstars-devel@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/kstars-devel" \
target="_blank">https://mail.kde.org/mailman/listinfo/kstars-devel</a><br> <br>
<br>
End of Kstars-devel Digest, Vol 63, Issue 2<br>
*******************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>Pedro Simão<br>Cel.: \
[55](21)8830-8382<br>MSN: <a \
href="mailto:pedrosimao@live.com">pedrosimao@live.com</a><br> </div>



_______________________________________________
Kstars-devel mailing list
Kstars-devel@kde.org
https://mail.kde.org/mailman/listinfo/kstars-devel


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic