PlaatEnergy 0.9

PlaatEnergy v0.9 is released with the following changes and bug fixes:

  • General: Added security shield arround WebGUI based on sessionId.
  • General: Improve customer query report.
  • General: Redesign solar deliverable charts (Now they are more flexible).
  • General: Added option to select solar meter vendor.
  • General: Improve theme and language hyperlink.
  • General: Added home password feature.
  • General: Added setting password feature.
  • General: If database connection fails, user is informed.

Click here to download the latest version.

PlaatEnergy 0.8

PlaatEnergy v0.8 is released with the following changes and bug fixes:

  • Hot fix release to help one of the launching customers!
  • Bugfix: Fix 3 nasty bugs which only occur the first installed day.
  • Bugfix: Used gas years report is now showing correct data.
  • Bugfix: Kampstrup energy sensor script is now working correct.

Click here to download the latest version.

PlaatEnergy 0.7

PlaatEnergy v0.7 is released with the following changes and bug fixes:

  • General: Added CSV export feature.
  • General: Improve customer query output.
  • General: Add day name to day reports.
  • General: Improve main menu when solar and/or weather station is disabled.
  • General: Added slide show mode. Year reports automatic cycle without human interaction.
  • General: Added option to enable chart legend.
  • General: Added option to set chart dimenision.
  • General: Setting page support now combobox to prevent invalid input.
  • General: Add support for Kampstrup and Landis energy meters.
  • Bugfix: New version check is now working correct.
  • Bugfix: Month and Day navigation is now working correct.

Click here to download the latest version.

PlaatEnergy 0.6

PlaatEnergy v0.6 is released with the following changes and bug fixes:

  • General: Added database backup feature to setting page.
  • General: Minimum and maximum day value to weather information pages.
  • General: Raspberry Pi Sense Hat led display shows now current power usage every minute.
  • General: Added PlaatSoft Logo to about page.
  • General: Added source code documentation for better support.
  • Bugfix: Used energy years report show now correct Y axes scale.
  • Bugfix: Selecting day in the future is now not possible anymore!

Click here to download the latest version.

PlaatEnergy 0.5

PlaatEnergy v0.5 is released with the following changes and bug fixes:

  • General: Move all configuration items to database.
  • General: Add settings page.
  • General: Add energy, gas, solar measurement correction page.
  • General: Improve header and footer block of all pages.
  • General: Improve error handeling. If something goes wrong user is better informed.
  • Realtime Information: Add slider effect to information boxes.
  • Realtime Information: Add sunrise and sunset information box based on location.
  • Realtime Information: Add energy and gas carbon dioxide emission information box.
  • Realtime Information: Setting slider contain now more options.
  • Installation: Database is now automaticly created/patched during installation.
  • Installation: Now only one cron job is needed.
  • Installation: Python sensors scripts fetch device settings from database.
  • Installation: When new version is available user is informed.
  • Bugfix: Energy / Weather station meter connection down detection improved.

Click here to download the latest version.

PlaatEnergy 0.4

PlaatEnergy v0.4 is released with the following changes and bug fixes:

  • Add forecast information to years and year reports.
  • Add multi language support.
  • Move dutch translation to resource file.
  • Add english resource file.
  • Add solar correction page to add missing measurement.
  • Add release notes page.
  • Add about page.
  • Add donate page.
  • Improve realtime info page. Now page has same dimensions as other pages.
  • Add light and dark css theme (thanks bplaat).
  • Add buttons icons (thanks bplaat).

Click here to download the latest version.

PlaatEnergy 0.3

PlaatEnergy v0.3 is released with the following changes and bug fixes:

30-11-2015 PlaatEnergy v0.3

  • Added Energy, Solar, Gas years reports.
  • Optimised database structure. Data is now aggregrated on day base.
  • Update energy, solar, gas year reports.
  • Update energy, solar, gas month reports.
  • Update energy, solar, gas day reports.
  • Move sensor python scripts to website directory structure.
  • Add option to disable weather meter.
  • Add option to disable solar meter.
  • Add connection check to Energy, Solar and Weather meter.
  • Realtime information GUI is improved.

Click here to download the latest version.

PlaatEnergy 0.2

PlaatEnergy v0.2 is released with the following changes and bug fixes:

31-10-2015 PlaatEnergy v0.2

  • Created mysql database.
  • Imported all solar csv data in database.
  • Add P1 energy meter python sensor script.
  • Add AstroHat weather sensor script.
  • Add energy, solar, gas year reports.
  • Add energy, solar, gas month reports.
  • Add energy, solar, gas day reports.
  • Add temperature, huminity, pressure day reports.
  • Add realtime information GUI (Created by bplaat).

Click here to download the latest version.

WarQuest 6.8

WarQuest v6.8 is released with the following changes and bug fixes:

03-04-2014 WarQuest v6.8
Game Server

  • Improve Home page layout for new and existing players.
  • Improve buildings page and casino menu layout.
  • Added Clan->Clan Profile->Clan Settings page.
  • Now Clan name, logo, minimum level can be changed.
  • Bugfix: New skillpoint(s) notification is not working correct!

Play

Click here to enter directly the game!

Change login profile

If you want to change your login profile on a WarQuest Android App, please use the following instruction.

1. Start WarQuest App on your device.
2. Press the “three/bar point” icon on the lower part of the screen.
3. Now three new buttons appear on the lower part of the screen Exit, Settings, About
4. Click on the Settings button.
5. Change username
6. Change password
7. Leave setting page
8. Press again the “three point/bar” icon on the lower part of the screen.
9. Click now on the Exit button.
10. Now start WarQuest App again

WarQuest SOAP java client

Hi WarQuest player,

If you want to automate attacks, missions and/or alliance requests use the follow Java
example to interface with the WarQuest SOAP web service.

12-03-2014: Update java example. Now based on JavaCXF framework. Must cleaner java code!


package nl.warquest.client;

import nl.warquest.service.warquest.Alliance;
import nl.warquest.service.warquest.Battle;
import nl.warquest.service.warquest.Force;
import nl.warquest.service.warquest.Mission;
import nl.warquest.service.warquest.Planet;
import nl.warquest.service.warquest_wsdl.WarQuest;
import nl.warquest.service.warquest_wsdl.WarQuestPort;

public class Main {

	public static void main(String[] args) {
        		
		WarQuest warquest = new WarQuest();
		WarQuestPort port = warquest.getWarQuestPort();
				
		String username = "username";
		String password = "password";
					        
		Mission mission = port.doMission(username, password, true, false);
		System.out.println("username="+username);
		System.out.println("mission.result="+mission.isResult());
		System.out.println("mission.popup="+mission.getPopup());
						
		Battle battle = port.doBattle(username, password, Planet.EARTH, Force.AIRFORCE);
		System.out.println("username="+username);
		System.out.println("battle.result="+battle.isResult());
		System.out.println("battle.popup="+battle.getPopup());
				
		Alliance alliance = port.doAlliance(username, password);
		System.out.println("username="+username);
		System.out.println("alliance.result="+alliance.isResult());
		System.out.println("alliance.popup="+alliance.getPopup());		
	}
}

Needed MAVEM pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>nl.warquest</groupId>
  <artifactId>client</artifactId>
  <version>0.1</version>
  <name>WarQuest</name>
  <description>WarQuest client</description>
  
  <build>
    <plugins>
  		<plugin>
   			<groupId>org.apache.cxf</groupId>
    		<artifactId>cxf-codegen-plugin</artifactId>
    		<version>2.7.10</version>
    		<executions>
        		<execution>
            		<id>generate-sources</id>
            		<phase>generate-sources</phase>
            		<configuration>
                		<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
                		<wsdlOptions>
                    		<wsdlOption>
                        		<wsdl>http://www.warquest.nl/service?wsdl</wsdl>
                    		</wsdlOption>
                		</wsdlOptions>
            		</configuration>
            		<goals>
                		<goal>wsdl2java</goal>
            		</goals>
        		</execution>
    		</executions>
		</plugin>
  	</plugins>
  </build>
</project>

WarQuest 6.6

WarQuest v6.6 is released with the following changes and bug fixes:

11-03-2014 WarQuest v6.6
Game Server

  • Added BBC news headlines to home breaking news section
  • Added 45 mission awards.
  • Added player search to Player->Alliance->Invite page.
  • Added Forums->Clan message system.
  • Added Admin->Views page (Admin Mode only).
  • Added robot account update (Admin Mode only).
  • Improve Admin->Levels page (Admin Mode only).
  • Added doAlliance method to WarQuest WebService interface.
  • Improve doMission method of WarQuest WebService interface.
  • Disable account reset functionality.
  • Disable automatic clan (member) inactive remove.
  • Added trade, restore features to unlock schema.
  • Enable as default scheme “transparent” for new players.

Play

Click here to enter directly the game!

WarQuest 6.5

WarQuest v6.5 is released with the following changes and bug fixes:

27-02-2014 WarQuest v6.5
Game Server v6.5

  • Clan Wars improvements:
    • Added clan missions. See Missions->Clan.
    • Added clan statistics to Alliance->Clan->Clan Profile
    • Added hyperlink from Home->Profile->Clan to Clan Profile.
    • Added Players->Leaderboard->Best-Clans.
    • Max. allowed daily deposit to clan bank is 10x hourly income.
  • GUI improvements:
    • Refactor HTML to support new CCS3 themes.
    • Added “transparent” theme (Home->Settings->Theme)
    • Added more color to all themes.
    • Removed not used themes.
    • Redesign main menu and login page.
    • Improve bank transaction log.
    • Update Help->Instructions text.
    • Added Home->Profile->Total hourly income page.
    • Added Home->Profile->Citizens cost page.
    • Added hyperlinks from Home->Profile->Assest to Bank pages
  • Other improvements:
    • Added two extra mars discount buildings.
    • Leaderboard position is now only based on expercience.
    • Limit maximum amount of promotion email invites.
    • Improve email address validation.

Play

Click here to enter directly the game!

WarQuest Windows App 1.6

Plaatsoft has released version 1.6 of the WarQuest for Windows. This release contain the following changes:

23-02-2014 Version 1.6
– Added text copy & past support.
– Added CCS3 support.
– Added HTML5 sound support.
– Use QT library 5.2.1 for Windows as engine.
– The app was build with QtCreator v3.0.1
– Released app on www.plaatsoft.nl

Download

Click here for detail WarQuest information and download links.

WarQuest 6.4

WarQuest v6.4 is released with the following changes and bug fixes:

17-02-2014 WarQuest v6.4
Game Server

  • Update premium gold features:
    • Added premium membership feature to Home->Trade page
    • Premium membership has the following benefits:
      • Double experience during battles and missions.
      • Triple money during battles and missions.
  • Clan Wars improvements:
    • Added clan bank transaction log.
    • Added clan bank depostit fee.
    • Added clan bank daily service charge.
  • Added basic SOAP web service interface
    • URL is http://www.warquest.nl/service?wsdl
    • Added getPlayer methode
    • Added getClan methode
    • Added getPlanet methode
    • Added doBattle methode
    • Added doMission methode
  • Enable HTTPS in Apache (based on selfsigned certificate).
  • Refactor HTML output handeling.
  • Bank accounts >100 trillion dollar do NOT receive interest anymore.
  • Added extra support text to donate page.
  • Bug fix: Mission planet image was sometimes incorrect rendered.

Play

Click here to enter directly the game!