Skip to content

Commit 369dacc

Browse files
committed
bump version to v1.0.0
1 parent d37a686 commit 369dacc

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed

.github/workflows/makefile.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- name: create tmp directory
17-
run: mkdir /tmp/customfetch-0.10.2.orig
17+
run: mkdir /tmp/customfetch-1.0.0.orig
1818

1919
- name: Install Packages
2020
run: |
@@ -29,8 +29,8 @@ jobs:
2929

3030
- name: Create deb
3131
run: |
32-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig
33-
cd /tmp/customfetch-0.10.2.orig/customfetch
32+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-1.0.0.orig
33+
cd /tmp/customfetch-1.0.0.orig/customfetch
3434
mkdir -p Debian/Debhelper/Buildsystem/
3535
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
3636
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
@@ -39,16 +39,16 @@ jobs:
3939
4040
- name: Install test customfetch
4141
run: |
42-
cd /tmp/customfetch-0.10.2.orig
43-
sudo dpkg -i customfetch_0.10.2-1_amd64.deb
42+
cd /tmp/customfetch-1.0.0.orig
43+
sudo dpkg -i customfetch_1.0.0-1_amd64.deb
4444
customfetch --wrap-lines
4545
4646
- name: Upload to github artifacts
4747
uses: actions/upload-artifact@v4
4848
with:
4949
if-no-files-found: error
5050
name: customfetch_amd64
51-
path: /tmp/customfetch-0.10.2.orig/customfetch_0.10.2-1_amd64.deb
51+
path: /tmp/customfetch-1.0.0.orig/customfetch_1.0.0-1_amd64.deb
5252

5353
build-deb-gui:
5454
runs-on: ubuntu-20.04
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v4
5858

5959
- name: create tmp directory
60-
run: mkdir /tmp/customfetch-0.10.2.orig
60+
run: mkdir /tmp/customfetch-1.0.0.orig
6161

6262
- name: Install Packages
6363
run: |
@@ -72,8 +72,8 @@ jobs:
7272

7373
- name: Create deb
7474
run: |
75-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig
76-
cd /tmp/customfetch-0.10.2.orig/customfetch
75+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-1.0.0.orig
76+
cd /tmp/customfetch-1.0.0.orig/customfetch
7777
mkdir -p Debian/Debhelper/Buildsystem/
7878
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
7979
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
if-no-files-found: error
8888
name: customfetch-gui_amd64
89-
path: /tmp/customfetch-0.10.2.orig/customfetch_0.10.2-1_amd64.deb
89+
path: /tmp/customfetch-1.0.0.orig/customfetch_1.0.0-1_amd64.deb
9090

9191
build_ubuntu-20_04:
9292
runs-on: ubuntu-20.04

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/checkout@v4
8181

8282
- name: create tmp directory
83-
run: mkdir /tmp/customfetch-0.10.2.orig
83+
run: mkdir /tmp/customfetch-1.0.0.orig
8484

8585
- name: Install Packages
8686
run: |
@@ -95,20 +95,20 @@ jobs:
9595

9696
- name: Create deb
9797
run: |
98-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig
99-
cd /tmp/customfetch-0.10.2.orig/customfetch
98+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-1.0.0.orig
99+
cd /tmp/customfetch-1.0.0.orig/customfetch
100100
mkdir -p Debian/Debhelper/Buildsystem/
101101
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
102102
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
103103
sed -i "s#DEBUG=0#DEBUG=0 CXX=x86_64-linux-gnu-g++-10#g" debian/rules
104104
dpkg-buildpackage -us -uc
105-
mv ../customfetch_0.10.2-1_amd64.deb ../customfetch_amd64.deb
105+
mv ../customfetch_1.0.0-1_amd64.deb ../customfetch_amd64.deb
106106
107107
- name: Upload to github artifacts
108108
uses: actions/upload-artifact@v4
109109
with:
110110
name: customfetch-deb-pkg
111-
path: /tmp/customfetch-0.10.2.orig/customfetch_amd64.deb
111+
path: /tmp/customfetch-1.0.0.orig/customfetch_amd64.deb
112112

113113
build-deb-gui:
114114
runs-on: ubuntu-20.04
@@ -117,7 +117,7 @@ jobs:
117117
- uses: actions/checkout@v4
118118

119119
- name: create tmp directory
120-
run: mkdir /tmp/customfetch-0.10.2.orig
120+
run: mkdir /tmp/customfetch-1.0.0.orig
121121

122122
- name: Install Packages
123123
run: |
@@ -132,21 +132,21 @@ jobs:
132132

133133
- name: Create deb
134134
run: |
135-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig
136-
cd /tmp/customfetch-0.10.2.orig/customfetch
135+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-1.0.0.orig
136+
cd /tmp/customfetch-1.0.0.orig/customfetch
137137
mkdir -p Debian/Debhelper/Buildsystem/
138138
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
139139
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
140140
sed -i "s#GUI_APP=0#GUI_APP=1 CXX=x86_64-linux-gnu-g++-10#g" debian/rules
141141
sed -i "/^Build-Depends:/a Depends: libgtkmm-3.0-1v5,libgtk-3-0" debian/control
142142
dpkg-buildpackage -us -uc
143-
mv ../customfetch_0.10.2-1_amd64.deb ../customfetch-gui_amd64.deb
143+
mv ../customfetch_1.0.0-1_amd64.deb ../customfetch-gui_amd64.deb
144144
145145
- name: Upload to github artifacts
146146
uses: actions/upload-artifact@v4
147147
with:
148148
name: customfetch-gui-deb-pkg
149-
path: /tmp/customfetch-0.10.2.orig/customfetch-gui_amd64.deb
149+
path: /tmp/customfetch-1.0.0.orig/customfetch-gui_amd64.deb
150150

151151
build-android-app:
152152
runs-on: ubuntu-latest

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ execute_process(
3232
OUTPUT_STRIP_TRAILING_WHITESPACE
3333
)
3434

35-
set(VERSION "0.10.2")
35+
set(VERSION "1.0.0")
3636
target_compile_definitions(${TARGET_NAME} PRIVATE
3737
VERSION="${VERSION}"
3838
BRANCH="${GIT_BRANCH}"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ endif
5252

5353
NAME = customfetch
5454
TARGET ?= $(NAME)
55-
OLDVERSION = 0.10.1
56-
VERSION = 0.10.2
55+
OLDVERSION = 0.10.2
56+
VERSION = 1.0.0
5757
BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
5858
SRC = $(wildcard src/*.cpp src/query/linux/*.cpp src/query/android/*.cpp src/query/linux/utils/*.cpp)
5959
OBJ = $(SRC:.cpp=.o)

android/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ execute_process(
2727
OUTPUT_STRIP_TRAILING_WHITESPACE
2828
)
2929

30-
set(VERSION "0.10.2")
30+
set(VERSION "1.0.0")
3131
target_compile_definitions(customfetch PRIVATE
3232
VERSION="${VERSION}"
3333
BRANCH="${GIT_BRANCH}"

android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ android {
2828
minSdk = 26
2929
targetSdk = 35
3030
versionCode = 1
31-
versionName = "0.10.2"
31+
versionName = "1.0.0"
3232

3333
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3434
externalNativeBuild {

compile_flags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-Wextra
44
-Wpedantic
55
-std=c++20
6-
-DVERSION="0.10.2"
6+
-DVERSION="1.0.0"
77
-DBRANCH="main"
88
-DGUI_APP=1
99
-DUSE_DCONF=1

po/customfetch.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: customfetch 0.10.2\n"
9+
"Project-Id-Version: customfetch 1.0.0\n"
1010
"Report-Msgid-Bugs-To: https://github.com/Toni500github/customfetch\n"
1111
"POT-Creation-Date: 2025-02-26 19:00+0100\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

po/it_IT.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: customfetch 0.10.2\n"
8+
"Project-Id-Version: customfetch 1.0.0\n"
99
"Report-Msgid-Bugs-To: https://github.com/Toni500github/customfetch\n"
1010
"POT-Creation-Date: 2025-02-26 19:00+0100\n"
1111
"PO-Revision-Date: 2025-01-02 20:18+0100\n"

0 commit comments

Comments
 (0)