Skip to content

Commit 7e93500

Browse files
authored
Merge pull request #1 from BhJaipal/main
0.1.2 version
2 parents 74a4d56 + 187c9c5 commit 7e93500

32 files changed

+809
-609
lines changed

.github/workflows/release.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
on:
22
push:
3-
branches: ["main"]
4-
tags:
5-
- "v0.1.2"
3+
branches: ["release"]
64

75
env:
86
BUILD_TYPE: Release
@@ -11,7 +9,7 @@ env:
119
name: libaloo releases
1210

1311
jobs:
14-
build:
12+
release:
1513
name: libaloo releases
1614
runs-on: ubuntu-latest
1715
permissions:
@@ -53,6 +51,6 @@ jobs:
5351
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5452
with:
5553
upload_url: ${{ steps.create_release.outputs.upload_url }}
56-
asset_path: ./libaloo-v${{ env.tag }}.deb
57-
asset_name: libaloo-v${{ env.tag }}.deb
54+
asset_path: ./libaloo-v${{ env.tag }}-$(arch).deb
55+
asset_name: libaloo-v${{ env.tag }}-$(arch).deb
5856
asset_content_type: application/vnd.debian.binary-package

.gitignore

+1-11
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,10 @@ share/
2121
*.a
2222
*.so
2323

24-
node_modules/
2524
.cache/
2625
*.log
2726
*.deb
2827
*.rpm
2928
aloo-project/
30-
dist/deb/usr/include
31-
dist/deb/etc/aloo
32-
33-
dist/rpm/usr/include
34-
!dist/rpm/bin
35-
dist/rpm/etc/aloo
36-
37-
dist/Arch/usr/include
38-
!dist/Arch/etc/bin
39-
dist/Arch/etc/aloo
4029
.mypy_cache
30+
output/

aloo-edit/aloo.config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
app: Aloo Edit
2+
app-id: com.aloo-use.aloo-edit
3+
dbPath: /home/jaipal001/Desktop/files/c-use/libaloo/aloo-edit/db.sqlite
4+
description: An default template for aloo App
5+
project: aloo-edit

aloo-edit/aloo.json

-7
This file was deleted.

aloo-edit/app/main.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#include "aloo.h"
2-
#include "common/app.h"
1+
#include <aloo/aloo.h>
2+
#include <gtk/gtk.h>
3+
#include <string.h>
34

45
AlooWidget *labelGrid;
56
AlooWidget *navbar;

aloo-edit/db.sqlite

Whitespace-only changes.

aloo-edit/styles/material.bundle.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aloo-edit/styles/material.css

-57
This file was deleted.

dist/Arch/PKGBUILD

-15
This file was deleted.

dist/Arch/etc/aloo.conf

-1
This file was deleted.

dist/Arch/etc/bin/postinst

-21
This file was deleted.

dist/Arch/usr/share/pkgconfig/aloo.pc

-6
This file was deleted.

dist/install-arch.sh

-45
This file was deleted.

dist/install-rpm.sh

-44
This file was deleted.

dist/rpm/bin/postinst

-21
This file was deleted.

dist/rpm/etc/aloo.conf

-1
This file was deleted.

dist/rpm/libaloo.spec

-43
This file was deleted.

dist/rpm/usr/share/pkgconfig/aloo.pc

-6
This file was deleted.

0 commit comments

Comments
 (0)