Skip to content

Commit 1e5e34b

Browse files
authored
Merge pull request #2052 from oxen-io/dev
v0.9.10
2 parents 77fa34c + 7906fac commit 1e5e34b

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

cmake/macos.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ if(BUILD_PACKAGE)
137137
COMMAND create-dmg
138138
--volname "Lokinet ${PROJECT_VERSION}"
139139
--volicon lokinet.icns
140-
#--background ... FIXME
140+
--background "${PROJECT_SOURCE_DIR}/contrib/macos/installer.tiff"
141141
--text-size 16
142142
--icon-size 128
143-
--window-size 500 300
144-
--icon Lokinet.app 100 100
143+
--window-size 555 440
144+
--icon Lokinet.app 151 196
145145
--hide-extension Lokinet.app
146-
--app-drop-link 350 100
146+
--app-drop-link 403 196
147147
--eula "${PROJECT_SOURCE_DIR}/LICENSE"
148148
--no-internet-enable
149149
"${lokinet_installer}.dmg"

contrib/macos/installer.png

7.34 KB
Loading

contrib/macos/installer.tiff

52.3 KB
Binary file not shown.

contrib/macos/installer@2x.png

17.9 KB
Loading

llarp/bootstrap.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "util/bencode.hpp"
33
#include "util/logging.hpp"
44
#include "util/logging/buffer.hpp"
5+
#include "util/fs.hpp"
56

67
namespace llarp
78
{

llarp/util/fs.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
2+
#include <fstream>
33
#ifdef USE_GHC_FILESYSTEM
44
#include <ghc/filesystem.hpp>
55
namespace fs = ghc::filesystem;

llarp/vpn/linux.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
#include <linux/if_tun.h>
1111

1212
#include <cstring>
13-
#include <sys/types.h>
14-
#include <unistd.h>
1513
#include <arpa/inet.h>
16-
#include <sys/socket.h>
1714
#include <linux/rtnetlink.h>
1815
#include <llarp/net/net.hpp>
1916
#include <llarp/util/str.hpp>
@@ -24,6 +21,8 @@
2421
#include <llarp/router/abstractrouter.hpp>
2522
#include <llarp.hpp>
2623

24+
#include <llarp/util/fs.hpp>
25+
2726
namespace llarp::vpn
2827
{
2928
struct in6_ifreq

0 commit comments

Comments
 (0)