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"}"); Log().info("toggling VM: ${isRunning ? "stopping" : "starting"}");
final endpoint = 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); final resp = await _doPost(endpoint, {}, debug: true);
if (resp == null) return false; if (resp == null) return false;

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

Loading…
Cancel
Save