1
0
Bifurcation 0

Decided creating packages for each locale was going to be a huge PITA for uploading. Trying to set this up so that the locale specific stuff is load on demand. QuestHelper depends on QHData-base, which in turn loads the appropriate locale specific QHData addon. Note: NONE OF THIS HAS BEEN TESTED! There are so many changes that it makes more sense to commit first and ask questions later.

Cette révision appartient à :
Nathanial.C.Jones 2011-07-05 22:15:17 +00:00
Parent 3c7760b4e4
révision cbc1225158
76 fichiers modifiés avec 120 ajouts et 754 suppressions

Voir le fichier

@ -4,13 +4,11 @@ release=a
version=0
issue=0
branch=trunk
# locale "all" means a version that will run on all locales. It does NOT mean build all locale specific versions.
locale=all
if [ $# -eq 0 ]
then
echo >&2 \
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch] [-locale all|some_locale]"
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch]"
exit 1
fi
@ -21,9 +19,8 @@ do
-version) version="$2"; shift;;
-issue) issue="$2"; shift;;
-branch) branch="$2"; shift;;
-locale) locale="$2"; shift;;
-*) echo >&2 \
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch] [-locale all|some_locale]"
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch]"
exit 1;;
*) break;; # terminate while loop
esac
@ -35,7 +32,7 @@ then
echo >&2 \
"Release must be 'a', 'b' or 'r'."
echo >&2 \
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch] [-locale all|some_locale]"
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch]"
exit 1
fi
@ -66,7 +63,7 @@ then
echo >&2 \
"Branch exists."
echo >&2 \
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch] [-locale all|some_locale]"
"usage: $0 [-release a|b|r] [-version some_repository_version] [-issue an_issue_number] [-branch trunk|some_branch]"
exit 1
fi
fi
@ -99,17 +96,6 @@ cd build
release_string=${version}${release}
echo Copying appropriate locale file into place.
cp -v QHData/QHData.toc.${locale} QHData/QHData.toc
if [ $? -ne 0 ]
then
echo Build fails. Cleaning up.
cd ..
rm -rvf build
echo Build failed. Unknown locale.
return 1
fi
echo Replacing version tag and creating package.
if [ $issue -gt 0 ]
then
@ -118,7 +104,7 @@ fi
sub="s/\\\$svnversion\\\$/${release_string}/g"
sub2='s/4\.0\.1/4\.2\.0/'
for toc in `find . -iname "*.toc*"`
for toc in `find . -iname "*.toc"`
do
echo Replacing version tag in ${toc}.
cp $toc $toc.bak
@ -140,11 +126,9 @@ do
rm $lua.bak
done
release_string=${version}${release}"-"${locale}
echo ${release_string}
zip -qdgds 1m -r QuestHelper-4.2.0.${release_string}.zip QuestHelper/ QHData/
zip -qdgds 1m -r QuestHelper-4.2.0.${release_string}.zip QuestHelper/ QHData-*
echo Moving the package up one directory level.
mv -v *.zip ..

11
QHData-base/QHData-base.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (Base)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
locale.lua

3
QHData-base/locale.lua Fichier normal
Voir le fichier

@ -0,0 +1,3 @@
local loaded, reason = LoadAddon("QHData-" .. GetLocale())
assert(loaded == 1, getglobal("ADDON_" .. reason))

11
QHData-deDE/QHData-deDE.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (deDE)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_deDE.lua
static_deDE_1.lua
static_deDE_2.lua

11
QHData-enUS/QHData-enUS.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (enUS)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_enUS.lua
static_enUS_1.lua
static_enUS_2.lua

11
QHData-esES/QHData-esES.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (esES)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_esES.lua
static_esES_1.lua
static_esES_2.lua

11
QHData-esMX/QHData-esMX.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (esMX)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_esMX.lua
static_esMX_1.lua
static_esMX_2.lua

11
QHData-frFR/QHData-frFR.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (frFR)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_frFR.lua
static_frFR_1.lua
static_frFR_2.lua

11
QHData-koKR/QHData-koKR.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (koKR)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_koKR.lua
static_koKR_1.lua
static_koKR_2.lua

11
QHData-ruRU/QHData-ruRU.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (ruRU)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_ruRU.lua
static_ruRU_1.lua
static_ruRU_2.lua

9
QHData-zhCN/QHData-zhCN.toc Fichier normal
Voir le fichier

@ -0,0 +1,9 @@
## Interface: 40200
## Title: QuestHelper Data (zhCN)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_zhCN.lua

11
QHData-zhTW/QHData-zhTW.toc Fichier normal
Voir le fichier

@ -0,0 +1,11 @@
## Interface: 40200
## Title: QuestHelper Data (zhTW)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Version: 4.0.1.$svnversion$
## Dependencies: QHData-base
## LoadOnDemand: 1
static_zhTW.lua
static_zhTW_1.lua
static_zhTW_2.lua

Voir le fichier

@ -1,92 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (ALL LOCALES)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_deDE.lua
static_deDE_1.lua
static_deDE_2.lua
static_enUS.lua
static_enUS_1.lua
static_enUS_2.lua
static_esES.lua
static_esES_1.lua
static_esES_2.lua
static_esMX.lua
static_esMX_1.lua
static_esMX_2.lua
static_frFR.lua
static_frFR_1.lua
static_frFR_2.lua
static_koKR.lua
static_koKR_1.lua
static_koKR_2.lua
static_ruRU.lua
static_ruRU_1.lua
static_ruRU_2.lua
static_zhTW.lua
static_zhTW_1.lua
static_zhTW_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (deDE)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_deDE.lua
static_deDE_1.lua
static_deDE_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (enUS)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_enUS.lua
static_enUS_1.lua
static_enUS_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (esES)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_esES.lua
static_esES_1.lua
static_esES_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (esMX)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_esMX.lua
static_esMX_1.lua
static_esMX_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (frFR)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_frFR.lua
static_frFR_1.lua
static_frFR_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (koKR)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_koKR.lua
static_koKR_1.lua
static_koKR_2.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (ruRU)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_ruRU.lua
static_ruRU_1.lua
static_ruRU_2.lua

Voir le fichier

@ -1,69 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (zhCN)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_zhCN.lua

Voir le fichier

@ -1,71 +0,0 @@
## Interface: 40200
## Title: QuestHelper Data (zhTW)
## Author: zorbathut, smariot, vipersniper, nesher, nconantj
## Notes: Contains the data needed by QuestHelper
## Notes-deDE: Berechnet eine optimale Route für dich, der du während dem Questen folgen kannst.
## Notes-frFR: Calcule un itinéraire optimal pour vous de suivre.
## Notes-esES: Calcula la mejor ruta a seguir para usted.
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## X-Website: http://www.quest-helper.com/
## X-Embeds: AstrolabeQH, ChatThrottleLib
# Explanation of optional deps:
# Cartographer_Waypoints and Tomtom are there so I can link with their arrows properly.
# Swatter really likes intercepting all error messages and not letting them through. Since I want to intercept my own messages, I go after Swatter so I can insert my hook earlier on.
# Tekticles is around because, if QH loads before it does, then QH doesn't use its custom fonts, and I think its custom fonts are pretty. There's probably a better solution to this, but it turns out I'm incredibly lazy, so, meh.
# UnicodeFont: see Tekticles
# ClearFont2: see Tekticles
# That is a pile of saved variables. Let me try to explain them better.
#
# Old data gathering:
# QuestHelper_SaveDate: Date of last shutdown.
# QuestHelper_Collector_Version: Originally part of the new system, now just hanging around until I believe it vanishing won't cause problems.
#
# New data gathering:
# QuestHelper_Collector: Most new data. In one huge horrible pile, but a *properly categorized* huge horrible pile
#
# Misc:
# QuestHelper_Pref: User preferences
# QuestHelper_UID: User unique ID
# QuestHelper_Errors: List of errors seen
#
# Everything under "Old data gathering" will go away once the new data gathering is in place. (note: they have mostly gone away)
#
# Per-character stuff needs to be consolidated as well, which will happen in some future version. I need to see how it handles *removing* variables. And yeah we're adding more per-character stuff already argharblrghab
lang.lua
lang\cscz.lua
lang\dadk.lua
lang\dede.lua
lang\elel.lua
lang\enus.lua
lang\eses.lua
lang\esmx.lua
lang\fifi.lua
lang\frfr.lua
lang\huhu.lua
lang\itit.lua
lang\kokr.lua
lang\nlnl.lua
lang\nono.lua
lang\plpl.lua
lang\ptbr.lua
lang\ptpt.lua
lang\roro.lua
lang\ruru.lua
lang\svse.lua
lang\trtr.lua
lang\zhcn.lua
lang\zhtw.lua
# This is kind of a lot of files.
static.lua
static_1.lua
static_2.lua
static_zhTW.lua
static_zhTW_1.lua
static_zhTW_2.lua

Voir le fichier

@ -8,7 +8,7 @@
## Notes-esMX: Calcula la mejor ruta a seguir para usted.
## Notes-koKR: 노선에 대한 계산을 수행합니다.
## Version: 4.0.1.$svnversion$
## Dependencies: QHData
## Dependencies: QHData-base
## OptionalDeps: Cartographer_Waypoints, TomTom, Cartographer_InstanceMaps, !Swatter, tekticles, UnicodeFont, ClearFont2
## SavedVariables: QuestHelper_Pref QuestHelper_UID QuestHelper_SaveDate QuestHelper_Errors QuestHelper_Collector QuestHelper_Collector_Version
## SavedVariablesPerCharacter: QuestHelper_KnownFlightRoutes QuestHelper_Home QuestHelper_CharVersion QuestHelper_Flight_Updates

Voir le fichier

@ -8,7 +8,7 @@ local dev_mode = (QuestHelper_File["db_get.lua"] == "Development Version")
local QHDB_temp = QHDB
QHDB = nil
local QHDB = QHDB_temp]]
--QuestHelper: Assert(dev_mode or #QHDB == 4)
QuestHelper: Assert(#QHDB == 4, "Please make sure that you are loading a locale.")
local weak_v = { __mode = 'v' }
local weak_k = { __mode = 'k' }
@ -300,4 +300,4 @@ function DB_Export()
end
end
end
end
end

Voir le fichier