Skip to content

Commit

Permalink
Use the Gencore II as program icon, to distinguish from OpenTyrian
Browse files Browse the repository at this point in the history
  • Loading branch information
KScl committed Feb 19, 2024
1 parent ef0bc8d commit 2dcce3c
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 16 deletions.
26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,25 +124,25 @@ installdirs :
install : $(TARGET) installdirs
$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)/
$(INSTALL_DATA) NEWS README $(DESTDIR)$(docdir)/
$(INSTALL_DATA) linux/man/opentyrian.6 $(DESTDIR)$(man6dir)/opentyrian2000$(man6ext)
$(INSTALL_DATA) linux/opentyrian.desktop $(DESTDIR)$(desktopdir)/
$(INSTALL_DATA) linux/icons/tyrian-22.png $(DESTDIR)$(icondir)/hicolor/22x22/apps/opentyrian.png
$(INSTALL_DATA) linux/icons/tyrian-24.png $(DESTDIR)$(icondir)/hicolor/24x24/apps/opentyrian.png
$(INSTALL_DATA) linux/icons/tyrian-32.png $(DESTDIR)$(icondir)/hicolor/32x32/apps/opentyrian.png
$(INSTALL_DATA) linux/icons/tyrian-48.png $(DESTDIR)$(icondir)/hicolor/48x48/apps/opentyrian.png
$(INSTALL_DATA) linux/icons/tyrian-128.png $(DESTDIR)$(icondir)/hicolor/128x128/apps/opentyrian.png
$(INSTALL_DATA) linux/man/opentyrian2000.6 $(DESTDIR)$(man6dir)/opentyrian2000$(man6ext)
$(INSTALL_DATA) linux/opentyrian2000.desktop $(DESTDIR)$(desktopdir)/
$(INSTALL_DATA) linux/icons/tyrian2000-22.png $(DESTDIR)$(icondir)/hicolor/22x22/apps/opentyrian2000.png
$(INSTALL_DATA) linux/icons/tyrian2000-24.png $(DESTDIR)$(icondir)/hicolor/24x24/apps/opentyrian2000.png
$(INSTALL_DATA) linux/icons/tyrian2000-32.png $(DESTDIR)$(icondir)/hicolor/32x32/apps/opentyrian2000.png
$(INSTALL_DATA) linux/icons/tyrian2000-48.png $(DESTDIR)$(icondir)/hicolor/48x48/apps/opentyrian2000.png
$(INSTALL_DATA) linux/icons/tyrian2000-128.png $(DESTDIR)$(icondir)/hicolor/128x128/apps/opentyrian2000.png

.PHONY : uninstall
uninstall :
rm -f $(DESTDIR)$(bindir)/$(TARGET)
rm -f $(DESTDIR)$(docdir)/NEWS $(DESTDIR)$(docdir)/README
rm -f $(DESTDIR)$(man6dir)/opentyrian2000$(man6ext)
rm -f $(DESTDIR)$(desktopdir)/opentyrian.desktop
rm -f $(DESTDIR)$(icondir)/hicolor/22x22/apps/opentyrian.png
rm -f $(DESTDIR)$(icondir)/hicolor/24x24/apps/opentyrian.png
rm -f $(DESTDIR)$(icondir)/hicolor/32x32/apps/opentyrian.png
rm -f $(DESTDIR)$(icondir)/hicolor/48x48/apps/opentyrian.png
rm -f $(DESTDIR)$(icondir)/hicolor/128x128/apps/opentyrian.png
rm -f $(DESTDIR)$(desktopdir)/opentyrian2000.desktop
rm -f $(DESTDIR)$(icondir)/hicolor/22x22/apps/opentyrian2000.png
rm -f $(DESTDIR)$(icondir)/hicolor/24x24/apps/opentyrian2000.png
rm -f $(DESTDIR)$(icondir)/hicolor/32x32/apps/opentyrian2000.png
rm -f $(DESTDIR)$(icondir)/hicolor/48x48/apps/opentyrian2000.png
rm -f $(DESTDIR)$(icondir)/hicolor/128x128/apps/opentyrian2000.png

.PHONY : clean
clean :
Expand Down
Binary file added linux/icons/tyrian2000-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added linux/icons/tyrian2000-22.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added linux/icons/tyrian2000-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added linux/icons/tyrian2000-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added linux/icons/tyrian2000-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion linux/man/opentyrian.6 → linux/man/opentyrian2000.6
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH opentyrian2000 6 "October 2009" "" "OpenTyrian Manual"
.SH NAME
opentyrian2000 \- an open-source port of the DOS game Tyrian2000
opentyrian2000 \- an open-source port of the DOS game Tyrian 2000
.SH SYNOPSIS
.B opentyrian2000
.RI [ OPTIONS ]
Expand Down
3 changes: 2 additions & 1 deletion src/opentyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,8 @@ int main(int argc, char *argv[])

printf("\nWelcome to... >> %s %s <<\n\n", opentyrian_str, opentyrian_version);

printf("Copyright (C) 2022 The OpenTyrian Development Team\n\n");
printf("Copyright (C) 2022 The OpenTyrian Development Team\n");
printf("Copyright (C) 2022 Kaito Sinclaire\n\n");

printf("This program comes with ABSOLUTELY NO WARRANTY.\n");
printf("This is free software, and you are welcome to redistribute it\n");
Expand Down
2 changes: 1 addition & 1 deletion visualc/resources.rc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1 ICON "tyrian.ico"
1 ICON "tyrian2000.ico"
Binary file added visualc/tyrian2000.ico
Binary file not shown.

0 comments on commit 2dcce3c

Please sign in to comment.