mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-07 13:45:03 -05:00
Right. Fixed line feeds. archos.ico is binary. Added a couple more files rockbox leaves in the root to the list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11727 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
46eb5c6bcd
commit
e669709994
6 changed files with 25 additions and 15 deletions
BIN
rbutil/archos.ico
Normal file
BIN
rbutil/archos.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -367,4 +367,4 @@ This General Public License does not permit incorporating your program into
|
||||||
proprietary programs. If your program is a subroutine library, you may
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
consider it more useful to permit linking proprietary applications with the
|
consider it more useful to permit linking proprietary applications with the
|
||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,7 @@
|
||||||
<Option compilerVar="CPP" />
|
<Option compilerVar="CPP" />
|
||||||
<Option compile="0" />
|
<Option compile="0" />
|
||||||
<Option link="0" />
|
<Option link="0" />
|
||||||
|
<Option target="default" />
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="fonts_3d.xpm">
|
<Unit filename="fonts_3d.xpm">
|
||||||
<Option compilerVar="CPP" />
|
<Option compilerVar="CPP" />
|
||||||
|
|
@ -104,12 +105,6 @@
|
||||||
<Option compilerVar="CPP" />
|
<Option compilerVar="CPP" />
|
||||||
<Option target="default" />
|
<Option target="default" />
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="rbutil.exe.Manifest">
|
|
||||||
<Option compilerVar="CPP" />
|
|
||||||
<Option compile="0" />
|
|
||||||
<Option link="0" />
|
|
||||||
<Option target="default" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="rbutil.h">
|
<Unit filename="rbutil.h">
|
||||||
<Option compilerVar="CPP" />
|
<Option compilerVar="CPP" />
|
||||||
<Option compile="0" />
|
<Option compile="0" />
|
||||||
|
|
@ -154,6 +149,12 @@
|
||||||
<Option link="0" />
|
<Option link="0" />
|
||||||
<Option target="default" />
|
<Option target="default" />
|
||||||
</Unit>
|
</Unit>
|
||||||
|
<Unit filename="tools2_3d.xpm">
|
||||||
|
<Option compilerVar="CPP" />
|
||||||
|
<Option compile="0" />
|
||||||
|
<Option link="0" />
|
||||||
|
<Option target="default" />
|
||||||
|
</Unit>
|
||||||
<Unit filename="uninstall_3d.xpm">
|
<Unit filename="uninstall_3d.xpm">
|
||||||
<Option compilerVar="CPP" />
|
<Option compilerVar="CPP" />
|
||||||
<Option compile="0" />
|
<Option compile="0" />
|
||||||
|
|
@ -176,6 +177,12 @@
|
||||||
<Option link="0" />
|
<Option link="0" />
|
||||||
<Option target="default" />
|
<Option target="default" />
|
||||||
</Unit>
|
</Unit>
|
||||||
|
<Unit filename="wx_pch.h">
|
||||||
|
<Option compilerVar="CPP" />
|
||||||
|
<Option compile="0" />
|
||||||
|
<Option link="0" />
|
||||||
|
<Option target="default" />
|
||||||
|
</Unit>
|
||||||
<Extensions />
|
<Extensions />
|
||||||
</Project>
|
</Project>
|
||||||
</CodeBlocks_project_file>
|
</CodeBlocks_project_file>
|
||||||
|
|
@ -36,7 +36,10 @@ wxDEFINE_SCOPED_PTR_TYPE(wxZipEntry);
|
||||||
const wxChar* _rootmatch[] = {
|
const wxChar* _rootmatch[] = {
|
||||||
wxT("rockbox.*"),
|
wxT("rockbox.*"),
|
||||||
wxT("ajbrec.ajz"),
|
wxT("ajbrec.ajz"),
|
||||||
wxT("archos.mod")
|
wxT("archos.mod"),
|
||||||
|
wxT(".scrobbler.*"),
|
||||||
|
wxT("battery_bench.txt"),
|
||||||
|
wxT("battery.dummy"),
|
||||||
};
|
};
|
||||||
const wxArrayString* rootmatch = new wxArrayString(
|
const wxArrayString* rootmatch = new wxArrayString(
|
||||||
(size_t) (sizeof(_rootmatch) / sizeof(wxChar*)), _rootmatch);
|
(size_t) (sizeof(_rootmatch) / sizeof(wxChar*)), _rootmatch);
|
||||||
|
|
|
||||||
|
|
@ -38,4 +38,4 @@ public:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ class wxPlatformPage : public wxWizardPageSimple
|
||||||
public:
|
public:
|
||||||
wxPlatformPage(wxWizard *parent);
|
wxPlatformPage(wxWizard *parent);
|
||||||
virtual bool TransferDataFromWindow(void);
|
virtual bool TransferDataFromWindow(void);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
wxListBox* PlatformListBox;
|
wxListBox* PlatformListBox;
|
||||||
};
|
};
|
||||||
|
|
@ -17,17 +17,17 @@ class wxLocationPage : public wxWizardPageSimple
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum {
|
enum {
|
||||||
ID_LOCATION_BTN = 1000,
|
ID_LOCATION_BTN = 1000,
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
wxLocationPage(wxWizard* parent);
|
wxLocationPage(wxWizard* parent);
|
||||||
virtual bool TransferDataFromWindow(void);
|
virtual bool TransferDataFromWindow(void);
|
||||||
void OnLocationBtn(wxCommandEvent& event);
|
void OnLocationBtn(wxCommandEvent& event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
wxStaticText* LocationText;
|
wxStaticText* LocationText;
|
||||||
};
|
};
|
||||||
|
|
@ -47,7 +47,7 @@ public:
|
||||||
virtual bool TransferDataFromWindow(void);
|
virtual bool TransferDataFromWindow(void);
|
||||||
void OnBuildBox(wxCommandEvent& event);
|
void OnBuildBox(wxCommandEvent& event);
|
||||||
void OnPageShown(wxWizardEvent& event);
|
void OnPageShown(wxWizardEvent& event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
wxRadioBox* BuildRadioBox;
|
wxRadioBox* BuildRadioBox;
|
||||||
wxStaticText* DetailText;
|
wxStaticText* DetailText;
|
||||||
|
|
@ -59,7 +59,7 @@ class wxFullUninstallPage : public wxWizardPageSimple
|
||||||
public:
|
public:
|
||||||
wxFullUninstallPage(wxWizard *parent);
|
wxFullUninstallPage(wxWizard *parent);
|
||||||
virtual bool TransferDataFromWindow(void);
|
virtual bool TransferDataFromWindow(void);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
wxCheckBox* FullCheckBox;
|
wxCheckBox* FullCheckBox;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue