Skip to content

Commit

Permalink
v1.2.1 (#99)
Browse files Browse the repository at this point in the history
* Log output

* Enable DVB

* patch 1
  • Loading branch information
kazuki0824 authored Jan 4, 2024
1 parent d749ebc commit 41dd8b6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
cmake \
curl \
libpcsclite-dev \
libudev-dev \
libdvbv5-dev \
pkg-config && \
rm -rf /var/lib/apt/lists/*
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
load: true
- name: Create deb packages
run: |
docker run --rm -i -v $(pwd):/work -w /work ${{ matrix.image }}:build bash -c '/root/.cargo/bin/cargo deb -p recisdb --verbose --output ./artifacts/' -- -F dvb
docker run --rm -i -v $(pwd):/work -w /work ${{ matrix.image }}:build bash -c '/root/.cargo/bin/cargo deb -p recisdb --verbose --output ./artifacts/ -- -F dvb'
- name: Upload deb package to release channel
uses: shogo82148/actions-upload-release-asset@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion b25-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fn main() {
println!("cargo:rustc-link-lib=dylib=winscard");
} else if cx.os.clone().unwrap_or_default().contains("linux") {
if pc.probe("libpcsclite").is_err() {
panic!()
panic!("libpcsclite not found.")
}
if pc.probe("libaribb25").is_err() || cfg!(feature = "prioritized_card_reader") {
let res = prep_cmake(cx).build();
Expand Down
2 changes: 1 addition & 1 deletion recisdb-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "recisdb"
version = "1.2.0"
version = "1.2.1"
authors = ["maleicacid <[email protected]>"]
edition = "2021"
description = "recisdb can read both Unix chardev-based and BonDriver-based TV sources."
Expand Down
2 changes: 1 addition & 1 deletion recisdb-rs/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub(crate) fn initialize_logger() {
#[cfg(debug_assertions)]
Builder::from_env(Env::default().default_filter_or("info")).init();

#[cfg(debug_assertions)]
#[cfg(not(debug_assertions))]
Builder::from_env(Env::default().default_filter_or("info"))
.format(|buf, record| {
let local_time = Local::now().format("%Y/%m/%d %H:%M:%S");
Expand Down

0 comments on commit 41dd8b6

Please sign in to comment.