-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
104 changed files
with
20,792 additions
and
20,792 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
BasedOnStyle: LLVM | ||
BasedOnStyle: LLVM | ||
IndentWidth: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,64 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-24.04 | ||
- macos-latest | ||
- windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Check translations | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
run: | | ||
for f in po/*.po; do grep -LE '^msgid "translator-credits"' $f ; done | ||
- name: Install Ubuntu Build Dependencies | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
run: | | ||
sudo apt update | ||
sudo apt install gettext libwxgtk3.2-dev libgtk-3-dev libgcrypt20-dev liblzo2-dev | ||
- name: Install MacOS Build Dependencies | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: | | ||
brew uninstall --ignore-dependencies gnutls libgcrypt | ||
brew install wxwidgets | ||
- name: Install Windows Build Dependencies | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
uses: johnwason/vcpkg-action@v6 | ||
id: vcpkg | ||
with: | ||
pkgs: wxwidgets gettext[tools] | ||
triplet: x64-windows | ||
token: ${{ github.token }} | ||
- name: Build | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} .. | ||
cmake --build . | ||
cpack -V -C Debug | ||
- name: Archive Ubuntu Build Artifacts | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC Debian Package | ||
path: build/*.deb | ||
- name: Archive MacOS Build Artifacts | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC MacOS Package | ||
path: build/*.dmg | ||
- name: Archive Windows Build Artifacts | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC Windows Package | ||
path: build/*.exe | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-24.04 | ||
- macos-latest | ||
- windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Check translations | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
run: | | ||
for f in po/*.po; do grep -LE '^msgid "translator-credits"' $f ; done | ||
- name: Install Ubuntu Build Dependencies | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
run: | | ||
sudo apt update | ||
sudo apt install gettext libwxgtk3.2-dev libgtk-3-dev libgcrypt20-dev liblzo2-dev | ||
- name: Install MacOS Build Dependencies | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: | | ||
brew uninstall --ignore-dependencies gnutls libgcrypt | ||
brew install wxwidgets | ||
- name: Install Windows Build Dependencies | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
uses: johnwason/vcpkg-action@v6 | ||
id: vcpkg | ||
with: | ||
pkgs: wxwidgets gettext[tools] | ||
triplet: x64-windows | ||
token: ${{ github.token }} | ||
- name: Build | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} .. | ||
cmake --build . | ||
cpack -V -C Debug | ||
- name: Archive Ubuntu Build Artifacts | ||
if: ${{ matrix.os == 'ubuntu-24.04' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC Debian Package | ||
path: build/*.deb | ||
- name: Archive MacOS Build Artifacts | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC MacOS Package | ||
path: build/*.dmg | ||
- name: Archive Windows Build Artifacts | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MultiVNC Windows Package | ||
path: build/*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
# Backup files | ||
*~ | ||
|
||
# Generated header files | ||
config.h | ||
|
||
# Compiled Object files | ||
*.o | ||
*.obj | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Compiled Static libraries | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.app | ||
|
||
# CMake files | ||
CMakeCache.txt | ||
CMakeFiles | ||
CMakeScripts | ||
Makefile | ||
*.cmake | ||
compile_commands.json | ||
build/* | ||
|
||
# Flatpak artifacts | ||
.flatpak-builder | ||
flatpak/build-dir/ | ||
|
||
# MacOS artifacts | ||
macos/build-dir/ | ||
|
||
# ccls cache | ||
.ccls-cache/ | ||
.cache/ | ||
|
||
# OS files | ||
.DS_Store | ||
# Backup files | ||
*~ | ||
|
||
# Generated header files | ||
config.h | ||
|
||
# Compiled Object files | ||
*.o | ||
*.obj | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Compiled Static libraries | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.app | ||
|
||
# CMake files | ||
CMakeCache.txt | ||
CMakeFiles | ||
CMakeScripts | ||
Makefile | ||
*.cmake | ||
compile_commands.json | ||
build/* | ||
|
||
# Flatpak artifacts | ||
.flatpak-builder | ||
flatpak/build-dir/ | ||
|
||
# MacOS artifacts | ||
macos/build-dir/ | ||
|
||
# ccls cache | ||
.ccls-cache/ | ||
.cache/ | ||
|
||
# OS files | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[submodule "src/wxServDisc"] | ||
path = libwxservdisc | ||
url = https://github.com/bk138/wxservdisc.git | ||
[submodule "libvncserver"] | ||
path = libvncserver | ||
url = https://github.com/LibVNC/libvncserver.git | ||
[submodule "libjpeg-turbo"] | ||
path = libjpeg-turbo | ||
url = https://github.com/libjpeg-turbo/libjpeg-turbo.git | ||
[submodule "libressl"] | ||
path = libressl | ||
url = https://github.com/libressl-portable/portable.git | ||
[submodule "libssh2"] | ||
path = libssh2 | ||
url = https://github.com/libssh2/libssh2.git | ||
[submodule "libsshtunnel"] | ||
path = libsshtunnel | ||
url = https://github.com/bk138/libsshtunnel.git | ||
[submodule "src/wxServDisc"] | ||
path = libwxservdisc | ||
url = https://github.com/bk138/wxservdisc.git | ||
[submodule "libvncserver"] | ||
path = libvncserver | ||
url = https://github.com/LibVNC/libvncserver.git | ||
[submodule "libjpeg-turbo"] | ||
path = libjpeg-turbo | ||
url = https://github.com/libjpeg-turbo/libjpeg-turbo.git | ||
[submodule "libressl"] | ||
path = libressl | ||
url = https://github.com/libressl-portable/portable.git | ||
[submodule "libssh2"] | ||
path = libssh2 | ||
url = https://github.com/libssh2/libssh2.git | ||
[submodule "libsshtunnel"] | ||
path = libsshtunnel | ||
url = https://github.com/bk138/libsshtunnel.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Christian Beier <[email protected]> | ||
Evgeny Zinoviev <[email protected]> | ||
Audrey Dutcher <[email protected]> | ||
Christian Beier <[email protected]> | ||
Evgeny Zinoviev <[email protected]> | ||
Audrey Dutcher <[email protected]> |
Oops, something went wrong.