Skip to content

Commit c6edc2e

Browse files
committed
Fix build problem. Make app ready for Juno.
1 parent 0bde55c commit c6edc2e

File tree

5 files changed

+51
-11
lines changed

5 files changed

+51
-11
lines changed

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
3+
language: node_js
4+
5+
node_js:
6+
- lts/*
7+
8+
sudo: required
9+
10+
services:
11+
- docker
12+
13+
addons:
14+
apt:
15+
sources:
16+
- ubuntu-toolchain-r-test
17+
packages:
18+
- libstdc++-5-dev
19+
20+
cache:
21+
directories:
22+
- /tmp/liftoff
23+
24+
install:
25+
- npm install @elementaryos/houston
26+
27+
script:
28+
- houston ci
29+
--name-human Color Picker

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,5 @@ You'll need the following dependencies to build:
2727
* valac
2828

2929
## Build, Install and Run
30-
Call in the project's root folder:
31-
32-
meson build && cd build
33-
mesonconf -Dprefix=/usr
34-
ninja
35-
sudo ninja install
36-
com.github.ronnydo.colorpicker
30+
If you like to build it by your own, have a look into the dev-build.sh file.
3731

data/com.github.ronnydo.colorpicker.appdata.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
<category>Development</category>
2323
</categories>
2424
<releases>
25+
​<release version="1.1.0" date="2019-01-02" urgency="medium">
26+
​ <description>
27+
<ul>
28+
<li>Juno Release!!1! (finally)</li>
29+
<li>"Olá em português" (Translation by @drom98)</li>
30+
</ul>
31+
</description>
32+
​</release>
2533
​<release version="1.0.5" date="2018-04-27" urgency="medium">
2634
​ <description>
2735
<ul>

debian/changelog

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
1+
com.github.ronnydo.colorpicker (1.1.0) bionic; urgency=medium
2+
3+
* Juno Release!!1! (finally)
4+
* "Olá em português" (Translation by @drom98)
5+
6+
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 02 Jan 2019 20:31:00 +0100
7+
18
com.github.ronnydo.colorpicker (1.0.5) xenial; urgency=medium
29

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

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

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

1118
* fix version conflicts
1219

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

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

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

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

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

dev-build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
sudo rm -r build
22
meson build
33
cd build
4-
mesonconf -Dprefix=/usr
4+
meson configure -Dprefix=/usr
55
ninja
6+
sudo cp ../data/com.github.ronnydo.colorpicker.gschema.xml /usr/share/glib-2.0/schemas/
7+
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
68
./com.github.ronnydo.colorpicker
79
cd ..

0 commit comments

Comments
 (0)