Skip to content

Commit

Permalink
update copyright and api server
Browse files Browse the repository at this point in the history
  • Loading branch information
eltorio committed May 15, 2024
1 parent cc6a291 commit fffc293
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hbbs"
version = "1.1.99-15"
version = "1.1.99-16"
authors = ["rustdesk <[email protected]>", "sctg <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile-integration
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ COPY Cargo.toml /build/Cargo.toml
COPY Cargo.lock /build/Cargo.lock
COPY build.rs /build/build.rs
COPY db_v2.sqlite3 /build/db_v2.sqlite3
RUN . /root/.cargo/env && cd /build && DATABASE_URL=sqlite://$(pwd)/db_v2.sqlite3 cargo build --release
RUN . /root/.cargo/env && cd /build \
&& cargo update -p sctgdesk-api-server \
&& DATABASE_URL=sqlite://$(pwd)/db_v2.sqlite3 cargo build --release
RUN mkdir -p /build/ubuntu-jammy/bin \
&& cp /build/target/release/hbbr /build/ubuntu-jammy/bin/ \
&& cp /build/target/release/hbbs /build/ubuntu-jammy/bin/ \
Expand Down
4 changes: 4 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
rustdesk-server (1.1.99-16) UNRELEASED; urgency=low

* uodate sctgdesk-api-server

rustdesk-server (1.1.99-15) UNRELEASED; urgency=low

* oauth: add support for github
Expand Down
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn arg_name(name: &str) -> String {
pub fn init_args(args: &str, name: &str, about: &str) {
let matches = App::new(name)
.version(crate::version::VERSION)
.author("Purslane Ltd. <[email protected]>")
.author("Purslane Ltd. <[email protected]>, SCTG Development <[email protected]>")
.about(about)
.args_from_usage(args)
.get_matches();
Expand Down

0 comments on commit fffc293

Please sign in to comment.