Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump version #171

Merged
merged 4 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bluecherry_appcast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle">
<channel>
<title>Bluecherry - Appcast</title>
<item>
<title>Version 3.0.0-beta13</title>
<description>Redesigned Settings, optmized Servers and updated translations.</description>
<pubDate>Fri, 27 Oct 2023</pubDate>
</item>
<item>
<title>Version 3.0.0-beta12</title>
<description>Possibility to filter events by time. Correctly show video when there is any special characters on the password.</description>
Expand Down
2 changes: 1 addition & 1 deletion installer/windows-installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Bluecherry DVR"
#define MyAppVersion "3.0.0-beta12"
#define MyAppVersion "3.0.0-beta13"
#define MyAppPublisher "Bluecherry DVR"
#define MyAppURL "https://www.bluecherrydvr.com/"
#define MyAppExeName "bluecherry_client.exe"
Expand Down
8 changes: 4 additions & 4 deletions lib/providers/update_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ class UpdateManager extends ChangeNotifier {
final currentVersion = Version.parse(packageInfo.version);
final latestVersion = Version.parse(this.latestVersion!.version);

assert(
latestVersion >= currentVersion,
'The latest version can not be older than the current version',
);
// assert(
// latestVersion >= currentVersion,
// 'The latest version can not be older than the current version',
// );

return currentVersion != latestVersion;
}
Expand Down
9 changes: 7 additions & 2 deletions lib/widgets/servers/add_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,13 @@ class _ConfigureDVRServerScreenState extends State<ConfigureDVRServerScreen> {
final name = nameController.text.trim();
final hostname = getServerHostname(hostnameController.text.trim());

if (ServersProvider.instance.servers
.any((s) => Uri.parse(s.login).host == Uri.parse(hostname).host)) {
if (ServersProvider.instance.servers.any((s) {
final serverHost = Uri.parse(s.login).host;
final newServerHost = Uri.parse(hostname).host;
return serverHost.isNotEmpty &&
newServerHost.isNotEmpty &&
serverHost == newServerHost;
})) {
showDialog(
context: context,
builder: (context) {
Expand Down
2 changes: 1 addition & 1 deletion linux/debian/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: bluecherrydvr
Version: 3.0.0-beta12
Version: 3.0.0-beta13
Section: base
Priority: optional
Homepage: https://www.bluecherrydvr.com/
Expand Down
1 change: 1 addition & 0 deletions linux/debian/usr/share/metainfo/bluecherry.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</screenshots> -->
<launchable type="desktop-id">bluecherrydvr.desktop</launchable>
<releases>
<release version="3.0.0-beta13" date="2023-10-27" />|
<release version="3.0.0-beta12" date="2023-09-28" />|
<release version="3.0.0-beta11" date="2023-09-12" />|
<release version="3.0.0-beta10" date="2023-08-14" />
Expand Down
2 changes: 1 addition & 1 deletion linux/rpm/bluecherry.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: bluecherrydvr
Version: 3.0.0_beta12
Version: 3.0.0_beta13
Release: 1
Summary: Bluecherry client written in Flutter.
License: EULA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ environment:
dependencies:
flutter:
sdk: flutter
media_kit: ^1.1.8 # Primary package.
media_kit_video: ^1.2.1 # For video rendering.
media_kit_libs_video: ^1.0.3 # Native video dependencies.
media_kit: ^1.1.10 # Primary package.
media_kit_video: ^1.2.4 # For video rendering.
media_kit_libs_video: ^1.0.4 # Native video dependencies.
unity_video_player_platform_interface:
path: ../unity_video_player_platform_interface/
path_provider:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1042,10 +1042,10 @@ packages:
dependency: "direct main"
description:
name: window_manager
sha256: "6ee795be9124f90660ea9d05e581a466de19e1c89ee74fc4bf528f60c8600edd"
sha256: dcc865277f26a7dad263a47d0e405d77e21f12cb71f30333a52710a408690bd7
url: "https://pub.dev"
source: hosted
version: "0.3.6"
version: "0.3.7"
xdg_directories:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Bluecherry client written in Flutter.

publish_to: "none"

version: 3.0.0-beta12
version: 3.0.0-beta13

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down Expand Up @@ -56,7 +56,7 @@ dependencies:
uuid: ^4.1.0

# Desktop
window_manager: ^0.3.2
window_manager: ^0.3.7
unity_multi_window:
path: packages/unity_multi_window/

Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: bluecherry-client
version: 3.0.0-beta12
version: 3.0.0-beta13
summary: Bluecherry DVR Client
description: Bluecherry DVR client

Expand Down