Skip to content

Commit bab6cb4

Browse files
committed
Update release 2.0.0
1 parent fc7d87f commit bab6cb4

File tree

7 files changed

+77
-18
lines changed

7 files changed

+77
-18
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
jobs:
11+
flatpak:
12+
name: Flatpak
13+
runs-on: ubuntu-latest
14+
15+
container:
16+
image: ghcr.io/elementary/flatpak-platform/runtime:daily
17+
options: --privileged
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v2
22+
23+
- name: Build
24+
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
25+
with:
26+
bundle: Pebbles.flatpak
27+
manifest-path: com.github.subhadeepjasu.pebbles.yml
28+
run-tests: true
29+
repository-name: appcenter
30+
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
31+
cache-key: "flatpak-builder-${{ github.sha }}"

.github/workflows/gettext.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Gettext updates
2+
on:
3+
push:
4+
branches: main
5+
jobs:
6+
gettext_template:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: elementary/actions/gettext-template@master
11+
env:
12+
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
13+
GIT_USER_NAME: "subhadeepjasu"
14+
GIT_USER_EMAIL: "subhajasu@gmail.com"
15+
with:
16+
translation_branch: 'main'

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
3+
name: Release
4+
5+
on:
6+
pull_request:
7+
branches: main
8+
types: closed
9+
10+
jobs:
11+
create_release:
12+
name: Create Release
13+
runs-on: ubuntu-latest
14+
15+
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v2
20+
21+
- name: Release
22+
uses: elementary/actions/release@master
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
with:
26+
release_branch: 'odin'

.vscode/settings.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<br>
99
Pebbles is an advanced calculator application based in Vala and Gtk.
1010

11-
[![Build Status](https://travis-ci.com/SubhadeepJasu/pebbles.svg?branch=master)](https://travis-ci.com/SubhadeepJasu/pebbles)
11+
![elementary flatpak build status](https://github.com/SubhadeepJasu/pebbles/actions/workflows/ci.yml/badge.svg)
1212

1313
## Get it from store
1414
| elementary OS | FlatHub |

com.github.subhadeepjasu.pebbles.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,6 @@ modules:
1818
- type: git
1919
url: https://github.com/elementary/granite.git
2020

21-
# - name: gsl
22-
# buildsystem: simple
23-
# build-commands:
24-
# - autoconf
25-
# - ./configure
26-
# - make
27-
# - sudo make install
28-
# sources:
29-
# - type: archive
30-
# url: https://mirror.ibcp.fr/pub/gnu/gsl/gsl-latest.tar.gz
31-
# sha256: b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8
3221
- name: gsl
3322
config-opts:
3423
- --disable-static

data/com.github.subhadeepjasu.pebbles.appdata.xml.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,13 @@
9393
<content_attribute id="money-gambling">none</content_attribute>
9494
</content_rating>
9595
<releases>
96-
<release date="2021-07-14" version="2.0.0">
96+
<release date="2021-08-03" version="2.0.0">
9797
<description>
9898
<p>New:</p>
9999
<ul>
100100
<li>[UI] Make UI resizable and responsive with touch support</li>
101-
<li>[UI] Follow platform-implemented dark style preference</li>
101+
<li>[UI] Follow system-wide dark style preference</li>
102+
<li>[UI] Updated CSS to be in tune with style of elementary OS 6 Odin</li>
102103
</ul>
103104
<p>Improved:</p>
104105
<ul>

0 commit comments

Comments
 (0)