Skip to content

Commit da6cbf2

Browse files
committed
Merge branch 'master' of github.com:instead-hub/instead
2 parents be9f6df + 70eaf96 commit da6cbf2

35 files changed

+1117
-548
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
}
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@main
3232

3333
- name: Create Build Directory
3434
run: cmake -E make_directory ${{github.workspace}}/build
@@ -50,7 +50,7 @@ jobs:
5050
# cmake --install ./build
5151

5252
# - name: Publish Artifact
53-
# uses: actions/upload-artifact@v2
53+
# uses: actions/upload-artifact@v4
5454
# with:
5555
# name: standalone
5656
# path: build/standalone

.github/workflows/appimage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: build AppImage
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@main
1313

1414
- name: Create Build Directory
1515
run: cmake -E make_directory ${{github.workspace}}/build
@@ -39,7 +39,7 @@ jobs:
3939
./appimagetool-x86_64.AppImage appimage/
4040
4141
- name: Publish Artifact
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: AppImage
4545
path: INSTEAD-x86_64.AppImage

.github/workflows/emscripten.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ on:
55
workflow_dispatch:
66

77
env:
8-
emsdk_ver: 3.1.19
8+
emsdk_ver: 3.1.49
99

1010
jobs:
1111
build:
1212
name: Emscripten version
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@main
1616

1717
- name: Cache emsdk
1818
id: cache-emsdk
19-
uses: actions/cache@v3
19+
uses: actions/cache@v4
2020
with:
2121
path: emsdk
2222
key: ${{ runner.os }}-${{ env.emsdk_ver }}
@@ -51,7 +51,7 @@ jobs:
5151
cp env/instead-em-js/*.svg ../release/instead-em
5252
5353
- name: Publish Artifact
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: instead-em
5757
path: release

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Windows version
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@main
1414

1515
- name: Install Packages
1616
run: |
@@ -31,7 +31,7 @@ jobs:
3131
run: make install -f Makefile.mingw
3232

3333
- name: Publish Artifact
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: instead-win
3737
path: bin

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ IF("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
88
ENDIF("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
99

1010
# global constants
11-
SET(INSTEAD_VERSION "3.5.1")
11+
SET(INSTEAD_VERSION "3.5.2")
1212

1313
# options
1414
OPTION(WITH_GTK2 "Use GTK2 file open dialog" OFF)

ChangeLog

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
1+
3.5.2
2+
3+
* enh: redesigned installer for Windows;
4+
* enh: gamepad triggers simulate mouse wheel up/down;
5+
* fix: theme.reset();
6+
* fix: documentation.
7+
8+
-- Peter Kosyh <[email protected]> Sun, 1 Sep 2024 12:00:00 +0300
9+
110
3.5.1
211

312
* enh: gamepads support;
413
* fix: anigif logic;
514
* fix: sprite alpha artefacts;
6-
* fix: cleanups in instead library and docs.
15+
* fix: cleanups in instead library and docs;
16+
* fix: Windows XP build;
17+
* fix: -software parameter in Windows;
18+
* fix: dbg keyboard input fix;
19+
* fix: segfault in pixels (line).
720

8-
-- Peter Kosyh <[email protected]> Mon, 27 Mar 2023 21:48:00 +0300
21+
-- Peter Kosyh <[email protected]> Fri, 1 Sep 2023 12:00:00 +0300
922

1023
3.5.0
1124

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INSTEAD 3.5.1
1+
INSTEAD 3.5.2
22
=============
33

44
WARNING! For successfull building you must install these development packages

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ PKGBUILD: PKGBUILD.in tarball
3434
cat PKGBUILD.in | sed -e s/MD5SUM/`md5sum $(ARCHIVE) | cut -f1 -d' '`/g > PKGBUILD
3535

3636
windows-sdl2.tar.gz:
37-
wget "http://sourceforge.net/projects/instead/files/instead/build-bin-data/windows-sdl2-2.0.24.tar.gz/download" -O $(@)
37+
wget "http://sourceforge.net/projects/instead/files/instead/build-bin-data/windows-sdl2-2.0.24.2.tar.gz/download" -O $(@)
38+
# wget "http://sourceforge.net/projects/instead/files/instead/build-bin-data/windows-sdl2-2.0.24.tar.gz/download" -O $(@)
3839
# wget "http://sourceforge.net/projects/instead/files/instead/build-bin-data/windows-sdl2-2.0.22.tar.gz/download" -O $(@)
3940
# wget "http://sourceforge.net/projects/instead/files/instead/build-bin-data/windows-sdl2-2.0.14.tar.gz/download" -O $(@)
4041

Makefile.mingw

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ docs:
2424

2525
install: all
2626
cp src/sdl-instead.exe bin
27+
cp COPYING bin
2728
$(MAKE) DESTDIR=../bin/ -C themes install
2829
$(MAKE) DESTDIR=../bin/ -C games install
2930
$(MAKE) DESTDIR=../bin/ -C stead install

PKGBUILD.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributor: Peter Kosyh <p.kosyhgmail.com>
22

33
pkgname=instead
4-
pkgver=3.5.1
4+
pkgver=3.5.2
55
pkgrel=1
66
pkgdesc="instead quest interpreter"
77
arch=('i686' 'x86_64')

0 commit comments

Comments
 (0)