Compare commits

...

2 Commits

Author SHA1 Message Date
7a35b65f2c Update .github/workflows/makefile.yml
Some checks failed
Makefile CI / Release - Linux-x86_64 (push) Failing after 7m51s
Makefile CI / Release - Windows-x86_64 (push) Has been cancelled
2025-01-30 01:03:36 -05:00
8924f088ba - update: about page updates 2025-01-29 18:02:58 -05:00
2 changed files with 4 additions and 4 deletions

View File

@@ -2,9 +2,9 @@ name: Makefile CI
on: on:
push: push:
branches: [ "trunk" ] branches: [ "main" ]
pull_request: pull_request:
branches: [ "trunk" ] branches: [ "main" ]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always

View File

@@ -3,12 +3,12 @@ pub fn about() -> [&'static str; 7] {
"This program was designed to replicate the VPC Shift Tool functions \ "This program was designed to replicate the VPC Shift Tool functions \
bundled with the VirPil control software package.", bundled with the VirPil control software package.",
"\n", "\n",
"Shift Tool Copyright (C) 2024 RavenX8", "Shift Tool Copyright (C) 2024-2025 RavenX8",
"This program comes with ABSOLUTELY NO WARRANTY. "This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions.", under certain conditions.",
"License: GNU General Public License v3.0", "License: GNU General Public License v3.0",
"Author: RavenX8", "Author: RavenX8",
"https://github.com/RavenX8/open-vpc", "https://github.com/RavenX8/vpc-shift-tool",
] ]
} }