chore: Bump version to 1.5, update changelog, add .gitignore
- Version 1.5.0 mit History-Tab und Aufschlag-Spalte - ChangeLog dokumentiert alle Versionen seit 1.0.0 - .gitignore ignoriert bin/ Releases und temp. Dateien Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
aa363920f9
commit
9114d03857
3 changed files with 22 additions and 1 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
bin/
|
||||
*.log
|
||||
*.tmp
|
||||
temp/
|
||||
cache/
|
||||
16
ChangeLog.md
16
ChangeLog.md
|
|
@ -5,6 +5,22 @@ Alle wichtigen Änderungen werden hier dokumentiert.
|
|||
Das Format basiert auf [Keep a Changelog](https://keepachangelog.com/de/1.0.0/),
|
||||
und dieses Projekt folgt [Semantic Versioning](https://semver.org/lang/de/).
|
||||
|
||||
## [1.5.0] - 2026-03-17
|
||||
|
||||
### Added
|
||||
- Verlauf-Tab im Admin-Bereich: Cronjob-Läufe mit Status, Zusammenfassung und Ausgabe
|
||||
- Verlauf-Tab: Preisänderungen durch PreisBot mit Zeitraumfilter (30/90/365 Tage)
|
||||
- Produktaufschlag in der Preisänderungsübersicht sichtbar
|
||||
- Subquery für Altpreis-Ermittlung in der History-Ansicht
|
||||
|
||||
## [1.2.0] - 2026-03-10
|
||||
|
||||
### Fixed
|
||||
- Fatal Error beim Mailversand: `$conf->global->MAIN_INFO_SOCIETE_MAIL` durch `getDolGlobalString()` ersetzt
|
||||
- Cronjob hing durch internen Dolibarr-Trigger beim Preis-Update → `notrigger=1` Parameter hinzugefügt
|
||||
- Timeout-Schutz: `set_time_limit(300)` hinzugefügt
|
||||
- User-Fallback im Cronjob-Kontext: Admin-User (ID 1) wird geladen wenn kein User gesetzt
|
||||
|
||||
## [1.0.0] - 2026-03-03
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ class modPreisBot extends DolibarrModules
|
|||
$this->editor_squarred_logo = ''; // Must be image filename into the module/img directory followed with @modulename. Example: 'myimage.png@preisbot'
|
||||
|
||||
// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated', 'experimental_deprecated' or a version string like 'x.y.z'
|
||||
$this->version = '1.3';
|
||||
$this->version = '1.5';
|
||||
// Url to the file with your last numberversion of this module
|
||||
//$this->url_last_version = 'http://www.example.com/versionmodule.txt';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue