5 Jan 17:45
5 Jan 17:58
Re: USNO NOMAD Catalog
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 16:58:17 GMT
2009-01-05 16:58:17 GMT
> Please help me correct an installation problem with this catalog. I installed > kstars under Kubuntu 8.10 with 'sudo apt-get install kstars' and started it. > The first interactive window I see is a Startup Wizard. It prompts me > to "Download Extra Data". I clicked on the first catalog I see and suddenly > I find I'm stuck (without warning) with a 6-hour download! I cancelled the > download, hoping to restart it later that night and let it run overnight. But > I find I can't restart it. The program says it's installed, and I don't get > any second chance. > > So I tried to remove it and make a fresh start: > sudo apt-get remove kstars > sudo apt-get autoclean > sudo rm -rf /usr/share/apps/kstars > rm -rf $HOME/.kde/share/apps/kstars > > Then I reinstall, expecting see the startup wizard giving me a clean slate and > a chance to avoid the surprise of a 1.6GB download, but it still shows that > first catalog is already downloaded! > > I checked bugs.kde.org and found #114447. But that site won't let me in for > reasons I don't understand. That bug says: "...workaround: deleting/changing > its config file" but doesn't tell me what config file that is. Can you please > enlighten me on its location(s), so I can clean up the mess your program > made? Thanks. > > And please consider 1)warning users before such large downloads 2)giving users > a chance to exit such downloads and try again later 3)breaking up such large > downloads 4)documenting how to clean up such problems. Thanks. Hi Roland(Continue reading)
5 Jan 18:35
branches/KDE/4.1/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 17:35:59 GMT
2009-01-05 17:35:59 GMT
SVN commit 906161 by asimha:
Backporting bug-fix for the FOV symbol editor. There is still an issue
which I will resolve shortly.
Original commit log:
=============================
SVN commit 903047 by asimha:
Fixing localization issues.
+ We want to use only the correct decimal symbol while formatting FOV
sizes and avoid using the appropriate digit spacing.
+ The ok button refused to accept correctly localized strings and was
looking for the standard '.' as the decimal symbol. Fixing that.
The FOV editor now generates, and accepts strings of the form "1000.0"
(where the . represents the appropriate decimal symbol in the locale)
This closes Bug #179034
=============================
CCMAIL: kstars-devel <at> kde.org
M +5 -5 fovdialog.cpp
--- branches/KDE/4.1/kdeedu/kstars/kstars/fovdialog.cpp #906160:906161
@@ -150,7 +150,7 @@
return;
(Continue reading)
5 Jan 18:40
KDE/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 17:40:35 GMT
2009-01-05 17:40:35 GMT
SVN commit 906164 by asimha:
Fixing (further) problems with the FOV editor. The localized versions
would accept FOVs that were formatted in the localized format (60,00
in German, for instance) but wouldn't work. This was because the same
bug had to be fixed in two other places.
The FOV editor now seems to work correctly.
CCMAIL: kstars-devel <at> kde.org
CCUBUG:179034
M +2 -2 fovdialog.cpp
--- trunk/KDE/kdeedu/kstars/kstars/fovdialog.cpp #906163:906164
@@ -131,7 +131,7 @@
NewFOV newfdlg( this );
if ( newfdlg.exec() == QDialog::Accepted ) {
- FOV *newfov = new FOV( newfdlg.ui->FOVName->text(), newfdlg.ui->FOVEdit->text().toDouble(),
+ FOV *newfov = new FOV( newfdlg.ui->FOVName->text(), newfdlg.ui->FOVEdit->text().replace(
KGlobal::locale()->decimalSymbol(), "." ).toDouble(),
newfdlg.ui->ShapeBox->currentIndex(), newfdlg.ui->ColorButton->color().name() );
FOVList.append( newfov );
@@ -156,7 +156,7 @@
newfdlg.slotUpdateFOV();
if ( newfdlg.exec() == QDialog::Accepted ) {
- FOV *newfov = new FOV( newfdlg.ui->FOVName->text(), newfdlg.ui->FOVEdit->text().toDouble(),
(Continue reading)
5 Jan 18:52
branches/KDE/4.1/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 17:52:12 GMT
2009-01-05 17:52:12 GMT
SVN commit 906170 by asimha:
Backporting further fix to bug 179034. Quoting the original commit
log:
----
Fixing (further) problems with the FOV editor. The localized versions
would accept FOVs that were formatted in the localized format (60,00
in German, for instance) but wouldn't work. This was because the same
bug had to be fixed in two other places.
The FOV editor now seems to work correctly.
----
CCMAIL: kstars-devel <at> kde.org
M +2 -2 fovdialog.cpp
--- branches/KDE/4.1/kdeedu/kstars/kstars/fovdialog.cpp #906169:906170
@@ -131,7 +131,7 @@
NewFOV newfdlg( this );
if ( newfdlg.exec() == QDialog::Accepted ) {
- FOV *newfov = new FOV( newfdlg.ui->FOVName->text(), newfdlg.ui->FOVEdit->text().toDouble(),
+ FOV *newfov = new FOV( newfdlg.ui->FOVName->text(), newfdlg.ui->FOVEdit->text().replace(
KGlobal::locale()->decimalSymbol(), "." ).toDouble(),
newfdlg.ui->ShapeBox->currentIndex(), newfdlg.ui->ColorButton->color().name() );
(Continue reading)
5 Jan 18:53
branches/KDE/4.1/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 17:53:37 GMT
2009-01-05 17:53:37 GMT
SVN commit 906171 by asimha:
Version microbump for 4.1 branch.
CCMAIL: kstars-devel <at> kde.org
M +1 -1 main.cpp
--- branches/KDE/4.1/kdeedu/kstars/kstars/main.cpp #906170:906171
@@ -32,7 +32,7 @@
#include <QPixmap>
#include <kglobal.h>
-#define KSTARS_VERSION "1.4.1"
+#define KSTARS_VERSION "1.4.2"
static const char description[] =
I18N_NOOP("Desktop Planetarium");
5 Jan 19:07
branches/KDE/4.1/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 18:07:10 GMT
2009-01-05 18:07:10 GMT
SVN commit 906173 by asimha:
Backporting fix to bug 141372 to 4.1 branch. Original commit log
reads as follows:
Localizing Information / Image link titles in the detail dialog. (The
localized strings are already present as the same are used in the
popup menu.)
CCBUG: 141372
CCMAIL: kstars-devel <at> kde.org
M +2 -2 detaildialog.cpp
--- branches/KDE/4.1/kdeedu/kstars/kstars/detaildialog.cpp #906172:906173
@@ -357,12 +357,12 @@
Links->ImagesTitle->setPalette( titlePalette );
foreach ( const QString &s, selectedObject->InfoTitle )
- Links->InfoTitleList->addItem( s );
+ Links->InfoTitleList->addItem( i18nc( "Image/info menu item (should be translated)",
s.toLocal8Bit() ) );
//Links->InfoTitleList->setCurrentRow(0);
foreach ( const QString &s, selectedObject->ImageTitle )
- Links->ImageTitleList->addItem( s );
+ Links->ImageTitleList->addItem( i18nc( "Image/info menu item (should be translated)",
s.toLocal8Bit() ) );
(Continue reading)
5 Jan 20:51
branches/KDE/4.1/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 19:51:32 GMT
2009-01-05 19:51:32 GMT
SVN commit 906243 by asimha: Backporting fix from revision 902624: Make the tab order in the Location Dialog more intuitive. CCMAIL: kstars-devel <at> kde.org M +9 -0 locationdialog.ui --- branches/KDE/4.1/kdeedu/kstars/kstars/locationdialog.ui #906242:906243 @@ -443,6 +443,15 @@ <tabstop>CityFilter</tabstop> <tabstop>ProvinceFilter</tabstop> <tabstop>CountryFilter</tabstop> + <tabstop>NewCityName</tabstop> + <tabstop>NewProvinceName</tabstop> + <tabstop>NewCountryName</tabstop> + <tabstop>NewLong</tabstop> + <tabstop>NewLat</tabstop> + <tabstop>TZBox</tabstop> + <tabstop>DSTRuleBox</tabstop> + <tabstop>AddCityButton</tabstop> + <tabstop>ClearFieldsButton</tabstop> </tabstops> <resources/> <connections/>
5 Jan 21:11
KDE/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-05 20:11:01 GMT
2009-01-05 20:11:01 GMT
SVN commit 906257 by asimha:
Version microbump for RC1.
CCMAIL: kstars-devel <at> kde.org
M +1 -1 main.cpp
--- trunk/KDE/kdeedu/kstars/kstars/main.cpp #906256:906257
@@ -32,7 +32,7 @@
#include <QPixmap>
#include <kglobal.h>
-#define KSTARS_VERSION "1.4.62"
+#define KSTARS_VERSION "1.4.80"
static const char description[] =
I18N_NOOP("Desktop Planetarium");
9 Jan 20:18
KDE/kdeedu/kstars/kstars
Akarsh Simha <akarshsimha <at> gmail.com>
2009-01-09 19:18:33 GMT
2009-01-09 19:18:33 GMT
SVN commit 908470 by asimha:
Fix trouble with links of translated planet names.
This is again, one more of those temporary translation fixes that we
are doing for KDE 4.2. Really, we should revamp the way translations
are handled. That'll fix a whole bunch of bugs.
CCMAIL: kstars-devel <at> kde.org
M +7 -1 kstarsdata.cpp
--- trunk/KDE/kdeedu/kstars/kstars/kstarsdata.cpp #908469:908470
@@ -731,7 +731,13 @@
idx = sub.indexOf(':');
QString title = sub.left( idx );
QString url = sub.mid( idx + 1 );
- SkyObject *o = skyComposite()->findByName(name);
+ // Dirty hack to fix things up for planets
+ SkyObject *o;
+ if( name == "Mercury" || name == "Venus" || name == "Mars" || name == "Jupiter"
+ || name == "Saturn" || name == "Uranus" || name == "Neptune" || name == "Pluto" )
+ o = skyComposite()->findByName( i18n( name.toLocal8Bit().data() ) );
+ else
+ o = skyComposite()->findByName( name );
if ( !o ) {
kWarning() << i18n( "Object named %1 not found", name ) ;
(Continue reading)
RSS Feed