Skip to content

Commit

Permalink
Merge pull request #30 from Peppie84/development
Browse files Browse the repository at this point in the history
Release v1.3.0.1
  • Loading branch information
Peppie84 authored Aug 1, 2024
2 parents c68481e + 77137ab commit 57e1b55
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]


## [1.3.0.0] - 2023-06-18
## [1.3.0.1] - 2024-07-30
- Fixed `MOD_SETTINGS_DIRECTORY` path for macs for [#28](https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay/issues/28)


## [1.3.0.0] - 2024-06-18
- Added `l10n_pl_.xml` by [dexus92](https://github.com/dexus92)
- Added `l10n_es_.xml` by [Ferchu425](https://github.com/Ferchu425)
- modDesc.xml descVersion update
Expand Down
3 changes: 2 additions & 1 deletion FS22_ExtendedGameInfoDisplay/extendedgameinfodisplaygui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
-- value in the modSettings-folder.
--
-- Copyright (c) Peppie84, 2023
-- https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay
--
ExtendedGameInfoDisplayGui = {
MOD_DIRECTORY = g_currentModDirectory,
MOD_SETTINGS_DIRECTORY = g_currentModSettingsDirectory .. '../',
MOD_SETTINGS_DIRECTORY = getUserProfileAppPath() .. 'modSettings/',
MOD_SETTINGS_FILENAME = 'ExtendedGameInfoDisplay.xml',
MOD_SETTINGS_XML_ROOT_NODE = 'settings',
CURRENT_MOD = g_currentModName or 'unknown',
Expand Down
8 changes: 7 additions & 1 deletion FS22_ExtendedGameInfoDisplay/modDesc.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<modDesc descVersion="80">
<author>Peppie84</author>
<version>1.3.0.0</version>
<version>1.3.0.1</version>
<title>
<en>Extended Game Infodisplay</en>
<de>Erweiterte Spiel-Infodarstellung</de>
Expand All @@ -10,6 +10,9 @@
<en><![CDATA[
Expands the current GameInfoDisplay in the upper right corner by displaying the current year under the date and activates a hidden temperature feature with an indicator of whether the temperature is falling, staying constant or rising, the display of the current temperature. I also added the min/max temperature of the day.
Changelog v1.3.0.1
- Fix for saving the GameInfoDisplay settings on mac
Changelog v1.3.0.0
- Added ES translation
- Added PL translation
Expand All @@ -31,6 +34,9 @@ For more information, help, and reporting issues please visit <a href='https://g
<de><![CDATA[
Erweitert die aktuelle GameInfoDisplay oben rechts um die Anzeige des aktuellen Jahres unter dem Datum und aktiviert ein verstecktes Temperaturfeature mit einem Indikator ob die Temepratur fällt, gleich bleibt oder steigt, die Anzeige der aktuellen Temperatur und der min/max Temperatur des Tages.
Changelog v1.3.0.1
- Fix für das Speichern der GameInfoDisplay-Settings auf Macs
Changelog v1.3.0.0
- ES Übersetzung hinzugefügt
- PL Übersetzung hinzugefügt
Expand Down
1 change: 1 addition & 0 deletions FS22_ExtendedGameInfoDisplay/tempinfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
-- and changed the information text elements.
--
-- Copyright (c) Peppie84, 2021
-- https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay
--
TempInfo = {}

Expand Down
1 change: 1 addition & 0 deletions FS22_ExtendedGameInfoDisplay/yearinfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
-- top right corner hud.
--
-- Copyright (c) Peppie84, 2021
-- https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay
--
YearInfo = {
L10N_SYMBOLS = {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div align="center">

[![FarmingSimulator-22](https://img.shields.io/badge/FarmingSimulator-22-blue?style=flat-square)](https://www.farming-simulator.com/)
[![Modhub Version](https://img.shields.io/badge/Modhub-v1.3.0.0-green?style=flat-square)](https://farming-simulator.com/mod.php?mod_id=267536)
[![Modhub Version](https://img.shields.io/badge/Modhub-v1.3.0.1-green?style=flat-square)](https://farming-simulator.com/mod.php?mod_id=267536)
[![GitHub issues](https://img.shields.io/github/issues/Peppie84/FS22_ExtendedGameInfoDisplay?style=flat-square)](https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay/issues)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue?style=flat-square)](https://www.gnu.org/licenses/gpl-3.0)
[![Last commit](https://img.shields.io/github/last-commit/Peppie84/FS22_ExtendedGameInfoDisplay?style=flat-square&color=important)](https://github.com/Peppie84/FS22_ExtendedGameInfoDisplay/commits/development)
Expand Down

0 comments on commit 57e1b55

Please sign in to comment.