Compare commits

..

No commits in common. 'main' and 'android_attempt' have entirely different histories.

@ -1,3 +0,0 @@
{
"cmake.ignoreCMakeListsMissing": true
}

@ -128,7 +128,7 @@ class ProxmoxWebService {
Log().info("toggling VM: ${isRunning ? "stopping" : "starting"}");
final endpoint =
"/api2/json/nodes/${node.node}/qemu/${vm.vmid}/status/${isRunning ? "shutdown" : "start"}";
"/api2/json/nodes/${node.node}/qemu/${vm.vmid}/status/${isRunning ? "stop" : "start"}";
final resp = await _doPost(endpoint, {}, debug: true);
if (resp == null) return false;

@ -23,6 +23,7 @@ class SettingsView extends StatelessWidget {
padding: const EdgeInsets.all(16),
child: Column(
children: [
const Text("Config file is stored under \$HOME/.local/share"),
DropdownButton<ThemeMode>(
value: controller.themeMode,
onChanged: controller.updateThemeMode,

Loading…
Cancel
Save