Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Achiefs/fim
Browse files Browse the repository at this point in the history
  • Loading branch information
okynos committed Feb 14, 2023
2 parents e3e0d3f + 32a215f commit 55c6b8d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: 0.22.0
args: '--all-features --out Lcov --exclude-files src/main.rs src/monitor.rs'
- name: upload to Coveralls
uses: coverallsapp/github-action@master
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fim"
version = "0.4.3"
version = "0.4.4"
authors = ["José Fernández <´pylott@gmail.com´>"]
edition = "2021"

Expand Down
6 changes: 6 additions & 0 deletions pkg/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fim (0.4.4-1) xenial; urgency=medium

* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.4

-- Jose Fernandez <support@achiefs.com> Tue, 14 Feb 2023 22:35:00 +0000

fim (0.4.3-1) xenial; urgency=medium

* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3
Expand Down
2 changes: 1 addition & 1 deletion pkg/fim.1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.\" *
.\" **************************************************************************
.\"
.TH fim 1 "01 Jun 2022" "FIM 0.4.3" "FIM Manual"
.TH fim 1 "01 Jun 2022" "FIM 0.4.4" "FIM Manual"

.SH NAME
.B FIM
Expand Down
2 changes: 1 addition & 1 deletion pkg/msi/fim.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='File Integrity Monitor' Manufacturer='Achiefs LLC.' Id='*'
UpgradeCode='5b9136b1-f19d-4af0-9efe-356fabdf1467'
Language='1033' Codepage='1252' Version='0.4.3'>
Language='1033' Codepage='1252' Version='0.4.4'>
<Package Id='*' Keywords='Installer'
Description="FIM is a Host-based file monitoring tool that performs file system analysis and real time alerting."
Comments='FIM is an open source application, coded in Rust.'
Expand Down
3 changes: 3 additions & 0 deletions pkg/rpm/fim.spec
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ rm -fr %{buildroot}
# -----------------------------------------------------------------------------

%changelog
* Tue Feb 14 2023 support <support@achiefs.com> - 0.4.4
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.4

* Mon Dec 19 2022 support <support@achiefs.com> - 0.4.3
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3

Expand Down
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright (C) 2021, Achiefs.

// Global constants definitions
pub const VERSION: &str = "0.4.3";
pub const VERSION: &str = "0.4.4";
pub const NETWORK_MODE: &str = "NETWORK";
pub const FILE_MODE: &str = "FILE";
pub const BOTH_MODE: &str = "BOTH";
pub const MACHINE_ID_PATH: &str = "/etc/machine-id";
const CONFIG_LINUX_PATH: &str = "/etc/fim/config.yml";
const CONFIG_WINDOWS_PATH: &str = "C:\\Program Files (x86)\\FIM\\config.yml";
const CONFIG_WINDOWS_PATH: &str = "C:\\Program Files\\File Integrity Monitor\\config.yml";

// To parse files in yaml format
use yaml_rust::yaml::{Yaml, YamlLoader, Array};
Expand Down

0 comments on commit 55c6b8d

Please sign in to comment.