Skip to content

Commit fab9786

Browse files
authored
Revamp properties window
* Moved the properties window code to its own files * Added a file requester in the Properties window which can be used to set a different WHDLoad slave file for an item. * updated the cd file date * Updated the German and Greek catalogs * Updated French and Italian languages * minor syntax changes
1 parent 06f0413 commit fab9786

File tree

18 files changed

+845
-673
lines changed

18 files changed

+845
-673
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
## iGame VERSION_TAG - [RELEASE_DATE]
22
### Added
3-
- Added the "Open game folder" menu in the MorphOS version, that was missing
3+
- Added a file requester in the Properties window, which can be used to set a different WHDLoad slave file for an item. This is useful when a game/demo changed place on the hard disk. (#174)
4+
- Based on the selected file by the new field, the tooltypes text is updated, enabled/disabled, based if the selected file is a WHDLoad slave one.
45

56
### Changed
7+
- Moved the Properties window code to its own files
8+
- Added the "Open game folder" menu in the MorphOS version, that was missing
69
- Disabled the gamepad usage on MorphOS because it was reported giving problems while playing a game
710

811
### Fixed
9-
- Fixed starting WHDLoad games in MorphOS using WHDLoadopener
12+
- Fixed starting WHDLoad games in MorphOS using WHDLoadopener (#253)
1013

1114
## iGame 2.5.0 - [2025-05-12]
1215
### Added

Makefile.docker

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ endif
109109
igame_OBJS = src/funcs_$(CPU).o src/iGameGUI_$(CPU).o \
110110
src/iGameMain_$(CPU).o src/strfuncs_$(CPU).o src/fsfuncs_$(CPU).o \
111111
src/slavesList_$(CPU).o src/genresList_$(CPU).o \
112-
src/chipsetList_$(CPU).o src/WinInfo_$(CPU).o
112+
src/chipsetList_$(CPU).o src/WinInfo_$(CPU).o src/WinProps_$(CPU).o
113113

114114
##########################################################################
115115
# Rule for building
@@ -141,7 +141,7 @@ src/funcs_$(CPU).o: src/funcs.c src/iGame_strings.h src/strfuncs.h \
141141
src/chipsetList.h
142142

143143
src/iGameGUI_$(CPU).o: src/iGameGUI.c src/iGameGUI.h src/iGame_strings.h \
144-
src/fsfuncs.h src/iGameExtern.h src/version.h src/WinInfo.h
144+
src/fsfuncs.h src/iGameExtern.h src/version.h src/WinInfo.h src/WinProps.h
145145

146146
src/iGameMain_$(CPU).o: src/iGameMain.c src/iGameExtern.h
147147

@@ -161,6 +161,9 @@ src/chipsetList_$(CPU).o: src/chipsetList.c src/chipsetList.h src/strfuncs.h
161161
src/WinInfo_$(CPU).o: src/WinInfo.c src/WinInfo.h src/iGameExtern.h \
162162
src/iGameGUI.h src/iGame_strings.h src/funcs.h
163163

164+
src/WinProps_$(CPU).o: src/WinProps.c src/WinProps.h src/iGameExtern.h \
165+
src/iGameGUI.h src/iGame_strings.h src/funcs.h src/fsfuncs.h
166+
164167
##########################################################################
165168
# generic rules
166169
##########################################################################

0 commit comments

Comments
 (0)