Movatterモバイル変換


[0]ホーム

URL:


Downloads for Trackmania

Note: TheClub Edition of Trackmania is required to use the full feature set of Openplanet.Click here to read why.

Branches:defaultbetaedge

1.27.5for Trackmania

default2 months ago

DownloadPermalink
  • Added game version data for 2024-12-12 (faster game startup)
  • Added support for properties in script setting conditionals
  • AddedTime::ParseFormatString
  • AddedUI::GetCursorScreenPos andUI::SetCursorScreenPos
  • AddedUI::DrawList::AddBezierCubic andUI::DrawList::AddBezierQuadratic
  • Added ImGui ID stack debug option shortcut
  • Added type size field to json output documentation
  • Added warning about installing the VC++ redist when showing error 1114 (outdated redist) and 998 (for Linux)
  • Updated Angelscript (this addsforeach)
  • Fixeduint script setting not allowingstep attribute
  • Fixed script builder not handling metadata correctly when there are scoped namespaces
  • Fixed 2 plugins with the same name but different ID not working properly in settings tabs
  • FixedTableColumnSortSpecs::SortDirection property returning invalid values
  • FixedTime::ParseRelativeTime not returning correct results when not using 3 digits after the period
  • Fixedawait() with single callback never returning
  • Fixed broken behavior foriso4 members in Nod Explorer
  • Fixed rendering invalid escape codes in custom imgui coloring
  • Fixed usability issue on Call Proc window
  • Fixed a potential issue with the overlay on Turbo when using Wine (plus some more verbosity in log if this fails)
  • Fixed a potential crash when Alt+Tabbing while using fullscreen
  • Fixed crash when passing invalid timestamp toTime::FormatString orTime::Parse
  • Fixed crash when unable to open some files for writing

1.27.2for Trackmania

default6 months ago

DownloadPermalink
  • Addedschool mode
  • Added new Plugin Manager design (the old design is still available in the settings)
  • Added named separators for categories in settings menu
  • Added option for named category separators in Plugins menu
  • Added fid filename to array if it exists in Nod Explorer
  • Added newPath API's
  • Addedif,beforerender, andafterrender to[setting]
  • Addedstep attribute to[setting] forint,uint,double,float
  • Added support for newlines in[Setting]
  • Added improved display of structured settings
  • Added first version of newUI::Plot API
  • AddedUI::SeparatorTextOpenplanet
  • AddedUI::SetItemTooltip,UI::SetTooltip, andUI::BeginItemTooltip
  • AddedUI::TextLink andUI::TextLinkOpenURL
  • AddedUI::Shortcut andUI::SetNextItemShortcut
  • AddedUI::IsKeyDown andUI::IsKeyReleased
  • AddedUI::PushID with an integer
  • AddedMouseButton button toUI::IsItemClicked
  • AddedUI::SetItemKeyOwner
  • AddedUI::WantCaptureMouse andUI::WantCaptureKeyboard
  • AddedUI::GetMouseWheelDelta andUI::GetMouseWheelDeltaHor
  • Added support for multiple font range loading inUI::LoadFont
  • Addedpretty parameter toJson::Write andJson::ToFile
  • Addedstring::LastIndexOf
  • Addedwstring::opCmp
  • AddedMath::PI2,Math::PIl,Math::PI2l constants
  • AddedMath::Round with decimal places
  • AddedMath::PosInf,Math::NegInf,Math::PosInfl,Math::NegInfl
  • Addedmat3::Transpose andmat4::Transpose
  • Addedmat4(const mat3 &in) andmat3(const mat4 &in) constructors
  • AddedIO::Copy
  • AddedIO::FileCreatedTime
  • Added more functionality to theTests API's (still a work in progress)
  • AddedMeta::Plugin::HasManifest
  • AddedMeta::IsSchoolModeWhitelisted
  • AddedMeta::ReloadPlugin
  • Added support forMeta::UnloadPlugin to unload itself
  • AddedReflect::MwClassInfo::Size
  • AddedMwArrayInPlaceDyn<T>
  • Added more descriptive error for plugininfo.toml load failures
  • Added "Open game folder" option to menu
  • Added log level string to log file
  • Added command line flag/openplanet:developer to start in developer signature mode
  • Added new icons to Openplanet's icon font: Ubisoft, ManiaExchange, ItemExchange, ManiaPark, Evo, TikTok, Dodecahedron
  • Updated game version data (faster startup time)
  • Updated overlay layout and style a little bit
  • Updated Angelscript
  • Updated ImGui (this adds many new API's and flag values to theUI API's)
  • Deprecated fallback parameters innvg::LoadFont as they are practically free in NanoVG (fallback fonts are nowalways included) - this fixes problems when 2 plugins load the same font with different fallback settings
  • Fixed offzone patch no longer working
  • Fixed crash when assigning handle in scripts (#525 and #542)
  • Fixed crash when unloaded plugin tries to render in Recent in Developer menu
  • Fixed shared exports not being included with the plugin when their filename ends with another exported path
  • FixedText::TryParseDouble having the wrong signature
  • FixedText::StripFormatCodes not stripping empty links
  • Fixed hovered flags inUI::IsItemHovered not working
  • FixedChildClasses not showing on Maniaplanet and older inMwClassInfo
  • Fixed counting unnameable files in hash file report statistics
  • Fixed some broken font loading logic

1.26.25for Trackmania

default9 months ago

DownloadPermalink
  • Added "Tabs" menu to Nod Explorer
  • Added the ability to open new tabs in Nod Explorer when middle-clicking nods
  • Added stack trace on deprecation warnings inCompatibility.as
  • AddedVehicleState::GetVehicleType andVehicleState::GetCruiseDisplaySpeed (thanks ezio416!)
  • Fixed not resetting context suspension (unexpectedyield() behavior after asleep(n))
  • Fixed missing italics formatting inText::OpenplanetFormatCodes
  • Fixed performance of json (de)serialization
  • Fixed performance of string allocations when there is a large amount of data involved
  • Fixed crash when trying to add null to a json array

1.26.23for Trackmania

default10 months ago

DownloadPermalink
  • Game version data for 2024-04-30
  • RefactoredNet::Socket:
    • Added documentation
    • AddedIsHungUp()
    • AddedReadBuffer(n)
    • AddedWriteLine(str)
    • AddedReadString() to complementWrite(v) with string
    • Fixed double capture inWrite(v) with string
    • DeprecatedCanRead() andCanWrite() in favor ofAvailable() andIsReady()
    • Increased default send and receive buffer size
  • Moved global functionsStripFormatCodes,StripNonColorFormatCodes, andColoredString to theText namespace, and renamedColoredString toOpenplanetFormatCodes
  • AddedText::StripOpenplanetFormatCodes
  • Addedyield(n) overload to yield for a specific number of frames
  • AddedText::EncodeHex(),Text::DecodeHex(),MemoryBuffer::WriteFromHex(),MemoryBuffer::ReadToHex()
  • Added more accurate formatting codes in UI - also switches\$tXX to\$jXX
  • Added support for italics formatting using\\$i
  • Added warning about low script timeout values
  • Added option to start Openplanet with the currently selected competition profile
  • Added a settings save trigger when a plugin is toggled on or off
  • Added documentation flags fordeprecated andinternal entities
  • Added WINE preprocessor flag (WINDOWS_WINE)
  • Numbers inJson::Value are now kept in memory as strings and only parsed to the desired type on demand - this allows for accurate number parsing regardless of type
  • Script hooks are now plugin resources and will automatically unhook when leaked
  • Fixed missing cursor advance onMemoryBuffer::ReadBuffer
  • FixedIO::Move not blocking until it has fully completed
  • FixedCtrl+R andCtrl+Shift+R not being disabled when UI wants to capture input
  • Fixed shift & ctrl getting stuck in shortcuts when window loses focus
  • Fixed keeping a lock on folders when building plugins
  • Fixed missing execution context on plugin unload
  • Fixed+ inDEPENDENCY_* preprocessor flags (they are now replaced with_)
  • Fixed "Remove from scene" in scene explorer causing an ImGui assertion
  • Removed deprecatedCSystemFidFile functionsPreload,Extract, andGetFullPath (they have moved to theFids namespace)
  • Updated ImGui
    • AddedUI::Separator with flags andUI::SeparatorText
    • AddedUI::InputTextFlags::EscapeClearsAll
    • UpdatedUI::TreeNodeFlags
    • UpdatedUI::BeginChild to include a parameter forUI::ChildFlags
  • Updated Angelscript

1.26.19for Trackmania

default11 months ago

DownloadPermalink
  • Fixed warnings of external references on shutdown

[8]ページ先頭

©2009-2025 Movatter.jp