Skip to content
Snippets Groups Projects
Commit 65b5aa80 authored by Jonas Smedegaard's avatar Jonas Smedegaard
Browse files

New upstream version 0.0.16

parents 3c798d56 c26a02cb
Branches upstream
Tags upstream/0.0.16
No related merge requests found
matrix:
include:
- language: bash
dist: xenial
env:
global:
- LC_ALL: C.UTF-8
- LANG: C.UTF-8
addons:
snaps:
- name: snapcraft
channel: stable
classic: true
- name: http
- name: transfer
- name: lxd
channel: stable
script:
- sudo apt update
- sudo /snap/bin/lxd.migrate -yes
- sudo /snap/bin/lxd waitready
- sudo /snap/bin/lxd init --auto
- mkdir -p "$TRAVIS_BUILD_DIR/snaps-cache"
- sudo snapcraft --use-lxd
after_success:
- cp *.snap "$(echo "$TRAVIS_REPO_SLUG" | sed -e 's|.*/\(.*\)|\1|')-pr$TRAVIS_PULL_REQUEST.snap"
- timeout 180 /snap/bin/transfer "$(echo "$TRAVIS_REPO_SLUG" | sed -e 's|.*/\(.*\)|\1|')-pr$TRAVIS_PULL_REQUEST.snap"
after_failure:
- sudo journalctl -u snapd
- http https://api.snapcraft.io/v2/snaps/info/core architecture==amd64 Snap-Device-Series:16
include:
- language: node_js
node_js:
- lts/*
sudo: required
services:
- docker
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-5-dev
cache:
directories:
- /tmp/liftoff
matrix:
include:
- env: DIST=juno
install:
- npm install @elementaryos/houston
script:
- houston ci
--distribution $DIST
branches:
only:
- master
\ No newline at end of file
......@@ -39,13 +39,14 @@ These are mostly guidelines, not rules. Use your best judgment, and feel free to
1. Install required dependencies:
* `gtk+-3.0>=3.18`
* `granite>=5.3.0`
* `granite>=6.0.0`
* `glib-2.0`
* `gee-0.8`
* `gobject-2.0`
* `libxml-2.0`
* `gtksourceview-3.0`
* `libarchive`
* `goocanvas-3.0`
* `gettext`
* `cairo`
* `meson`
......@@ -68,7 +69,7 @@ These are mostly guidelines, not rules. Use your best judgment, and feel free to
* Debian (Elementary/Ubuntu/Linux Mint)
```sh
sudo apt-get install gtk+-3.0 elementary-sdk glib-2.0 gee-0.8 gobject-2.0 libxml2 gtksourceview-3.0 libjson-glib-1.0 goocanvas-3.0-dev libarchive-dev libcairo2-dev meson valac
sudo apt-get install gtk+-3.0 elementary-sdk glib-2.0 gee-0.8 gobject-2.0 libxml2 libjson-glib-1.0 goocanvas-3.0-dev libarchive-dev libcairo2-dev meson valac
```
2. Building:
......
......@@ -31,9 +31,9 @@ Feel free to download the Alpha and help us testing it.
## 📦 Install
| elementaryOS AppCenter | FlatHub | Snapcraft Store |
|------------------------ |--------------- |----------------- |
|[![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.akiraux.akira/)|<a href="#flathub-beta"><img src="https://flathub.org/assets/badges/flathub-badge-i-en.svg" width="160px" alt="Get it from Flathub!"></a>|[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-white.svg)](https://snapcraft.io/akira)|
| elementaryOS AppCenter | FlatHub |
|------------------------ |--------------- |
|[![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.akiraux.akira/)|<a href="#flathub-beta"><img src="https://flathub.org/assets/badges/flathub-badge-i-en.svg" width="160px" alt="Get it from Flathub!"></a>
### Flathub Beta
```
......@@ -48,12 +48,11 @@ You can install Akira by compiling it from the source
### Install Dependencies
- `gtk+-3.0>=3.18`
- `granite>=5.3.0`
- `granite>=6.0.0`
- `glib-2.0`
- `gee-0.8`
- `gobject-2.0`
- `libxml-2.0`
- `gtksourceview-3.0`
- `libjson-glib-1.0`
- `goocanvas-3.0`
- `libarchive`
......@@ -77,7 +76,7 @@ ninja && sudo ninja install
## 🤔 Questions
If you want to ask any questions about the project, join us on our public Matrix channel at
If you want to ask any questions about the project, join us on our public Matrix channel at
[#akiraux:matrix.org](https://matrix.to/#/#akiraux:matrix.org) or on IRC at #akiraux on LiberaChat.
We also have a dedicated Discord channel available to any [Patreon](https://www.patreon.com/akiraux) supporters where we offer more direct support, and we're open to discussing new features and implementations.
......
akira-screenshot.png

238 KiB | W: | H:

akira-screenshot.png

201 KiB | W: | H:

akira-screenshot.png
akira-screenshot.png
akira-screenshot.png
akira-screenshot.png
  • 2-up
  • Swipe
  • Onion skin
name: akira
base: core18
version: master
summary: Akira
description: |
Native Linux App for UI and UX Design built in Vala and Gtk
grade: stable
confinement: strict
architectures:
- build-on: i386
- build-on: amd64
- build-on: armhf
- build-on: arm64
apps:
akira:
extensions: [gnome-3-28]
command: usr/bin/com.github.akiraux.akira
plugs:
- desktop
- desktop-legacy
- opengl
- x11
- home
- removable-media
slots: [ dbus-akira ]
desktop: usr/share/applications/com.github.akiraux.akira.desktop
environment:
GSETTINGS_SCHEMA_DIR: $SNAP/share/glib-2.0/schemas
GTK_USE_PORTAL: "1"
slots:
dbus-akira:
interface: dbus
bus: session
name: com.github.akiraux.akira
parts:
elementary-sdk:
plugin: nil
build-packages:
- software-properties-common
override-pull: |
add-apt-repository -y ppa:elementary-os/stable
add-apt-repository -y ppa:elementary-os/os-patches
apt -y update
apt -y upgrade
akira:
plugin: meson
after: [elementary-sdk]
meson-parameters:
- --prefix=/usr
source: .
override-build: |
snapcraftctl build
sed -i 's|Icon=com.github.akiraux.akira|Icon=${SNAP}/usr/share/icons/hicolor/scalable/apps/com.github.akiraux.akira.svg|' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/com.github.akiraux.akira.desktop
build-packages:
- gettext
- libgtk-3-dev
- valac
- libgranite-dev
- libjson-glib-dev
- libgudev-1.0-dev
- libevdev-dev
- libgtksourceview-3.0-dev
- libxml2-dev
- libglib2.0-dev
- libgoocanvas-2.0-dev
- libarchive-dev
stage-packages:
- libdatrie1
- libdbus-1-3
- libepoxy0
- libexpat1
- libffi6
- libgcrypt20
- libgee-0.8-2
- libgpg-error0
- libgraphite2-3
- libharfbuzz0b
- libarchive13
- libgoocanvas-2.0-9
- libgranite5
- liblz4-1
- liblzma5
- libmount1
- libpcre3
- libpixman-1-0
- libpng16-16
- libthai0
- libwayland-client0
- libwayland-cursor0
- libwayland-egl1-mesa
- libx11-6
- libxau6
- libxcb1
- libxcb-render0
- libxcb-shm0
- libxcomposite1
- libxcursor1
- libxdamage1
- libxdmcp6
- libxext6
- libxfixes3
- libxi6
- libxinerama1
- libxkbcommon0
- libxrender1
- zlib1g
app-id: com.github.akiraux.akira
runtime: io.elementary.Platform
runtime-version: '6'
sdk: io.elementary.Sdk
command: com.github.akiraux.akira
finish-args:
- '--share=ipc'
- '--socket=fallback-x11'
- '--socket=wayland'
# needed for perfers-color-scheme
- '--system-talk-name=org.freedesktop.Accounts'
- '--filesystem=home'
- '--device=dri'
modules:
- name: goocanvas
config-opts:
- '--enable-python=no'
build-options:
make-install-args:
- 'girdir=/app/share/gir-1.0'
- 'typelibdir=/app/lib/girepository-1.0'
sources:
- type: git
url: https://gitlab.gnome.org/GNOME/goocanvas
branch: 'goocanvas-3.0'
- name: akira
buildsystem: meson
sources:
- type: dir
path: .
......@@ -32,6 +32,11 @@
<binary>@APP_ID@</binary>
</provides>
<releases>
<release version="0.0.16" date="2021-08-15">
<description>
<p>elementary OS 6 Odin release</p>
</description>
</release>
<release version="0.0.15" date="2021-07-20">
<description>
<p>Performance improvements and Global colors library</p>
......@@ -194,5 +199,6 @@
<value key="x-appcenter-color-primary">#3f3f3f</value>
<value key="x-appcenter-color-primary-text">#ffffff</value>
<value key="x-appcenter-suggested-price">15</value>
<value key="x-appcenter-stripe">pk_live_515yF9YDvXGakAYGJ74PQwmIwxs6xQrm0q0ULEAYO6vZyzsTIaOI40ZtDYj6qUGq6sjzCgwd25VQ4REbJob6pkB9r00tU1lgu6W</value>
</custom>
</component>
data/screenshots/screenshot-1.png

141 KiB | W: | H:

data/screenshots/screenshot-1.png

201 KiB | W: | H:

data/screenshots/screenshot-1.png
data/screenshots/screenshot-1.png
data/screenshots/screenshot-1.png
data/screenshots/screenshot-1.png
  • 2-up
  • Swipe
  • Onion skin
data/screenshots/screenshot-2.png

56.9 KiB | W: | H:

data/screenshots/screenshot-2.png

190 KiB | W: | H:

data/screenshots/screenshot-2.png
data/screenshots/screenshot-2.png
data/screenshots/screenshot-2.png
data/screenshots/screenshot-2.png
  • 2-up
  • Swipe
  • Onion skin
data/screenshots/screenshot-3.png

30.5 KiB | W: | H:

data/screenshots/screenshot-3.png

132 KiB | W: | H:

data/screenshots/screenshot-3.png
data/screenshots/screenshot-3.png
data/screenshots/screenshot-3.png
data/screenshots/screenshot-3.png
  • 2-up
  • Swipe
  • Onion skin
data/screenshots/screenshot-4.png

135 KiB | W: | H:

data/screenshots/screenshot-4.png

234 KiB | W: | H:

data/screenshots/screenshot-4.png
data/screenshots/screenshot-4.png
data/screenshots/screenshot-4.png
data/screenshots/screenshot-4.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -4,7 +4,7 @@ conf_data.set('PREFIX', akira_prefix)
conf_data.set('DATADIR', akira_datadir)
conf_data.set('PKGDATADIR',akira_pkgdatadir)
conf_data.set('GETTEXT_PACKAGE', gettext_package)
conf_data.set('VERSION', '0.0.15')
conf_data.set('VERSION', '0.0.16')
conf_data.set('PROFILE', profile)
conf_data.set('APP_ID', application_id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment