changed the base url reference to openboard.org

preferencesAboutTextFull
Claudio Valerio 11 years ago
parent 8123279bdd
commit 4ac96f7094
  1. 6
      OpenBoard.iss
  2. 2
      buildDebianPackage.sh
  3. 10
      resources/win/OpenBoard.rc
  4. 2
      src/core/UBApplicationController.cpp
  5. 2
      src/core/UBSettings.cpp
  6. 2
      src/podcast/youtube/UBYouTubePublisher.cpp

@ -10,9 +10,9 @@ AppName=OpenBoard
AppVerName=OpenBoard 1.0 AppVerName=OpenBoard 1.0
AppPublisher=Open Education Foundation AppPublisher=Open Education Foundation
AppPublisherURL=http://dev.open-sankore.org AppPublisherURL=http://get.openboard.org
AppSupportURL=http://dev.open-sankore.org AppSupportURL=http://www.openboard.org
AppUpdatesURL=http://dev.open-sankore.org AppUpdatesURL=http://get.openboard.org
DefaultDirName={pf}\OpenBoard DefaultDirName={pf}\OpenBoard
DefaultGroupName=OpenBoard DefaultGroupName=OpenBoard

@ -366,7 +366,7 @@ echo "Architecture: $ARCHITECTURE" >> "$CONTROL_FILE"
echo "Essential: no" >> "$CONTROL_FILE" echo "Essential: no" >> "$CONTROL_FILE"
echo "Installed-Size: `du -s $PACKAGE_DIRECTORY | awk '{ print $1 }'`" >> "$CONTROL_FILE" echo "Installed-Size: `du -s $PACKAGE_DIRECTORY | awk '{ print $1 }'`" >> "$CONTROL_FILE"
echo "Maintainer: ${APPLICATION_NAME} Developers team <dev@oe-f.org>" >> "$CONTROL_FILE" echo "Maintainer: ${APPLICATION_NAME} Developers team <dev@oe-f.org>" >> "$CONTROL_FILE"
echo "Homepage: http://oe-f.org" >> "$CONTROL_FILE" echo "Homepage: http://www.openboard.org" >> "$CONTROL_FILE"
echo -n "Depends: " >> "$CONTROL_FILE" echo -n "Depends: " >> "$CONTROL_FILE"
unset tab unset tab
declare -a tab declare -a tab

@ -33,17 +33,17 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Open-Sankoré\000" VALUE "CompanyName", "Open Education Foudation\000"
VALUE "FileDescription", "Sankore 3.1\000" VALUE "FileDescription", "OpenBoard\000"
VALUE "FileVersion", UBVERSION VALUE "FileVersion", UBVERSION
VALUE "LegalCopyright", "(c) Webdoc SA, 2009-2012. All rights reserved\000" VALUE "LegalCopyright", "(c) Open Education Foundation 2013. All rights reserved\000"
VALUE "OriginalFilename", "Sankore 3.1.exe\000" VALUE "OriginalFilename", "OpenBoard.exe\000"
VALUE "ProductName", "Sankore 3.1\000" VALUE "ProductName", "OpenBoard\000"
VALUE "ProductVersion", UBVERSION VALUE "ProductVersion", UBVERSION

@ -481,7 +481,7 @@ void UBApplicationController::checkUpdate()
{ {
if(mHttp) if(mHttp)
delete mHttp; delete mHttp;
QUrl url("http://oe-f.org/update.json"); QUrl url("http://get.openboard.org/update.json");
mHttp = new QHttp(url.host()); mHttp = new QHttp(url.host());
connect(mHttp, SIGNAL(requestFinished(int,bool)), this, SLOT(updateRequestFinished(int,bool))); connect(mHttp, SIGNAL(requestFinished(int,bool)), this, SLOT(updateRequestFinished(int,bool)));
mHttp->get(url.path()); mHttp->get(url.path());

@ -200,7 +200,7 @@ void UBSettings::ValidateKeyboardPaletteKeyBtnSize()
void UBSettings::init() void UBSettings::init()
{ {
productWebUrl = new UBSetting(this, "App", "ProductWebAddress", "http://www.oe-f.org"); productWebUrl = new UBSetting(this, "App", "ProductWebAddress", "http://www.openboard.org");
softwareHomeUrl = productWebUrl->get().toString(); softwareHomeUrl = productWebUrl->get().toString();

@ -278,7 +278,7 @@ QString UBYouTubePublisher::youtubeMetadata()
workingDescription = workingDescription.left(4900) + "..."; workingDescription = workingDescription.left(4900) + "...";
} }
workingDescription += "\n\nhttp://www.oe-f.org"; workingDescription += "\n\nhttp://www.openboard.org";
if(workingDescription.length() == 0) if(workingDescription.length() == 0)
{ {

Loading…
Cancel
Save