mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-13 15:55:05 +09:00
Trivial file formatting fixes
This commit is contained in:
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
# Normalize EOL for all files that Git considers text files.
|
||||
* text=auto eol=lf
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
/subprojects/blueprint-compiler
|
||||
.flatpak
|
||||
.flatpak-builder
|
||||
.vscode
|
||||
.vscode
|
||||
.DS_Store
|
||||
|
||||
@@ -6,4 +6,4 @@
|
||||
- [ ] Fix the reload lag
|
||||
- [x] Do not allow uninstallation of Warehouse
|
||||
- [x] Add tooltip text to Snapshot Window's row buttons
|
||||
- [ ] Fix subtitle issue in Leftover Data Window
|
||||
- [ ] Fix subtitle issue in Leftover Data Window
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"id" : "io.github.flattool.Warehouse",
|
||||
"runtime" : "org.gnome.Platform",
|
||||
"runtime-version" : "47",
|
||||
"sdk" : "org.gnome.Sdk",
|
||||
"command" : "warehouse",
|
||||
"finish-args" : [
|
||||
"id": "io.github.flattool.Warehouse",
|
||||
"runtime": "org.gnome.Platform",
|
||||
"runtime-version": "47",
|
||||
"sdk": "org.gnome.Sdk",
|
||||
"command": "warehouse",
|
||||
"finish-args": [
|
||||
"--share=ipc",
|
||||
"--socket=fallback-x11",
|
||||
"--device=dri",
|
||||
@@ -32,19 +32,19 @@
|
||||
"buildsystem": "meson",
|
||||
"sources": [
|
||||
{
|
||||
"type" : "git",
|
||||
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
|
||||
"tag" : "v0.14.0"
|
||||
"type": "git",
|
||||
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
|
||||
"tag": "v0.14.0"
|
||||
}
|
||||
],
|
||||
"cleanup": ["*"]
|
||||
},
|
||||
{
|
||||
"name" : "warehouse",
|
||||
"builddir" : true,
|
||||
"buildsystem" : "meson",
|
||||
"config-opts": [ "-Dprofile=development" ],
|
||||
"sources" : [
|
||||
"name": "warehouse",
|
||||
"builddir": true,
|
||||
"buildsystem": "meson",
|
||||
"config-opts": ["-Dprofile=development"],
|
||||
"sources": [
|
||||
{
|
||||
"type": "dir",
|
||||
"path": "."
|
||||
|
||||
@@ -6,4 +6,4 @@ option(
|
||||
'development'
|
||||
],
|
||||
value: 'default'
|
||||
)
|
||||
)
|
||||
|
||||
@@ -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.");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -122,4 +122,3 @@ class ChangeVersionPage(Adw.NavigationPage):
|
||||
# Connections
|
||||
self.root_group_check_button.connect("toggled", lambda *_: self.action_bar.set_revealed(True))
|
||||
self.apply_button.connect("clicked", self.on_apply)
|
||||
|
||||
|
||||
@@ -5,4 +5,4 @@ class Config:
|
||||
DEVEL = '@DEVEL@' == 'Development'
|
||||
PROFILE = '@DEVEL@'
|
||||
APP_ID = '@APPID@'
|
||||
VERSION = '@VERSION@'
|
||||
VERSION = '@VERSION@'
|
||||
|
||||
@@ -40,4 +40,4 @@ template $AppRow : Adw.ActionRow {
|
||||
styles["selection-mode"]
|
||||
visible: false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ template $InstallationChooser : Adw.PreferencesGroup {
|
||||
title: _("Other Installation");
|
||||
subtitle: _("Choose a custom installation");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -67,4 +67,3 @@ class ResultRow(Adw.ActionRow):
|
||||
# Apply
|
||||
GLib.idle_add(self.idle_stuff)
|
||||
self.set_state(package_state)
|
||||
|
||||
|
||||
@@ -115,4 +115,4 @@ template $FiltersPage : Adw.NavigationPage {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,4 +24,4 @@ template $UninstallDialog : Adw.AlertDialog {
|
||||
}
|
||||
}
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user