Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.36 - autoclosed #73

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
KinsonDigital.Velaptor 1.0.0-preview.32 -> 1.0.0-preview.36 age adoption passing confidence

Release Notes

KinsonDigital/Velaptor (KinsonDigital.Velaptor)

v1.0.0-preview.36: 🚀Preview Release - v1.0.0-preview.36

Velaptor Preview Release Notes - v1.0.0-preview.36

Quick Reminder

As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼

Bug Fixes 🐛

  1. #​959 - Fixed an issue where unloading content would be invoked more than once.

Dependency Updates 📦

  1. #​958 - Updated dependency xunit to v2.8.0
  2. #​958 - Updated dependency xunit.runner.visualstudio to v2.8.0
  3. #​956 - Updated dependency simpleinjector to v5.4.5
  4. #​953 - Updated dependency silk.net.opengl.extensions.imgui to v2.21.0
  5. #​952 - Updated dependency silk.net to v2.21.0
  6. #​951 - Updated actions/checkout action to v4.1.4

Other 🪧

  1. #​872 - Refactored moq code to nsubstitute.
  2. #​103 - Moved OpenGL error callback code.

    Thank you @​AndreBonda!!

v1.0.0-preview.35: 🚀Preview Release - v1.0.0-preview.35

Velaptor Preview Release Notes - v1.0.0-preview.35

Quick Reminder

As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼

New Features ✨

  1. #​934 - Added a new enum named AudioBuffer for choosing audio buffer types.
  2. #​934 - Added a new property with the name BufferType to the IAudio interface and Audio class.
    • This is used to know what type of buffering is being used for the audio. This is a new feature that comes from CASL v1.0.0-preview.18.
  3. #​934 - Added a new Load(string atlasPathOrName) method to the ILoader<IAtlasDta> interface for loading texture atlas data.
  4. #​934 - Added a new Load(string audioPathOrName, AudioBuffer bufferType) method to the ILoader<IAudio> interface for loading audio.
  5. #​934 - Added a new Load(string texturePathOrName) method to the ILoader<ITexture> interface for loading textures.

Bug Fixes 🐛

  1. #​882 - Fixed the following bugs:
    • Fixed a bug where invoking the ImageData.FlipHorizontally() method would throw a null reference exception when an instance of ImageData struct was created via a default constructor or the default keyword.
    • Fixed a bug where invoking the ImageData.FlipVertically() method would throw a null reference exception when an instance of ImageData struct was created via a default constructor or the default keyword.

Breaking Changes 🧨

  1. #​947 - 1. Removed the following constructors from the Texture class:

    • Removed constructor with the signature Texture(string name, ImageData imageData).
    • Removed constructor with the signature Texture(string name, string filePath).
  2. #​933 - Removed the deprecated controls UI API.

  3. #​882 - Removed the width and height ctor params from the ImageData struct.

    • The dimensions are now internally pulled from the pixels parameter.
  4. #​938 - Removed the following constructors in the content API.

    • Removed the AtlasLoader class from public to internal.
    • Removed the TextureLoader class from public to internal.
    • Removed the AudioLoader class from public to internal.
    • Removed the FontLoader class from public to internal.
    • Removed the AtlasData class constructor from public to internal.
  5. #​934 - Introduced the following breaking changes related to CASL audio API updates.

    • Renamed the ISound interface to IAudio.
    • Renamed the Sound class to Audio.
    • Changed the data type of the Position and Length properties to TimeSpan.
    • Replaced the State property from the ISound interface and Sound class with the following bool properties to represent the state of the audio.
      • IsPlaying
      • IsPaused
      • IsStopped
      • The State property was removed due to the unintentional exposure of the CASL API.
    • Removed the Reset() method from the ISound interface and Sound class. This method was performing the same operation as the Stop() method.
    • Removed the public constructor from the Sound class.
      • This was done to force users to use the content loader system.
    • Refactored the name of the LoadSoundException to LoadAudioException.
    • Refactored the name of the SoundLoader class to AudioLoader.
    • Refactored the name of the PathResolverFactory.CreateSoundPathResolver() method to PathResolverFactory.CreateAudioPathResolver().
    • Refactored the name of the ContentLoaderFactory.CreateSoundLoader() method to ContentLoaderFactory.CreateAudioLoader().
    • The default name of the content folder Sound which is where audio content is located has been changed to Audio.
    • Refactored the ILoader<IAudio>.Unload() method parameter named sound to audio.

Dependency Updates 📦

  1. #​946 - Updated dependency freetypesharp to v3.0.0
  2. #​942 - Updated dependency xunit to v2.7.1
  3. #​942 - Updated dependency xunit.runner.visualstudio to v2.5.8
  4. #​940 - Updated dependency sixlabors.imagesharp to v3.1.4
  5. #​936 - Updated dependency CASL to v1.0.0-preview.19
  6. #​932 - Updated dependency KinsonDigital.Carbonate to v1.0.0-preview.18
  7. #​929 - Updated dependency system.io.abstractions to v21.0.0
  8. #​928 - Updated dependency freetypesharp to v2.0.0
  9. #​927 - Updated dependency coverlet.msbuild to v6.0.2
  10. #​926 - Updated dependency coverlet.collector to v6.0.2

Other 🪧

  1. #​924 - Removed reporator badge.
  2. #​909 - Updated demo video link.
  3. #​897 - Updated animation scene.
  4. #​881,#​868 - Refactored moq code to nsubstitute.

    Thank you @​AndreBonda!!

  5. #​783 - Replaced custom guards.

    Thank you @​thestbar!!

v1.0.0-preview.34: 🚀Preview Release - v1.0.0-preview.34

Velaptor Preview Release Notes - v1.0.0-preview.34

Quick Reminder

As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼

Dependency Updates 📦

  1. #​921 - Updated SixLabors.ImageSharp to v3.1.3
  2. #​922 - Updated dependency coverlet.msbuild to v6.0.1
  3. #​920 - Updated dependency coverlet.collector to v6.0.1
  4. #​919 - Updated dependency xunit to v2.7.0
  5. #​919 - Updated dependency xunit.runner.visualstudio to v2.5.7
  6. #​918 - Updated dependency nsubstitute.analyzers.csharp to v1.0.17
  7. #​917 - Updated dependency avalonia.themes.fluent to v11.0.10
  8. #​916 - Updated dependency avalonia.fonts.inter to v11.0.10
  9. #​915 - Updated dependency avalonia.diagnostics to v11.0.10
  10. #​914 - Updated dependency avalonia.desktop to v11.0.10
  11. #​913 - Updated dependency avalonia to v11.0.10
  12. #​912 - Updated dependency microsoft.net.test.sdk to v17.9.0

v1.0.0-preview.33: 🚀Preview Release - v1.0.0-preview.33

Velaptor Preview Release Notes - v1.0.0-preview.33

Quick Reminder

As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼

Bug Fixes 🐛

  1. #​903 - Fixed a bug where the batching system would throw an exception when the draw calls exceed more than 1000.

    Thank you @​softwareantics for discovering and reporting this issue!!

  2. #​902 - Fixed a bug where the WindowCenter and WindowSize properties for scenes are not set after instantiation but before internal initialization.

    Thank you @​softwareantics for discovering and reporting this issue!!

  3. #​902 - Fixed rendering text bug.

    Thank you @​softwareantics for discovering and reporting this issue!!

Dependency Updates 📦

  1. #​895 - Updated system.io.abstractions to v20.0.15
  2. #​894 - Updated actions/cache action to v4
  3. #​893 - Updated avalonia.themes.fluent to v11.0.7
  4. #​892 - Updated avalonia.fonts.inter to v11.0.7
  5. #​891 - Updated avalonia.diagnostics to v11.0.7
  6. #​889 - Updated avalonia.desktop to v11.0.7
  7. #​888 - Updated avalonia to v11.0.7
  8. #​887 - Updated kinsondigital/infrastructure action to v13.6.3

Other 🪧

  1. #​890 - Updated readme.
  2. #​883 - Refactored moq code to nsubstitute code.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the 📦dependency-update Dependency update with required code changes label Feb 1, 2024
@renovate renovate bot force-pushed the renovate/kinsondigital.velaptor-1.x branch from e542aa0 to 54c7f80 Compare March 8, 2024 01:44
@renovate renovate bot changed the title chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.33 chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.34 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/kinsondigital.velaptor-1.x branch from 54c7f80 to d8abc3c Compare April 20, 2024 10:13
@renovate renovate bot changed the title chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.34 chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.35 Apr 20, 2024
…ew.36

| datasource | package                | from             | to               |
| ---------- | ---------------------- | ---------------- | ---------------- |
| nuget      | KinsonDigital.Velaptor | 1.0.0-preview.32 | 1.0.0-preview.36 |
@renovate renovate bot force-pushed the renovate/kinsondigital.velaptor-1.x branch from d8abc3c to 52e3ab2 Compare May 5, 2024 09:59
@renovate renovate bot changed the title chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.35 chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.36 May 5, 2024
@renovate renovate bot changed the title chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.36 chore(deps): update dependency kinsondigital.velaptor to v1.0.0-preview.36 - autoclosed Jun 8, 2024
@renovate renovate bot closed this Jun 8, 2024
@renovate renovate bot deleted the renovate/kinsondigital.velaptor-1.x branch June 8, 2024 10:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦dependency-update Dependency update with required code changes
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

0 participants