Skip to content

Commit

Permalink
fix name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Majjcom committed Jan 9, 2024
1 parent 381d361 commit 0f6dc01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ncmppGui/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="site.majjcom.ncmppgui" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.2.1" android:versionCode="100200100" android:installLocation="auto">
<manifest package="site.majjcom.ncmppgui" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.2.2" android:versionCode="100200200" android:installLocation="auto">


<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Expand Down
2 changes: 1 addition & 1 deletion ncmppGui/src/ncmdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void ncm::ncmDump(QString path_, QString out_path_)

string extname = '.' + string(dom["format"].GetString());
QFileInfo info(path_);
QString out_name = info.baseName() + extname.c_str();
QString out_name = info.completeBaseName() + extname.c_str();
QDir out_p(out_path_);
QString tgt = out_p.absoluteFilePath(out_name);
delete pdom;
Expand Down

0 comments on commit 0f6dc01

Please sign in to comment.