Skip to content

Commit 0673f00

Browse files
Changed version
1 parent 4b27571 commit 0673f00

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ GRAPHICS := gfx
4040
ROMFS := romfs
4141
GFXBUILD := $(ROMFS)/gfx
4242
#---------------------------------------------------------------------------------
43-
APP_VER := 1088
43+
APP_VER := 1089
4444
APP_TITLE := Video player for 3DS
4545
APP_DESCRIPTION := Video player for 3DS
4646
APP_AUTHOR := Core_2_Extreme

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Video player for 3DS
22

33
## Patch note
4+
### v1.4.1
5+
The "FSUSER_OpenFile() failed" error has been fixed \
6+
Adjusted font and button size in settings menu \
7+
Multi-threaded decoding is disabled by default because it has stability problem \
8+
Polish(Polski) translation has been added (by JustScratchCoder)
9+
410
### v1.4.0
511
Decoded image(raw) buffer has been added and it makes playback \
612
much much much much better (especially on OLD3DS)

include/definitions.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#define DEF_CHECK_INTERNET_URL (std::string)"https://connectivitycheck.gstatic.com/generate_204"
88
#define DEF_SEND_APP_INFO_URL (std::string)"https://script.google.com/macros/s/AKfycbyn_blFyKWXCgJr6NIF8x6ETs7CHRN5FXKYEAAIrzV6jPYcCkI/exec"
99
#define DEF_CHECK_UPDATE_URL (std::string)"https://script.google.com/macros/s/AKfycbwTd3jzV0npUE9MNKmZIv3isazVR5D9_7A8rexsG1vr9SE7iavDBxgtzlph8dZipwu9/exec"
10-
#define DEF_HTTP_USER_AGENT (std::string)"video player for 3ds v1.4.0"
11-
#define DEF_CURRENT_APP_VER (std::string)"v1.4.0"
10+
#define DEF_HTTP_USER_AGENT (std::string)"video player for 3ds v1.4.1"
11+
#define DEF_CURRENT_APP_VER (std::string)"v1.4.1"
1212
#define DEF_CURRENT_APP_VER_INT 1088
1313
#define DEF_ENABLE_SUB_APP0
1414
//#define DEF_ENABLE_SUB_APP1
@@ -39,7 +39,7 @@
3939
//#define DEF_VID_ENABLE_NAME
4040
#define DEF_VID_ICON_PATH (std::string)"romfs:/gfx/draw/icon/vid_icon.t3x"
4141
#define DEF_VID_NAME (std::string)"Video\nplayer"
42-
#define DEF_VID_VER (std::string)"v1.4.0"
42+
#define DEF_VID_VER (std::string)"v1.4.1"
4343
#define DEF_VID_MAIN_STR (std::string)"Vid/Main"
4444
#define DEF_VID_INIT_STR (std::string)"Vid/Init"
4545
#define DEF_VID_EXIT_STR (std::string)"Vid/Exit"

0 commit comments

Comments
 (0)