1.4.2, kbd fix

This commit is contained in:
p.kosyh 2011-05-29 16:15:05 +00:00
parent 9a1db3628c
commit e8f609e971
19 changed files with 27 additions and 22 deletions

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
PREFIX=./
DESTDIR=

View file

@ -1,6 +1,6 @@
# Contributor: Peter Kosyh <p.kosyhgmail.com>
pkgname=instead
pkgver=1.4.1
pkgver=1.4.2
pkgrel=1
pkgdesc="instead quest interpreter"
arch=('i686' 'x86_64')

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
DESTDIR=
BIN=

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
DESTDIR=
BIN=

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
PREFIX=/usr/local
DESTDIR=

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
PREFIX=./
DESTDIR=

View file

@ -1,4 +1,4 @@
VERSION := 1.4.1
VERSION := 1.4.2
PREFIX=
DESTDIR=

7
debian/changelog vendored
View file

@ -1,3 +1,10 @@
instead (1.4.2) unstable; urgency=low
* bug fix in idf gets;
* bug fix in kbd hooking;
-- Peter Kosyh <p.kosyh@gmail.com> Thu, 19 May 2011 20:14:00 +0400
instead (1.4.1) unstable; urgency=low
* bug fix in use;

View file

@ -1,6 +1,6 @@
[Desktop Entry]
Encoding=UTF-8
Version=1.4.1
Version=1.4.2
Type=Application
Name=INSTEAD
Name[ru]=INSTEAD

View file

@ -13,7 +13,7 @@ body { font-family: Verdana, Arial, Helvetica, sans-serif;
</style>
<title>INSTEAD -- interpreter of simple text adventures for Unix and Windows</title>
</head><body bgcolor="#f0f0f0">
<h2>INSTEAD 1.4.1</h2>
<h2>INSTEAD 1.4.2</h2>
<p>INSTEAD -- interpreter of simple text adventures for Unix and Windows.<br>
INSTEAD was designed to interpret the games that are the mix of visual novels, text quests and classical 90'ss quests.</p>

View file

@ -1,4 +1,4 @@
.TH INSTEAD 6 "Version 1.4.1" Instead GAMES
.TH INSTEAD 6 "Version 1.4.2" Instead GAMES
.SH NAME

View file

@ -8,7 +8,7 @@
&EN
; standard SIS file header
#{"INSTEAD"},(0xA0020410),1,4,1
#{"INSTEAD"},(0xA0020410),1,4,2
;Localised Vendor name
%{"Peter Kosyh"}

View file

@ -1,6 +1,6 @@
Summary: simply text adventures/visual novels engine and game
Name: instead
Version: 1.4.1
Version: 1.4.2
Release: 1%{?dist}
License: GPLv2
URL: http://instead.googlecode.com

View file

@ -1,4 +1,4 @@
INSTEAD 1.4.1
INSTEAD 1.4.2
=============
WARNING! For successfull building you must install these development packages (names may vary in your distribution):

View file

@ -1,11 +1,11 @@
[Setup]
AppName=INSTEAD-KIT
AppVerName=INSTEAD 1.4.1
AppVerName=INSTEAD 1.4.2
DefaultDirName={pf}\Pinebrush games\INSTEAD
DefaultGroupName=Pinebrush games
UninstallDisplayIcon={app}\sdl-instead.exe
OutputDir=.
OutputBaseFilename=instead-kit-1.4.1
OutputBaseFilename=instead-kit-1.4.2
AllowNoIcons=true
[Languages]

View file

@ -1,11 +1,11 @@
[Setup]
AppName=INSTEAD
AppVerName=INSTEAD 1.4.1
AppVerName=INSTEAD 1.4.2
DefaultDirName={pf}\Pinebrush games\INSTEAD
DefaultGroupName=Pinebrush games
UninstallDisplayIcon={app}\sdl-instead.exe
OutputDir=.
OutputBaseFilename=instead-1.4.1
OutputBaseFilename=instead-1.4.2
AllowNoIcons=true
SetupIconFile=icon\sdl_instead.ico
ChangesAssociations=yes

View file

@ -1757,7 +1757,7 @@ int game_cmd(char *cmd)
// if (dd)
game_cursor(CURSOR_CLEAR);
cmdstr = instead_cmd(cmd); rc = instead_bretval(1); instead_clear();
cmdstr = instead_cmd(cmd); rc = !instead_bretval(1); instead_clear();
game_music_player();
game_sound_player();
@ -1775,12 +1775,10 @@ int game_cmd(char *cmd)
if (!cmdstr) {
if (game_pict_modify(NULL)) /* redraw pic only */
game_redraw_pic();
rc = (rc)?0:1; /* nothing happens? */
if (!rc)
goto inv; /* hackish? ok, yes it is... */
goto err; /* really nothing to do */
}
fading = check_fading();
instead_function("instead.get_title", NULL);

View file

@ -1,7 +1,7 @@
#ifndef S60_H
#define S60_H
#define PATH_MAX 256
#define VERSION "1.4.1"
#define VERSION "1.4.2"
#define DATAPATH "./"
#define STEAD_PATH DATAPATH"stead/"
#define THEMES_PATH DATAPATH"themes/"

View file

@ -1,5 +1,5 @@
stead = {
version = "1.4.1",
version = "1.4.2",
api_version = "1.1.6", -- last version before 1.2.0
table = table,
delim = ',',