Skip to content

Commit 304c085

Browse files
Add license file; Add Windows icon resource.
1 parent 932f224 commit 304c085

File tree

8 files changed

+387
-5
lines changed

8 files changed

+387
-5
lines changed

.idea/misc.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required (VERSION 3.13)
22
project(Mu
3-
VERSION 1.2.0
3+
VERSION 1.3.0
44
DESCRIPTION "Classic Palm OS Emulator."
55
HOMEPAGE_URL https://github.com/libretro/Mu
66
LANGUAGES C CXX)

LICENSE

Lines changed: 334 additions & 0 deletions
Large diffs are not rendered by default.

libretroBuildSystem/libretro.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ void retro_get_system_info(struct retro_system_info *info){
213213
#ifndef GIT_VERSION
214214
#define GIT_VERSION ""
215215
#endif
216-
info->library_version = "v1.2.0" GIT_VERSION;
216+
info->library_version = "v1.3.0" GIT_VERSION;
217217
info->need_fullpath = true;
218218
info->valid_extensions = "prc|pqa|img";
219219
}

libretroBuildSystem/mu_libretro.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories = "Emulator"
77
systemname = "Palm OS"
88
license = "Non-commercial"
99
permissions = ""
10-
display_version = "v1.2.0"
10+
display_version = "v1.3.0"
1111
supports_no_game = "true"
1212
firmware_count = 5
1313
firmware0_desc = "palmos40-en-m500.rom (Palm OS 4.0)"

qtBuildSystem/Mu/CMakeLists.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ set(CMAKE_AUTOMOC ON)
66
# We need all the Qt5 libraries
77
find_package(Qt5 OPTIONAL_COMPONENTS Core Gui Widgets Multimedia Svg)
88

9+
# Application Icon for Mu
10+
if(WIN32)
11+
set(MU_APP_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/windows/app.rc")
12+
else()
13+
set(MU_APP_RESOURCES)
14+
endif()
15+
916
# Setup executable for running
1017
add_executable(QtMu
1118
debugviewer.cpp
@@ -24,7 +31,8 @@ add_executable(QtMu
2431
statemanager.cpp
2532
statemanager.ui
2633
touchscreen.h
27-
touchscreen.cpp)
34+
touchscreen.cpp
35+
${MU_APP_RESOURCES})
2836

2937
# The Qt build requires modern-ish C++11
3038
set_target_properties(QtMu PROPERTIES

qtBuildSystem/Mu/windows/app.rc

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#include <windows.h>
2+
3+
VS_VERSION_INFO VERSIONINFO
4+
FILEVERSION 1,3,0,0
5+
PRODUCTVERSION 1,3,0,0
6+
FILEOS VOS__WINDOWS32
7+
FILETYPE VFT_APP
8+
BEGIN
9+
BLOCK "StringFileInfo"
10+
BEGIN
11+
BLOCK "040904E4"
12+
BEGIN
13+
VALUE "CompanyName", "Mu\0"
14+
VALUE "FileDescription", "Non-commercial Palm OS emulator.\0"
15+
VALUE "FileVersion", "1.3\0"
16+
VALUE "InternalName", "Mu\0"
17+
VALUE "LegalCopyright", "CC BY-NC 3.0 US: Emily (meepingsnesroms), Stephanie Gawroriski\0"
18+
VALUE "LegalTrademarks1", "CC BY-NC 3.0 US: Emily (meepingsnesroms), Stephanie Gawroriski\0"
19+
VALUE "LegalTrademarks2", "CC BY-NC 3.0 US: Emily (meepingsnesroms), Stephanie Gawroriski\0"
20+
VALUE "OriginalFilename", "QtMu.exe\0"
21+
VALUE "ProductName", "Mu\0"
22+
VALUE "ProductVersion", "1.3\0"
23+
END
24+
END
25+
26+
BLOCK "VarFileInfo"
27+
BEGIN
28+
VALUE "Translation", 0x409, 1252
29+
END
30+
END
31+
32+
id ICON "Mu.ico"

readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ bootloader-dbvz.rom: 9da101cd2317830649a31f8fa46debec (MD5)
103103
3. (Optional)Copy "bootloader-en-m515.rom" to "~/Mu"
104104
4. Run emu and press start button
105105

106-
#### For RetroArch
106+
#### For RetroArch
107107
1. Download "Palm OS(Mu)" from "Online Updater->Core Updater"
108108
2. Go back, select "Load Core", select "Palm OS(Mu)"
109109
3. Copy "palmos41-en-m515.rom" and "palmos52-en-t3.rom" to the RetroArch system directory
@@ -114,6 +114,12 @@ bootloader-dbvz.rom: 9da101cd2317830649a31f8fa46debec (MD5)
114114
[Prc-tools, Palm OS SDKs, pilrc, pilot-link](https://github.com/meepingsnesroms/prc-tools-remix)
115115

116116
## License
117+
118+
* `CC BY-NC 3.0 US`
119+
* Attribution is to:
120+
* Emily "meepingsnesroms"
121+
* Stephanie Gawroriski <[email protected]>
122+
117123
<a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/3.0/us/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/us/">Creative Commons Attribution-NonCommercial 3.0 United States License</a>.
118124

119125
## Links

0 commit comments

Comments
 (0)