Skip to content

Commit d14c1cd

Browse files
committed
Add changelog of v0.1.0
1 parent 0aba053 commit d14c1cd

File tree

3 files changed

+79
-73
lines changed

3 files changed

+79
-73
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# Changelog
22

3-
<!--ENTER CHANGELOG HERE-->
3+
<!--ENTER CHANGELOG HERE-->
4+
5+
## 0.1.0 (2024-10-21)
6+
7+
First release 🎉
8+

app/AppImageBuilder.yml

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,72 @@
1-
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
2-
version: 1
3-
script:
4-
- rm -rf AppDir || true
5-
- cp -r build/linux/x64/release/bundle AppDir
6-
- mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/
7-
- mkdir -p AppDir/usr/share/metainfo/
8-
- cp linux/debian/usr/share/icons/hicolor AppDir/usr/share/icons/hicolor -r
9-
- cp linux/debian/usr/share/metainfo/dev.linwood.setonix.appdata.xml AppDir/usr/share/metainfo/
10-
11-
AppDir:
12-
path: ./AppDir
13-
app_info:
14-
id: dev.linwood.setonix
15-
name: Linwood Setonix
16-
icon: dev.linwood.setonix
17-
version: 0.1.0
18-
exec: setonix
19-
exec_args: $@
20-
apt:
21-
arch: amd64
22-
allow_unauthenticated: true
23-
sources:
24-
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse
25-
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse
26-
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
27-
- sourceline: deb http://security.ubuntu.com/ubuntu bionic-security main restricted universe multiverse
28-
include:
29-
- libgtk-3-0
30-
- libsecret-1-dev
31-
- libjsoncpp-dev
32-
exclude:
33-
- humanity-icon-theme
34-
- hicolor-icon-theme
35-
- adwaita-icon-theme
36-
- ubuntu-mono
37-
files:
38-
include: []
39-
exclude:
40-
- usr/share/man
41-
- usr/share/doc/*/README.*
42-
- usr/share/doc/*/changelog.*
43-
- usr/share/doc/*/NEWS.*
44-
- usr/share/doc/*/TODO.*
45-
test:
46-
fedora-30:
47-
image: appimagecrafters/tests-env:fedora-30
48-
command: ./AppRun
49-
use_host_x: true
50-
debian-stable:
51-
image: appimagecrafters/tests-env:debian-stable
52-
command: ./AppRun
53-
use_host_x: true
54-
archlinux-latest:
55-
image: appimagecrafters/tests-env:archlinux-latest
56-
command: ./AppRun
57-
use_host_x: true
58-
centos-7:
59-
image: appimagecrafters/tests-env:centos-7
60-
command: ./AppRun
61-
use_host_x: true
62-
ubuntu-xenial:
63-
image: appimagecrafters/tests-env:ubuntu-xenial
64-
command: ./AppRun
65-
use_host_x: true
66-
runtime:
67-
env:
68-
GDK_BACKEND: x11
69-
GIO_MODULE_DIR: $APPDIR/usr/lib/x86_64-linux-gnu/gio/modules/
70-
AppImage:
71-
arch: x86_64
72-
update-information: guess
1+
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
2+
version: 1
3+
script:
4+
- rm -rf AppDir || true
5+
- cp -r build/linux/x64/release/bundle AppDir
6+
- mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/
7+
- mkdir -p AppDir/usr/share/metainfo/
8+
- cp linux/debian/usr/share/icons/hicolor AppDir/usr/share/icons/hicolor -r
9+
- cp linux/debian/usr/share/metainfo/dev.linwood.setonix.appdata.xml AppDir/usr/share/metainfo/
10+
11+
AppDir:
12+
path: ./AppDir
13+
app_info:
14+
id: dev.linwood.setonix
15+
name: Linwood Setonix
16+
icon: dev.linwood.setonix
17+
version: 0.1.0
18+
exec: setonix
19+
exec_args: $@
20+
apt:
21+
arch: amd64
22+
allow_unauthenticated: true
23+
sources:
24+
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse
25+
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse
26+
- sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
27+
- sourceline: deb http://security.ubuntu.com/ubuntu bionic-security main restricted universe multiverse
28+
include:
29+
- libgtk-3-0
30+
- libsecret-1-dev
31+
- libjsoncpp-dev
32+
exclude:
33+
- humanity-icon-theme
34+
- hicolor-icon-theme
35+
- adwaita-icon-theme
36+
- ubuntu-mono
37+
files:
38+
include: []
39+
exclude:
40+
- usr/share/man
41+
- usr/share/doc/*/README.*
42+
- usr/share/doc/*/changelog.*
43+
- usr/share/doc/*/NEWS.*
44+
- usr/share/doc/*/TODO.*
45+
test:
46+
fedora-30:
47+
image: appimagecrafters/tests-env:fedora-30
48+
command: ./AppRun
49+
use_host_x: true
50+
debian-stable:
51+
image: appimagecrafters/tests-env:debian-stable
52+
command: ./AppRun
53+
use_host_x: true
54+
archlinux-latest:
55+
image: appimagecrafters/tests-env:archlinux-latest
56+
command: ./AppRun
57+
use_host_x: true
58+
centos-7:
59+
image: appimagecrafters/tests-env:centos-7
60+
command: ./AppRun
61+
use_host_x: true
62+
ubuntu-xenial:
63+
image: appimagecrafters/tests-env:ubuntu-xenial
64+
command: ./AppRun
65+
use_host_x: true
66+
runtime:
67+
env:
68+
GDK_BACKEND: x11
69+
GIO_MODULE_DIR: $APPDIR/usr/lib/x86_64-linux-gnu/gio/modules/
70+
AppImage:
71+
arch: x86_64
72+
update-information: guess

app/linux/debian/usr/share/metainfo/dev.linwood.setonix.appdata.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
</description>
4242
<launchable type="desktop-id">dev.linwood.setonix.desktop</launchable>
4343
<releases>
44+
<release version="0.1.0" date="2024-10-21" />
4445
</releases>
4546
<content_rating type="oars-1.1" />
4647
<update_contact>[email protected]</update_contact>

0 commit comments

Comments
 (0)