This commit is contained in:
DavidXanatos 2022-12-07 16:45:38 +01:00
parent 75c79a92ed
commit ea6b1ac2d7
2 changed files with 10 additions and 3 deletions

View File

@ -4,7 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.1a / 5.61.1] - 2022-12-??
## [1.6.1b / 5.61.1] - 2022-12-??
### Fixed
- fixed support settign page not showing version updates proeprly
## [1.6.1a / 5.61.1] - 2022-12-07
### Added
- added run boxed command to the sandbox menu
@ -22,7 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- reorganized command prompt entries [#2451](https://github.com/sandboxie-plus/Sandboxie/issues/2451)
- the "live" update channel is now part fo the "preview" channel for which Version Udpates can now be disabled
- the "live" update channel is now part of the "preview" channel for which Version Updates can now be disabled
### Fixed
- fixed issue with support setting drop-down menu multiplying [#2502](https://github.com/sandboxie-plus/Sandboxie/pull/2502) (okrc)

View File

@ -1421,7 +1421,7 @@ QString CSettingsWindow__MkVersion(const QString& Name, const QVariantMap& Relea
QVariantMap Release = Releases[Name].toMap();
QString Version = Release.value("version").toString();
//if (Release["build"].type() != QVariant::Invalid)
int iUpdate = Release["iUpdate"].toInt();
int iUpdate = Release["update"].toInt();
if(iUpdate) Version += QChar('a' + (iUpdate - 1));
return QString("<a href=\"%1\">%2</a>").arg(Name, Version);
}