Skip to content

Commit

Permalink
Merge pull request #57 from joular/develop
Browse files Browse the repository at this point in the history
Version 1.0.1
  • Loading branch information
adelnoureddine authored Jul 4, 2024
2 parents 634c5cf + ba08a0a commit 579fe89
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion alire.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "powerjoular"
description = "Monitoring the power consumption of multiple platforms and processes"
version = "1.0.0"
version = "1.0.1"

authors = ["Adel Noureddine"]
maintainers = ["Adel Noureddine <adel.noureddine@univ-pau.fr>"]
Expand Down
4 changes: 2 additions & 2 deletions installer/aur/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Adel Noureddine <adel.noureddine@univ-pau.fr>
# Maintainer: Adel Noureddine <adel.noureddine@outlook.com>
pkgname=powerjoular
pkgver=1.0.0
pkgver=1.0.1
pkgrel=1
pkgdesc="PowerJoular allows monitoring power consumption of multiple platforms and processes."
arch=('x86_64' 'aarch64' 'armv7h')
Expand Down
4 changes: 3 additions & 1 deletion installer/powerjoular.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: powerjoular
Version: 1.0.0
Version: 1.0.1
Release: 1%{?dist}
Summary: PowerJoular allows monitoring power consumption of multiple platforms and processes.

Expand All @@ -22,6 +22,8 @@ install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/%{_sysconfdir}/systemd/system/%{name}.
%{_sysconfdir}/systemd/system/%{name}.service

%changelog
* Thu Jul 04 2024 Adel Noureddine <adel.noureddine@univ-pau.fr> - 1.0.1-1
- Fix RPi 5 detection
* Thu Jun 20 2024 Adel Noureddine <adel.noureddine@univ-pau.fr> - 1.0.0-1
- Version 1.0.0
* Thu Jun 06 2024 Adel Noureddine <adel.noureddine@univ-pau.fr> - 0.7.3-1
Expand Down
2 changes: 1 addition & 1 deletion release-version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.0.0
VERSION=1.0.1

# First cross compiler

Expand Down
2 changes: 1 addition & 1 deletion src/help_info.adb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ with Ada.Characters.Latin_1; use Ada.Characters.Latin_1;

package body Help_Info is

Version_Number : constant String := "1.0.0";
Version_Number : constant String := "1.0.1";

procedure Show_Help is
begin
Expand Down
2 changes: 1 addition & 1 deletion src/raspberry_pi_cpu_formula.adb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package body Raspberry_Pi_CPU_Formula is
begin
-- Formulas are based on empirical experimentation and linear/polynomial regression

if (Platform_Name = "rbp51.0-64") then
if (Platform_Name = "rbp5b1.0-64") then
if (Algorithm_Name = "linear") then
return (3.457855981342954 * CPU_Utilization) + 4.403192179893827;
elsif (Algorithm_Name = "polynomial") then
Expand Down

0 comments on commit 579fe89

Please sign in to comment.