-
Notifications
You must be signed in to change notification settings - Fork 28
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
42 changed files
with
6,908 additions
and
13 deletions.
There are no files selected for viewing
Submodule Prusa-Link-Web
updated
17 files
+1 −0 | config.mini.js | |
+4 −1 | src/helpers/upload_request.js | |
+1 −0 | src/locales/c.json | |
+2 −1 | src/locales/source/cs.json | |
+2 −1 | src/locales/source/de.json | |
+1 −0 | src/locales/source/en.json | |
+2 −1 | src/locales/source/es.json | |
+2 −1 | src/locales/source/fr.json | |
+2 −1 | src/locales/source/it.json | |
+3 −2 | src/locales/source/kr.json | |
+2 −1 | src/locales/source/lt.json | |
+2 −1 | src/locales/source/nl.json | |
+2 −1 | src/locales/source/pl.json | |
+2 −1 | src/locales/source/sk.json | |
+1 −1 | src/printer/components/files.js | |
+7 −4 | src/printer/components/settings/logs.js | |
+1 −1 | tools/server/mock/fdm.js |
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
polkit.addRule(function(action, subject) { | ||
if (action.id.match("org.freedesktop.NetworkManager") && | ||
(subject.isInGroup("sudo") || subject.isInGroup("netdev"))) { | ||
return polkit.Result.YES; | ||
} | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Unit] | ||
Description=Add ap0 interface | ||
Requires=sys-subsystem-net-devices-wlan0.device | ||
Before=dhcpcd.service | ||
Before=wpa_supplicant.service | ||
Restart=on-failure | ||
StartLimitIntervalSec=1 | ||
StartLimitBurst=5 | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/usr/sbin/iw dev {device} interface add ap0 type __ap | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Disable DNS server functionality | ||
port=0 | ||
|
||
# Specify the interface | ||
interface=ap0 | ||
|
||
# Define the range of IP addresses that will be handed out by the DHCP server | ||
dhcp-range=172.16.188.100,172.16.188.200,255.255.255.0,43200 | ||
|
||
# Set the default gateway (note that this is a 'dummy' gateway as per your requ> | ||
dhcp-option=option:router,172.16.188.1 | ||
|
||
# Set the lease time (you can adjust this as needed) | ||
dhcp-leasefile=/var/lib/misc/dnsmasq.leases | ||
dhcp-lease-max=150 | ||
|
||
# Disable DNS server functionality | ||
no-resolv | ||
no-hosts |
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
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
Oops, something went wrong.