Skip to content

Commit e6a49d1

Browse files
committed
first commit
0 parents  commit e6a49d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4092
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: mijorus

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
.flatpak-builder
3+
build
4+
builddir
5+
run.sh
6+
test.py
7+
install.sh
8+
.flatpak/*
9+
10+
build-aux/patches

.vscode/settings.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"python.linting.pylintEnabled": false,
3+
"python.linting.mypyEnabled": true,
4+
"python.linting.enabled": true,
5+
"VsCodeTaskButtons.tasks": {
6+
"label": "Label",
7+
"task": "prova",
8+
"tooltip": "Optional tooltip to show when hovering over the button (defaults to task name)",
9+
},
10+
"terminal.integrated.defaultProfile.linux": "bash",
11+
"files.watcherExclude": {
12+
"**/.git/objects/**": true,
13+
"**/.git/subtree-cache/**": true,
14+
"**/node_modules/*/**": true,
15+
"**/.hg/store/**": true,
16+
".flatpak/**": true,
17+
"_build/**": true
18+
}
19+
}

COPYING

Lines changed: 675 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Boutique
2+
3+
This project is no longer in development 😢, sorry for that...
4+
5+
___
6+
7+
<p align="center">
8+
<img width="150" src="data/icons/hicolor/scalable/apps/it.mijorus.boutique.svg">
9+
</p>
10+
11+
<p align="center">
12+
<img width="500" src="https://user-images.githubusercontent.com/39067225/180618676-15405cd2-dde9-4b13-970c-dd30958d5c12.png">
13+
</p>
14+
15+
<p align="center">
16+
<img width="500" src="https://user-images.githubusercontent.com/39067225/180618679-4d0fe0b6-9264-445e-8d3c-73bc09928e73.png">
17+
</p>
18+
19+
20+
A work-in-progress Flatpak and Appimages app manager.
21+
22+
Made with GTK4
23+
24+
## Credits
25+
26+
Icon by daudix-ufo
27+
https://daudix-ufo.github.io/works/icons/
28+
29+
Thanks!
30+
31+
## Testing
32+
33+
(please keep in mind this is alpha software)
34+
35+
1. Clone the repo
36+
2. move into the cloned repo
37+
3. run these commands:
38+
39+
```sh
40+
# builds the project
41+
flatpak-builder build/ it.mijorus.boutique.json --user --force-clean
42+
43+
# runs the project
44+
flatpak-builder --run build/ it.mijorus.boutique.json boutique
45+
```

boutique.code-workspace

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {
8+
"terminal.integrated.defaultProfile.linux": "bash",
9+
"files.watcherExclude": {
10+
"**/.git/objects/**": true,
11+
"**/.git/subtree-cache/**": true,
12+
"**/node_modules/*/**": true,
13+
"**/.hg/store/**": true,
14+
".flatpak/**": true,
15+
"_build/**": true
16+
}
17+
}
18+
}

build-aux/meson/postinstall.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env python3
2+
3+
from os import environ, path
4+
from subprocess import call
5+
6+
prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local')
7+
datadir = path.join(prefix, 'share')
8+
destdir = environ.get('DESTDIR', '')
9+
10+
# Package managers set this so we don't need to run
11+
if not destdir:
12+
print('Updating icon cache...')
13+
call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')])
14+
15+
print('Updating desktop database...')
16+
call(['update-desktop-database', '-q', path.join(datadir, 'applications')])
17+
18+
print('Compiling GSettings schemas...')
19+
call(['glib-compile-schemas', path.join(datadir, 'glib-2.0', 'schemas')])

data/gschemas.compiled

284 Bytes
Binary file not shown.
Lines changed: 21 additions & 0 deletions
Loading
Lines changed: 28 additions & 0 deletions
Loading
Lines changed: 23 additions & 0 deletions
Loading
Lines changed: 16 additions & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)