Skip to content

Commit 2f5ec5c

Browse files
committed
Fix apt sources to jammy only for aarch64
1 parent be876b0 commit 2f5ec5c

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.github/workflows/linux-aarch64-nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
with:
3333
targets: aarch64-unknown-linux-gnu
3434

35+
- name: Fix apt sources to jammy only
36+
run: |
37+
sudo sed -i 's/noble/jammy/g' /etc/apt/sources.list
38+
sudo rm -f /etc/apt/sources.list.d/*.list
39+
3540
- name: Enable multiarch and add ARM64 ports repo
3641
run: |
3742
sudo dpkg --add-architecture arm64

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neohtop",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "neohtop"
3-
version = "1.1.2"
3+
version = "1.1.3"
44
description = "A cross-platform system monitor"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,11 @@
2020
"entitlements": null,
2121
"providerShortName": null
2222
},
23-
"targets": [
24-
"app",
25-
"dmg"
26-
]
23+
"targets": ["app", "dmg"]
2724
},
2825
"productName": "NeoHtop",
2926
"mainBinaryName": "NeoHtop",
30-
"version": "1.1.2",
27+
"version": "1.1.3",
3128
"identifier": "com.neohtop.dev",
3229
"plugins": {
3330
"os": {
@@ -39,7 +36,7 @@
3936
"windows": [
4037
{
4138
"fullscreen": false,
42-
"theme":"Dark",
39+
"theme": "Dark",
4340
"height": 900,
4441
"resizable": true,
4542
"title": "NeoHtop",
@@ -55,4 +52,4 @@
5552
"csp": null
5653
}
5754
}
58-
}
55+
}

0 commit comments

Comments
 (0)