Skip to content

Commit

Permalink
release 0.1.1 (patch for alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wallby committed Aug 18, 2024
2 parents 61b8860 + 359d73b commit b322bf8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
7 changes: 4 additions & 3 deletions makefile_mini.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MAKEFILE_MINI_VERSION:=0.1.1
MAKEFILE_MINI_VERSION:=0.1.2

# usage..
# make #< default target makes all not ignored binaries
Expand Down Expand Up @@ -1453,10 +1453,11 @@ test: $(MM_FILEPATH_PER_BINARY)
$(foreach $(0)_infoAboutTest,$(MM_INFO_PER_TEST),$\
$(foreach $(0)_executablefilepath,$($($(0)_infoAboutTest).filepathPerExecutable),$\
$(eval $(0)_a:=$(if $(findstring /,$($(0)_executablefilepath)),,.$(MM_FOLDER_SEPARATOR))$($(0)_executablefilepath))$\
$(MM_NEWLINE) @$(if $(OS),,export LD_LIBRARY_PATH=$$$$LD_LIBRARY_PATH:./:.makefile-mini/; )$($(0)_a);echo $($(0)_a)$\
$(eval $(0)_b:=@export LD_LIBRARY_PATH=$$$$LD_LIBRARY_PATH:./:.makefile-mini/; $($(0)_a); echo $($(0)_a))$\
$(MM_NEWLINE) $(if $(OS),$($(0)_a),$($(0)_b))$\
)$\
$(foreach $(0)_script,$($($(0)_infoAboutTest).scripts),$\
$(MM_NEWLINE) $(if $(findstring /,$($(0)_executablefilepath)),,.$(MM_FOLDER_SEPARATOR))$($(0)_script)$(MM_SCRIPT_EXTENSION)$\
$(MM_NEWLINE) .$(MM_FOLDER_SEPARATOR)$($(0)_script)$(MM_SCRIPT_EXTENSION)$\
)$\
)
endef
Expand Down
2 changes: 1 addition & 1 deletion window_mini.c
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ void close_info_about_window_win32(struct info_about_window_t* a)
// v
// causes WM_DESTROY
// v
if(DestroyWindow(hwnd) == 0)
if(DestroyWindow(a->win32.hwnd.a) == 0)
{
if(on_print != NULL)
{
Expand Down
10 changes: 1 addition & 9 deletions window_mini.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef WINDOW_MINI_H
#define WINDOW_MINI_H

#define WINDOW_MINI_VERSION 0.1
#define WINDOW_MINI_VERSION 0.1.1

#include <stdio.h>

Expand Down Expand Up @@ -84,18 +84,10 @@ struct wm_info_about_window_t
{
HWND a;
} hwnd;
struct
{
HINSTANCE a;
} hinstance;
} win32;
#else //< #elif defined(__linux__)
struct
{
struct
{
Display* a;
} display;
struct
{
Window a;
Expand Down

0 comments on commit b322bf8

Please sign in to comment.