Skip to content

Commit

Permalink
bump version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonflylee committed Jul 30, 2024
1 parent 47f8c25 commit 1373389
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [next]
## [0.5.1]

### Add

Expand All @@ -14,6 +14,7 @@
* network timeout for load video
* panic after cancel login
* abnormal focus when login after add server
* server list url display

## [0.5.0]

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ include(${BOREALIS_LIBRARY}/cmake/toolchain.cmake)
project(Switchfin)
set(VERSION_MAJOR "0")
set(VERSION_MINOR "5")
set(VERSION_ALTER "0")
set(VERSION_ALTER "1")
set(PROJECT_TITLEID "010ff000ffff0003")
set(PROJECT_AUTHOR "dragonflylee")
set(PACKAGE_NAME "org.player.switchfin")
set(PSN_TITLE_ID "SFIN00000")
set(VITA_VERSION "00.50")
set(VITA_VERSION "00.51")
set(PROJECT_ICON ${CMAKE_CURRENT_SOURCE_DIR}/resources/icon/icon.jpg)
set(PROJECT_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/resources)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
Expand Down
4 changes: 4 additions & 0 deletions app/src/client/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ std::shared_ptr<Client> create(const AppRemote& c) {
std::string url = "http" + c.url.substr(pos);
return std::make_shared<Webdav>(url, c.user, c.passwd);
}
if (scheme == "webdavs") {
std::string url = "https" + c.url.substr(pos);
return std::make_shared<Webdav>(url, c.user, c.passwd);
}
if (scheme == "file") {
return std::make_shared<Local>(c.url.substr(pos + 3));
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/deb/kylin-v10/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Section: video
Priority: optional
Maintainer: dragonflylee <dragonflylee@outlook.com>
Version: 0.5.0-1
Version: 0.5.1-1
Vcs-Git: https://github.com/dragonflylee/switchfin.git
Package: switchfin
Architecture: arm64
Expand Down
2 changes: 1 addition & 1 deletion scripts/deb/switchroot-bionic/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Section: video
Priority: optional
Maintainer: dragonflylee <dragonflylee@outlook.com>
Version: 0.5.0-1
Version: 0.5.1-1
Vcs-Git: https://github.com/dragonflylee/switchfin.git
Package: switchfin
Architecture: arm64
Expand Down
2 changes: 1 addition & 1 deletion scripts/deb/ubuntu-focal/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Section: video
Priority: optional
Maintainer: dragonflylee <dragonflylee@outlook.com>
Version: 0.5.0-1
Version: 0.5.1-1
Vcs-Git: https://github.com/dragonflylee/switchfin.git
Package: switchfin
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion scripts/org.player.switchfin.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ul>
</description>
<releases>
<release date="2024-04-11" version="0.5.0">
<release date="2024-07-30" version="0.5.1">
<description>
<p>
Please See Official Changelog at github.com/dragonflylee/switchfin/releases
Expand Down

0 comments on commit 1373389

Please sign in to comment.