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

[Draft] Enh/image suggestions backend #702

Closed
wants to merge 43 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c69e125
Replaced array_key_exists with isset
tacruc May 22, 2020
c99065d
CHG: Tweak nominatim results to get exact building
koying Dec 28, 2020
558c53f
Pull Pel version 0.9.10
umgfoin Jan 30, 2022
d0306ae
App-metadata: Reference PHP 7.4-8.0 requirements in info.xml
umgfoin Jan 31, 2022
34b47f9
Pull Pel version 0.9.11
umgfoin Feb 5, 2022
cb32a78
Replace use of IConfig with IMemcache to store the last address lookup
tcitworld Feb 14, 2022
9289bdc
Merge pull request #390 from nextcloud/remove-array_key_exists
tacruc Mar 14, 2022
2d631c2
Merge pull request #521 from koying/fine-tune-nominatim
tacruc Mar 14, 2022
7fc5cfa
Merge branch 'master' into replace-iconfig-with-memcache
tacruc Mar 14, 2022
4b94bf7
Merge pull request #688 from nextcloud/replace-iconfig-with-memcache
tacruc Mar 14, 2022
12d6ebc
Update info.xml
umgfoin Mar 14, 2022
f05e4bc
[tx-robot] updated from transifex
nextcloud-bot Mar 15, 2022
b684c9c
Merge pull request #683 from umgfoin/PHP8.x
tacruc Mar 15, 2022
d7f91fa
[tx-robot] updated from transifex
nextcloud-bot Mar 16, 2022
31c3fc5
[tx-robot] updated from transifex
nextcloud-bot Mar 17, 2022
b0efd13
[tx-robot] updated from transifex
nextcloud-bot Mar 18, 2022
d346bbb
[tx-robot] updated from transifex
nextcloud-bot Mar 19, 2022
4728b6d
[tx-robot] updated from transifex
nextcloud-bot Mar 20, 2022
5d8437c
Included @nextcloud/event-bus": "^2.1.1
tacruc Mar 20, 2022
a557260
Disabled Files Sidebar Tab, Notworking anyways
tacruc Mar 20, 2022
1b637c6
Make the Viewer aware of maps sidebar
tacruc Mar 20, 2022
ffde2f7
Make sidebar fullscreen, when viewer is opened
tacruc Mar 20, 2022
a111448
Dummy PhotoSidebarTab
tacruc Mar 21, 2022
b7ee4b9
[tx-robot] updated from transifex
nextcloud-bot Mar 21, 2022
2ec2852
Nicer photo sidebar
tacruc Mar 21, 2022
c0e52ce
Improve default Sidebar
tacruc Mar 21, 2022
176c64e
Show favorits sidebar Icon in compact
tacruc Mar 21, 2022
c853edb
Add getPhotoSuggestions network method
tacruc Mar 21, 2022
a252cf3
Add Suggest photo locations to AppNavigationPhotosItem
tacruc Mar 21, 2022
b9977e4
Load photo Suggestions when navigation icon is clicked
tacruc Mar 21, 2022
c0dccff
Created PhotoSuggestionsSidebar and network interactions
tacruc Mar 21, 2022
fa1da72
Changed photoSuggestionsSelected to photoSuggestionsSelectedIndices
tacruc Mar 21, 2022
8a9695f
Show Photos Suggestions on map
tacruc Mar 21, 2022
13c9951
Mouse interactions with map Markers and Clusters
tacruc Mar 21, 2022
c67d786
[tx-robot] updated from transifex
nextcloud-bot Mar 22, 2022
e6ff2e2
[tx-robot] updated from transifex
nextcloud-bot Mar 23, 2022
fd78ee7
Migrated to new App Bootstrap
tacruc Mar 23, 2022
444e232
Merge branch 'Bootstrap' into enh/image-suggestions-with-backend
tacruc Mar 23, 2022
bda3b57
Updated composer.lock
tacruc Mar 23, 2022
7350303
Set APPID
tacruc Mar 23, 2022
3fb0028
Added Option to scan photos now
tacruc Mar 23, 2022
00842d7
Fixes minor issues in Metadata extraction
tacruc Mar 23, 2022
cea6e24
Don't loose Exif timestamp if location is invalid
tacruc Mar 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 0 additions & 71 deletions appinfo/app.php

This file was deleted.

1 change: 1 addition & 0 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<dependencies>
<lib>exif</lib>
<nextcloud min-version="20" max-version="24"/>
<php min-version="7.3" max-version="8.0"/>
</dependencies>
<repair-steps>
<install>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"lsolesen/pel": "^0.9.6"
"lsolesen/pel": "^0.9.11"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^0.9.1"
Expand Down
Loading