Changeset 146 for branches


Ignore:
Timestamp:
01/17/2008 09:39:15 PM (4 years ago)
Author:
guyru
Message:
  • Updated autotools files
  • Added desktop file
  • Updated version strings
Location:
branches/openyahtzee-1.8
Files:
2 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • branches/openyahtzee-1.8/Makefile.am

    r144 r146  
    44 
    55SUBDIRS = src 
     6 
     7appicondir = $(datadir)/pixmaps 
     8dist_appicon_DATA = icons/openyahtzee.png 
     9 
     10menudir = $(datadir)/applications 
     11dist_menu_DATA = openyahtzee.desktop 
     12 
    613AM_CXXFLAGS = `wx-config --cxxflags` 
  • branches/openyahtzee-1.8/configure.in

    r2 r146  
    22 
    33AM_CONFIG_HEADER(config.h) 
    4 AM_INIT_AUTOMAKE(openyahtzee, 0.1) 
     4AM_INIT_AUTOMAKE(openyahtzee, 1.8.1) 
    55 
    66AC_LANG_CPLUSPLUS 
  • branches/openyahtzee-1.8/src/About.cpp

    r144 r146  
    5151         
    5252#ifdef PORTABLE 
    53         app_label = new wxStaticText(this, -1, wxT("Open Yahtzee Portable Edition 1.8.0")); 
     53        app_label = new wxStaticText(this, -1, wxT("Open Yahtzee Portable Edition 1.8.1")); 
    5454#else 
    55         app_label = new wxStaticText(this, -1, wxT("Open Yahtzee 1.8.0")); 
     55        app_label = new wxStaticText(this, -1, wxT("Open Yahtzee 1.8.1")); 
    5656#endif 
    5757        label_desc = new wxStaticText(notebook_main_pane_about, -1, wxT("A full-featured wxWidgets version of\nthe classic dice game Yahtzee.")); 
  • branches/openyahtzee-1.8/src/MainFrame.cpp

    r145 r146  
    6868//default values - settings 
    6969#define DEF_HIGHSCORESIZE 20 
    70 #define OY_VERSION "1.8.0" 
     70#define OY_VERSION "1.8.1" 
    7171 
    7272DEFINE_EVENT_TYPE(wxEVT_ENABLE_ROLL) 
  • branches/openyahtzee-1.8/src/Makefile.am

    r144 r146  
    11bin_PROGRAMS = openyahtzee 
    22openyahtzee_SOURCES = openyahtzee.cpp MainFrame.cpp five.xpm four.xpm one.xpm \ 
    3                                                         six.xpm three.xpm two.xpm DBwrapper.cpp DBwrapper.h SettingsDB.cpp \ 
    4                                                         HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm icon32.xpm \ 
    5                                 openyahtzee.rc wxDynamicBitmap.cpp About.cpp UtilityFunctions.cpp 
     3        six.xpm three.xpm two.xpm DBwrapper.cpp SettingsDB.cpp \ 
     4        HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp icon.xpm \ 
     5        icon32.xpm wxDynamicBitmap.cpp About.cpp UtilityFunctions.cpp 
    66 
    77# set the include path found by configure 
     
    1111 
    1212noinst_HEADERS = MainFrame.h ObjectsID.h SettingsDB.h HighScoreTableDB.h \ 
    13         HighScoreDialog.h SettingsDialog.h Icon.h icon32.ico wxDynamicBitmap.h UtilityFunctions.h 
     13        HighScoreDialog.h SettingsDialog.h Icon.h icon32.ico wxDynamicBitmap.h \ 
     14        UtilityFunctions.h DBwrapper.h About.h 
    1415 
    1516openyahtzee_LDFLAGS = `wx-config --libs` 
Note: See TracChangeset for help on using the changeset viewer.