Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
Add new version changes in CHANGELOG.md.
Update copyright line.
  • Loading branch information
viewizard committed Feb 9, 2025
1 parent 7504e9b commit 9f01c1f
Show file tree
Hide file tree
Showing 180 changed files with 195 additions and 185 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 1.4.3

### Overall changes:

- Prevented assets loading slow down with enabled VSync.
- Added <Ctrl>+<V> keys support for copy text from clipboard into new pilot's profile name.
- Improved textures cache work.
- Improved preloaded 3d models cache work.
- Changes for better work with SDL2-compat.

# Version 1.4.2

### Overall changes:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ The easy way to get up to date AstroMenace on your computer:

### 1) Make sure all necessary packages with development headers installed in your system:

gcc or clang or any compiler with full [ISO/IEC 14882:2011 (C++11)](https://www.iso.org/standard/50372.html) support, cmake, make, git, libsdl2, libogg, libvorbis, openal, alut (freealut), freetype2
gcc or clang or any compiler with full [ISO/IEC 14882:2011 (C++11)](https://www.iso.org/standard/50372.html) support, cmake, make, git, libsdl2 (or libsdl3 with libsdl2-compat), libogg, libvorbis, openal, alut (freealut), freetype2

#### For macOS:
Download and install "Command Line Tools for Xcode" or "Xcode".
Expand Down
2 changes: 1 addition & 1 deletion src/assets/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/audio.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/loading.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/loading.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/model3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/model3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/shader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/shader.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/texture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/assets/texture.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
6 changes: 3 additions & 3 deletions src/build_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand All @@ -28,8 +28,8 @@
#ifndef BUILDCONFIG_H
#define BUILDCONFIG_H

#define GAME_VERSION "1.4.2"
#define GAME_VFS_BUILD 221114
#define GAME_VERSION "1.4.3"
#define GAME_VFS_BUILD 250208


// define DATADIR with gamedata.vfs file location if you don't put it together in the same directory with binary file.
Expand Down
2 changes: 1 addition & 1 deletion src/command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/command.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/audio.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/music.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/openal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/openal.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/audio/sound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/camera/camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/camera/camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/camera/camera_math.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/collision_detection/collision_detection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/collision_detection/collision_detection.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/font/font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/font/font.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/extensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/extensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_draw2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_draw3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_fbo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_glsl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard


AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_light.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard
AstroMenace is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/core/graphics/gl_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

AstroMenace
Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
Copyright (c) 2006-2019 Mikhail Kurinnoi, Viewizard
Copyright (C) 2006-2025 Mikhail Kurinnoi, Viewizard


AstroMenace is free software: you can redistribute it and/or modify
Expand Down
Loading

0 comments on commit 9f01c1f

Please sign in to comment.