Skip to content

Commit

Permalink
update front page
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Sep 6, 2024
1 parent 30ffd4a commit 49b4e74
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ Make sure you have access to the internet before you run the media-downloader fo

#### Bundle for MacOS

Bundle for MacOS is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.0.1/MediaDownloader-5.0.1.dmg). This bundle is not notarized and your system may report it as "corrupted". Search the internet on how to install bundles that are not notarized if you want to use this app on MacOS.
Bundle for MacOS is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.1.0/MediaDownloader-5.1.0.dmg). This bundle is not notarized and your system may report it as "corrupted". Search the internet on how to install bundles that are not notarized if you want to use this app on MacOS.

#### Installer for Microsoft Windows

Installer for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.0.1/MediaDownloader-5.0.1.setup.exe).
Installer for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.1.0/MediaDownloader-5.1.0.setup.exe).

#### Portable version for Microsoft Windows

A portable version is a self-contained version that keeps everything in the application folder and does not need to be installed first.

Portable version for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.0.1/MediaDownloader-5.0.1.zip).
Portable version for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/5.1.0/MediaDownloader-5.1.0.zip).

You can also install the portable version for Windows using scoop with the following commands:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

<releases>
<release version="5.1.0" type="stable" date="2024-09-05" >
<url type="details">https://github.com/mhogomchungu/media-downloader/releases/download/5.0.1/media-downloader-5.0.1.tar.xz/</url>
<url type="details">https://github.com/mhogomchungu/media-downloader/releases/download/5.1.0/media-downloader-5.1.0.tar.xz/</url>
<description>
<p>Changelog</p>
<ul>
Expand Down
6 changes: 3 additions & 3 deletions src/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ void utility::setHelpVersionOfMediaDownloader( const QString& e )
_runTimeVersions().setAboutInstanceVersion( e ) ;
}

static QStringList _parseOptions( const QString& e,const engines::engine& engine )
QStringList utility::args::parseOptions( const QString& e,const engines::engine& engine )
{
auto m = util::splitPreserveQuotes( e ) ;

Expand Down Expand Up @@ -1780,8 +1780,8 @@ static QStringList _parseOptions( const QString& e,const engines::engine& engine

utility::args::args( const QString& uiOptions,const QString& otherOptions,const engines::engine& engine )
{
m_uiDownloadOptions = _parseOptions( uiOptions,engine ) ;
m_otherOptions = _parseOptions( otherOptions,engine ) ;
m_uiDownloadOptions = this->parseOptions( uiOptions,engine ) ;
m_otherOptions = this->parseOptions( otherOptions,engine ) ;
m_credentials = engine.setCredentials( m_uiDownloadOptions,m_otherOptions ) ;
}

Expand Down
1 change: 1 addition & 0 deletions src/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ namespace utility
}
QStringList options() const ;
private:
QStringList parseOptions( const QString&,const engines::engine& ) ;
QString m_credentials ;
QStringList m_uiDownloadOptions ;
QStringList m_otherOptions ;
Expand Down

0 comments on commit 49b4e74

Please sign in to comment.