[PR #35] [MERGED] PhotoFrame sample application #180

Closed
opened 2026-05-05 11:20:18 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qmlnet/qmlnet/pull/35
Author: @devmil
Created: 7/23/2018
Status: Merged
Merged: 7/25/2018
Merged by: @pauldotknopf

Base: masterHead: samples/PhotoFrame


📝 Commits (5)

  • aba01a4 PhotoFrame sample application
  • 6bd9f6d Switched from relative path to absolute path main.qml reference
  • 92bf74c Merge branch 'master' into samples/PhotoFrame
  • ed60718 Merge branch 'master' into samples/PhotoFrame
  • db38f1f Updating Qml.Net

📊 Changes

69 files changed (+2652 additions, -0 deletions)

View changed files

samples/PhotoFrame/.gitignore (+8 -0)
samples/PhotoFrame/ImagePool/abandoned-forest-industry-34950.jpg (+0 -0)
samples/PhotoFrame/ImagePool/agriculture-apple-blur-257840.jpg (+0 -0)
samples/PhotoFrame/ImagePool/animal-animal-photography-big-cat-145939.jpg (+0 -0)
samples/PhotoFrame/ImagePool/art-ball-ball-shaped-235615.jpg (+0 -0)
samples/PhotoFrame/ImagePool/beautiful-bird-s-eye-view-boats-1039302.jpg (+0 -0)
samples/PhotoFrame/ImagePool/clouds-cloudy-countryside-236047.jpg (+0 -0)
samples/PhotoFrame/ImagePool/mobilechallenge-4k-wallpaper-close-up-807598.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.App/PhotoFrame.App.csproj (+12 -0)
samples/PhotoFrame/PhotoFrame.App/Program.cs (+69 -0)
samples/PhotoFrame/PhotoFrame.App/Properties/launchSettings.json (+9 -0)
samples/PhotoFrame/PhotoFrame.App/nuget.config (+8 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/PhotoDatabaseTest.cs (+140 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/abandoned-forest-industry-34950.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/agriculture-apple-blur-257840.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/animal-animal-photography-big-cat-145939.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/art-ball-ball-shaped-235615.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/beautiful-bird-s-eye-view-boats-1039302.jpg (+0 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/PhotoFrame.Logic.Tests.csproj (+55 -0)
samples/PhotoFrame/PhotoFrame.Logic.Tests/UI/ViewModels/ViewModelBaseTest.cs (+100 -0)

...and 49 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qmlnet/qmlnet/pull/35 **Author:** [@devmil](https://github.com/devmil) **Created:** 7/23/2018 **Status:** ✅ Merged **Merged:** 7/25/2018 **Merged by:** [@pauldotknopf](https://github.com/pauldotknopf) **Base:** `master` ← **Head:** `samples/PhotoFrame` --- ### 📝 Commits (5) - [`aba01a4`](https://github.com/qmlnet/qmlnet/commit/aba01a4d2051a1f82598be85bbc3ef3dc6903357) PhotoFrame sample application - [`6bd9f6d`](https://github.com/qmlnet/qmlnet/commit/6bd9f6d8ffe02fcfdefb223b76afa7efa011ab19) Switched from relative path to absolute path main.qml reference - [`92bf74c`](https://github.com/qmlnet/qmlnet/commit/92bf74c3a15e2a5e10d9fa4ea4109fe072e0a935) Merge branch 'master' into samples/PhotoFrame - [`ed60718`](https://github.com/qmlnet/qmlnet/commit/ed60718b759fad94aa036c937ea25949981fa8ef) Merge branch 'master' into samples/PhotoFrame - [`db38f1f`](https://github.com/qmlnet/qmlnet/commit/db38f1fa2b7366406cf445bb8308592d01f02df1) Updating Qml.Net ### 📊 Changes **69 files changed** (+2652 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `samples/PhotoFrame/.gitignore` (+8 -0) ➕ `samples/PhotoFrame/ImagePool/abandoned-forest-industry-34950.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/agriculture-apple-blur-257840.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/animal-animal-photography-big-cat-145939.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/art-ball-ball-shaped-235615.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/beautiful-bird-s-eye-view-boats-1039302.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/clouds-cloudy-countryside-236047.jpg` (+0 -0) ➕ `samples/PhotoFrame/ImagePool/mobilechallenge-4k-wallpaper-close-up-807598.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.App/PhotoFrame.App.csproj` (+12 -0) ➕ `samples/PhotoFrame/PhotoFrame.App/Program.cs` (+69 -0) ➕ `samples/PhotoFrame/PhotoFrame.App/Properties/launchSettings.json` (+9 -0) ➕ `samples/PhotoFrame/PhotoFrame.App/nuget.config` (+8 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/PhotoDatabaseTest.cs` (+140 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/abandoned-forest-industry-34950.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/agriculture-apple-blur-257840.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/animal-animal-photography-big-cat-145939.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/art-ball-ball-shaped-235615.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/BL/testphotos/beautiful-bird-s-eye-view-boats-1039302.jpg` (+0 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/PhotoFrame.Logic.Tests.csproj` (+55 -0) ➕ `samples/PhotoFrame/PhotoFrame.Logic.Tests/UI/ViewModels/ViewModelBaseTest.cs` (+100 -0) _...and 49 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 11:20:18 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/qmlnet#180
No description provided.