Skip to content

Commit 51ffd0e

Browse files
authored
Implement public landing page and DMG packaging (#2)
* Public landing page * Implement packaging
1 parent 4a73f95 commit 51ffd0e

20 files changed

Lines changed: 1080 additions & 10 deletions

File tree

.github/workflows/pages.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Deploy landing to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- Public/**
9+
- .github/workflows/pages.yml
10+
workflow_dispatch:
11+
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
concurrency:
18+
group: pages
19+
cancel-in-progress: true
20+
21+
jobs:
22+
deploy:
23+
runs-on: ubuntu-latest
24+
environment:
25+
name: github-pages
26+
url: ${{ steps.deployment.outputs.page_url }}
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
31+
- name: Configure Pages
32+
uses: actions/configure-pages@v5
33+
34+
- name: Upload static site
35+
uses: actions/upload-pages-artifact@v3
36+
with:
37+
path: Public
38+
39+
- name: Deploy to GitHub Pages
40+
id: deployment
41+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ xcuserdata/
99
*.xccheckout
1010
*.xcscmblueprint
1111
*.moved-aside
12+
.idea
1213

1314
# Xcode / Swift build products
1415
DerivedData/
@@ -17,6 +18,8 @@ build/
1718
/Driver/build/
1819
/Xavucontrol/build/
1920
/Packages/
21+
/dist/
22+
/Packaging/build/
2023

2124
# SwiftPM / Xcode-generated local workspace state
2225
.swiftpm/

Driver/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.2</string>
18+
<string>0.0.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleSupportedPlatforms</key>
2222
<array>
2323
<string>MacOSX</string>
2424
</array>
2525
<key>CFBundleVersion</key>
26-
<string>2</string>
26+
<string>1</string>
2727
<key>CFPlugInFactories</key>
2828
<dict>
2929
<key>A7D57B30-4C99-4DF2-9E88-368A0EF6C311</key>

Public/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xavucontrol.moroz.cc

Public/apple-touch-icon.png

88 KB
Loading

Public/assets/app-icon.png

1.56 MB
Loading

0 commit comments

Comments
 (0)