Skip to content

Commit

Permalink
New Version 1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
theZiz committed Apr 27, 2017
1 parent fcce6b5 commit a2d6f70
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion about.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "client.h"
#include "lobbyList.h"

#define VERSION "1.6.3"
#define VERSION "1.6.4"

void start_about(spFontPointer font, void ( *resize )( Uint16 w, Uint16 h ));
void start_help(spFontPointer font, void ( *resize )( Uint16 w, Uint16 h ));
Expand Down
8 changes: 6 additions & 2 deletions build/pandora/hase/PXML.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- This is a sample PXML.xml file making use of many different things.-->
<PXML xmlns="http://openpandora.org/namespaces/PXML">
<package id="hase_prototype-hase_prototype-12345">
<version major="1" minor="6" release="3" build="0"/>
<version major="1" minor="6" release="4" build="0"/>
<author name="Ziz" website="http://ziz.openhandhelds.org"/>
<titles>
<title lang="en_US">
Expand All @@ -17,6 +17,10 @@ The used fonts are Pixel Mania by HiBan (CC-BY-SA) and DejaVu Sans (Public Domai
Changelog
=========

1.6.4:
- Added touchscreen/mouse support
- Fixed broken network support

1.6.3:
- Added optional handicaps for the AI to make the game harder or easier

Expand Down Expand Up @@ -374,7 +378,7 @@ Changelog
</package>
<application id="hase_prototype-hase_prototype-12345" appdata="hase_prototype">
<exec command="./hase.sh"/>
<version major="1" minor="6" release="3" build="0" type="release"/>
<version major="1" minor="6" release="4" build="0" type="release"/>
<!--This program's version-->
<osversion major="1" minor="0" release="0" build="0"/>
<!--The minimum OS version required-->
Expand Down
8 changes: 6 additions & 2 deletions client.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ pMessage sendMessage(pMessage message,char* binary_name,void* binary,int count,c
int buffer_size = 65536;
char in_buffer[buffer_size];
char* buffer = in_buffer;
char out_buffer[buffer_size];
#ifndef WIN32
char out_buffer[buffer_size];
#endif
char header[4096]; //magic number ftw!
char host[512];
int pos = 0;
Expand Down Expand Up @@ -210,7 +212,9 @@ pMessage sendMessage(pMessage message,char* binary_name,void* binary,int count,c
buffer[14] != 'K')
return NULL;
pos = 15;
int encoded = 0;
#ifndef WIN32
int encoded = 0;
#endif
int content_length = 0;
int chunked = 0;
while (
Expand Down
4 changes: 4 additions & 0 deletions hase_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ The music is from Kevin MacLeod (CC-BY-SA)\nwww.incompetech.com
Changelog
=========

1.6.4:
- Added touchscreen/mouse support
- Fixed broken network support

1.6.3:
- Added optional handicaps for the AI to make the game harder or easier

Expand Down
2 changes: 1 addition & 1 deletion make_release_packages.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
PROGRAM="hase"
VERSION="1.6.3"
VERSION="1.6.4"
DEST=./build/*
ZIP_CALL="7z a -t7z -m0=LZMA -mmt=on -mx=9 -md=256m -mfb=512 -ms=on upload.7z"
RM_CALL="rm upload.7z"
Expand Down

0 comments on commit a2d6f70

Please sign in to comment.