Skip to content

Commit

Permalink
Fix build problem. Make app ready for Juno.
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyDo committed Jan 2, 2019
1 parent 0bde55c commit c6edc2e
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 11 deletions.
29 changes: 29 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---

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

install:
- npm install @elementaryos/houston

script:
- houston ci
--name-human Color Picker
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,5 @@ You'll need the following dependencies to build:
* valac

## Build, Install and Run
Call in the project's root folder:

meson build && cd build
mesonconf -Dprefix=/usr
ninja
sudo ninja install
com.github.ronnydo.colorpicker
If you like to build it by your own, have a look into the dev-build.sh file.

8 changes: 8 additions & 0 deletions data/com.github.ronnydo.colorpicker.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@
<category>Development</category>
</categories>
<releases>
​<release version="1.1.0" date="2019-01-02" urgency="medium">
​ <description>
<ul>
<li>Juno Release!!1! (finally)</li>
<li>"Olá em português" (Translation by @drom98)</li>
</ul>
</description>
​</release>
​<release version="1.0.5" date="2018-04-27" urgency="medium">
​ <description>
<ul>
Expand Down
13 changes: 10 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
com.github.ronnydo.colorpicker (1.1.0) bionic; urgency=medium

* Juno Release!!1! (finally)
* "Olá em português" (Translation by @drom98)

-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 02 Jan 2019 20:31:00 +0100

com.github.ronnydo.colorpicker (1.0.5) xenial; urgency=medium

* Implement 'close with right-mouse-button' feature (issue #27)
* Update icon
* Add French, Spanish and Catalan translation

-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 27 Apr 2017 18:31:00 +0100
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 27 Apr 2018 18:31:00 +0100

com.github.ronnydo.colorpicker (1.0.4) xenial; urgency=medium

* fix version conflicts

-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 27 Apr 2017 13:31:00 +0100
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 27 Apr 2018 13:31:00 +0100

com.github.ronnydo.colorpicker (1.0.3) xenial; urgency=medium

* Implement 'close with right-mouse-button' feature (issue #27)
* Update icon
* Add French, Spanish and Catalan translation

-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 26 Apr 2017 13:31:00 +0100
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 26 Apr 2018 13:31:00 +0100

com.github.ronnydo.colorpicker (1.0.2) xenial; urgency=medium

Expand Down
4 changes: 3 additions & 1 deletion dev-build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
sudo rm -r build
meson build
cd build
mesonconf -Dprefix=/usr
meson configure -Dprefix=/usr
ninja
sudo cp ../data/com.github.ronnydo.colorpicker.gschema.xml /usr/share/glib-2.0/schemas/
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
./com.github.ronnydo.colorpicker
cd ..

0 comments on commit c6edc2e

Please sign in to comment.