Trivial file formatting fixes

This commit is contained in:
Aaron Franke
2024-10-27 19:49:36 -07:00
parent 7471864b32
commit fcd6a08d69
13 changed files with 26 additions and 25 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
# Normalize EOL for all files that Git considers text files.
* text=auto eol=lf

3
.gitignore vendored
View File

@@ -1,4 +1,5 @@
/subprojects/blueprint-compiler /subprojects/blueprint-compiler
.flatpak .flatpak
.flatpak-builder .flatpak-builder
.vscode .vscode
.DS_Store

View File

@@ -6,4 +6,4 @@
- [ ] Fix the reload lag - [ ] Fix the reload lag
- [x] Do not allow uninstallation of Warehouse - [x] Do not allow uninstallation of Warehouse
- [x] Add tooltip text to Snapshot Window's row buttons - [x] Add tooltip text to Snapshot Window's row buttons
- [ ] Fix subtitle issue in Leftover Data Window - [ ] Fix subtitle issue in Leftover Data Window

View File

@@ -1,10 +1,10 @@
{ {
"id" : "io.github.flattool.Warehouse", "id": "io.github.flattool.Warehouse",
"runtime" : "org.gnome.Platform", "runtime": "org.gnome.Platform",
"runtime-version" : "47", "runtime-version": "47",
"sdk" : "org.gnome.Sdk", "sdk": "org.gnome.Sdk",
"command" : "warehouse", "command": "warehouse",
"finish-args" : [ "finish-args": [
"--share=ipc", "--share=ipc",
"--socket=fallback-x11", "--socket=fallback-x11",
"--device=dri", "--device=dri",
@@ -32,19 +32,19 @@
"buildsystem": "meson", "buildsystem": "meson",
"sources": [ "sources": [
{ {
"type" : "git", "type": "git",
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler", "url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag" : "v0.14.0" "tag": "v0.14.0"
} }
], ],
"cleanup": ["*"] "cleanup": ["*"]
}, },
{ {
"name" : "warehouse", "name": "warehouse",
"builddir" : true, "builddir": true,
"buildsystem" : "meson", "buildsystem": "meson",
"config-opts": [ "-Dprofile=development" ], "config-opts": ["-Dprofile=development"],
"sources" : [ "sources": [
{ {
"type": "dir", "type": "dir",
"path": "." "path": "."

View File

@@ -6,4 +6,4 @@ option(
'development' 'development'
], ],
value: 'default' value: 'default'
) )

View File

@@ -57,4 +57,4 @@ Adw.Clamp versions_clamp {
description: _("This will uninstall the current release and install the chosen one instead. Note that downgrading can cause issues."); description: _("This will uninstall the current release and install the chosen one instead. Note that downgrading can cause issues.");
} }
} }
} }

View File

@@ -122,4 +122,3 @@ class ChangeVersionPage(Adw.NavigationPage):
# Connections # Connections
self.root_group_check_button.connect("toggled", lambda *_: self.action_bar.set_revealed(True)) self.root_group_check_button.connect("toggled", lambda *_: self.action_bar.set_revealed(True))
self.apply_button.connect("clicked", self.on_apply) self.apply_button.connect("clicked", self.on_apply)

View File

@@ -5,4 +5,4 @@ class Config:
DEVEL = '@DEVEL@' == 'Development' DEVEL = '@DEVEL@' == 'Development'
PROFILE = '@DEVEL@' PROFILE = '@DEVEL@'
APP_ID = '@APPID@' APP_ID = '@APPID@'
VERSION = '@VERSION@' VERSION = '@VERSION@'

View File

@@ -40,4 +40,4 @@ template $AppRow : Adw.ActionRow {
styles["selection-mode"] styles["selection-mode"]
visible: false; visible: false;
} }
} }

View File

@@ -37,4 +37,4 @@ template $InstallationChooser : Adw.PreferencesGroup {
title: _("Other Installation"); title: _("Other Installation");
subtitle: _("Choose a custom installation"); subtitle: _("Choose a custom installation");
} }
} }

View File

@@ -67,4 +67,3 @@ class ResultRow(Adw.ActionRow):
# Apply # Apply
GLib.idle_add(self.idle_stuff) GLib.idle_add(self.idle_stuff)
self.set_state(package_state) self.set_state(package_state)

View File

@@ -115,4 +115,4 @@ template $FiltersPage : Adw.NavigationPage {
} }
} }
} }
} }

View File

@@ -24,4 +24,4 @@ template $UninstallDialog : Adw.AlertDialog {
} }
} }
; ;
} }