Skip to content

Commit

Permalink
- general: v1.26.1
Browse files Browse the repository at this point in the history
- bbc: fix missing symlink preventing a perl library from loading
- general: update credits CSS
- bbc: fetching series breaks if titles have commas
  • Loading branch information
skovatch committed Mar 29, 2024
1 parent 68d1443 commit aa17b4e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Binaries/get_iplayer/perl/bin/get_iplayer
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ sub find_pid_matches {
for my $ep ( @match_list ) {
my $ep_desc = " - $ep->{desc}" if $opt->{long} && $ep->{desc};
my $ep_type = "$ep->{type}, " if $show_type;
main::logger "${ep_type}$ep->{name} - $ep->{episode}, $ep->{channel}, $ep->{pid}${ep_desc}\n";
main::logger "${ep_type}$ep->{name} - $ep->{episode}|$ep->{channel}|$ep->{pid}${ep_desc}\n";
}
}
main::logger "INFO: ".(scalar @match_list)." total programmes\n";
Expand Down
1 change: 1 addition & 0 deletions Binaries/get_iplayer/perl/dylib/libz.1.dylib
6 changes: 3 additions & 3 deletions Credits.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
<style type="text/css">
<!--
.Titles {
font-family: Verdana, Geneva, sans-serif;
font-family: sans-serif;
font-size: 14px;
font-weight: bold;
color: #006;
}
.Main {
font-family: Verdana, Geneva, sans-serif;
font-family: sans-serif;
font-size: 12px;
font-weight: normal;
color: #003;
}
.Secondary_Titles {
font-size: 12px;
font-weight: bold;
font-family: Verdana, Geneva, sans-serif;
font-family: sans-serif;
color: #003;
}
-->
Expand Down
4 changes: 2 additions & 2 deletions Get iPlayer Automator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@
"$(PROJECT_DIR)",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.26.0;
MARKETING_VERSION = 1.26.1;
ONLY_ACTIVE_ARCH = YES;
OTHER_CODE_SIGN_FLAGS = "--no-strict";
OTHER_LDFLAGS = "-licucore";
Expand Down Expand Up @@ -889,7 +889,7 @@
"$(PROJECT_DIR)",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.26.0;
MARKETING_VERSION = 1.26.1;
ONLY_ACTIVE_ARCH = NO;
OTHER_CODE_SIGN_FLAGS = "--no-strict";
OTHER_LDFLAGS = "-licucore";
Expand Down
2 changes: 1 addition & 1 deletion GetCurrentWebpage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ import CocoaLumberjackSwift
}

let program = Programme()
let outputParts = line.components(separatedBy:",")
let outputParts = line.components(separatedBy:"|")
program.episodeName = outputParts[0].trimmingCharacters(in: .whitespaces)
program.tvNetwork = outputParts[1].trimmingCharacters(in: .whitespaces)
program.pid = outputParts[2].trimmingCharacters(in: .whitespaces)
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20240101001</string>
<string>20240329001</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.video</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit aa17b4e

Please sign in to comment.