Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
1e2d5b06
Commit
1e2d5b06
authored
Aug 23, 2015
by
marco
Browse files
Fix translate setting + Mod oracle to portable build
parent
c8d59eec
Changes
2
Show whitespace changes
Inline
Side-by-side
cockatrice/src/settingscache.cpp
View file @
1e2d5b06
...
...
@@ -17,8 +17,8 @@ QString SettingsCache::getSettingsPath()
#else
file
=
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
);
#endif
file
.
append
(
"/settings/"
);
#endif
file
.
append
(
"/settings/"
);
return
file
;
}
...
...
@@ -98,7 +98,7 @@ void SettingsCache::translateLegacySettings()
QStringList
allFilters
=
legacySetting
.
allKeys
();
for
(
int
i
=
0
;
i
<
allFilters
.
size
();
++
i
)
{
if
(
allFilters
.
at
(
i
).
startsWith
(
"game_type"
)){
gameFilters
().
setGameTypeEnabled
(
allFilters
.
at
(
i
),
legacySetting
.
value
(
allFilters
.
at
(
i
)).
toBool
());
gameFilters
().
setGame
Hashed
TypeEnabled
(
allFilters
.
at
(
i
),
legacySetting
.
value
(
allFilters
.
at
(
i
)).
toBool
());
}
}
QStringList
allKeysfilter_games
=
legacySetting
.
allKeys
();
...
...
oracle/src/oraclewizard.cpp
View file @
1e2d5b06
...
...
@@ -48,13 +48,19 @@ OracleWizard::OracleWizard(QWidget *parent)
settings
=
new
QSettings
(
this
);
connect
(
settingsCache
,
SIGNAL
(
langChanged
()),
this
,
SLOT
(
updateLanguage
()));
importer
=
new
OracleImporter
(
#if QT_VERSION < 0x050000
QString
dataDir
;
#ifndef PORTABLE_BUILD
#if QT_VERSION < 0x050000
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
)
#else
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
();
#endif
#else
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
()
dataDir
.
append
(
"data/"
);
#endif
,
this
);
importer
=
new
OracleImporter
(
dataDir
,
this
);
addPage
(
new
IntroPage
);
addPage
(
new
LoadSetsPage
);
...
...
@@ -485,6 +491,9 @@ void SaveSetsPage::retranslateUi()
"Press
\"
Save
\"
to save the imported cards to the Cockatrice database."
));
defaultPathCheckBox
->
setText
(
tr
(
"Save to the default path (recommended)"
));
#ifdef PORTABLE_BUILD
defaultPathCheckBox
->
setEnabled
(
false
);
#endif
}
void
SaveSetsPage
::
updateTotalProgress
(
int
cardsImported
,
int
/* setIndex */
,
const
QString
&
setName
)
...
...
@@ -500,12 +509,17 @@ void SaveSetsPage::updateTotalProgress(int cardsImported, int /* setIndex */, co
bool
SaveSetsPage
::
validatePage
()
{
bool
ok
=
false
;
const
QString
dataDir
=
QString
dataDir
;
#ifndef PORTABLE_BUILD
#if QT_VERSION < 0x050000
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
);
dataDir
=
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
);
#else
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
();
dataDir
=
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
();
#endif
#else
dataDir
=
"data/"
;
#endif
QSettings
*
settings
=
new
QSettings
(
this
);
QString
defaultPath
=
settings
->
value
(
"paths/carddatabase"
).
toString
();
QString
windowName
=
tr
(
"Save card database"
);
...
...
@@ -695,16 +709,23 @@ void SaveTokensPage::retranslateUi()
"Press
\"
Save
\"
to save the imported tokens to the Cockatrice tokens database."
));
defaultPathCheckBox
->
setText
(
tr
(
"Save to the default path (recommended)"
));
#ifdef PORTABLE_BUILD
defaultPathCheckBox
->
setEnabled
(
false
);
#endif
}
bool
SaveTokensPage
::
validatePage
()
{
bool
ok
=
false
;
const
QString
dataDir
=
QString
dataDir
;
#ifndef PORTABLE_BUILD
#if QT_VERSION < 0x050000
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
);
dataDir
=
QDesktopServices
::
storageLocation
(
QDesktopServices
::
DataLocation
);
#else
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
();
dataDir
=
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
first
();
#endif
#else
dataDir
=
"data/"
;
#endif
QSettings
*
settings
=
new
QSettings
(
this
);
QString
defaultPath
=
settings
->
value
(
"paths/tokendatabase"
).
toString
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment