Skip to content

Commit 45dd621

Browse files
authored
Merge pull request #1119 from nextcloud/feat/tiled_layout
Introduce tiled layout in the timeline
2 parents dd81456 + 223172b commit 45dd621

128 files changed

Lines changed: 210980 additions & 13136 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

jest.config.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* @copyright Copyright (c) 2022 Louis Chmn <louis@chmn.me>
3+
*
4+
* @author Louis Chmn <louis@chmn.me>
5+
*
6+
* @license GNU AGPL version 3 or any later version
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Affero General Public License as
10+
* published by the Free Software Foundation, either version 3 of the
11+
* License, or (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Affero General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Affero General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
*
21+
*/
22+
23+
// TODO: find a way to consolidate this in one place, with webpack.common.js
24+
25+
module.exports = {
26+
testEnvironment: 'jsdom',
27+
moduleFileExtensions: [
28+
'js',
29+
'vue',
30+
],
31+
transform: {
32+
".*\\.(js)$": "babel-jest",
33+
"^.+\\.vue$": "vue-jest"
34+
}
35+
}

js/photos-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-main.js.LICENSE.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,14 @@
5050
* Copyright (c) 2016 Jorik Tangelder;
5151
* Licensed under the MIT license */
5252

53+
/*! http://mths.be/base64 v0.1.0 by @mathias | MIT license */
54+
55+
/*! https://mths.be/he v1.2.0 by @mathias | MIT license */
56+
5357
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
5458

59+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
60+
5561
/**
5662
* @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
5763
*
@@ -96,6 +102,14 @@
96102
*
97103
*/
98104

105+
/**
106+
* @license nested-property https://github.com/cosmosio/nested-property
107+
*
108+
* The MIT License (MIT)
109+
*
110+
* Copyright (c) 2014-2020 Olivier Scherrer <pode.fr@gmail.com>
111+
*/
112+
99113
/**!
100114
* @fileOverview Kickass library to create and place poppers near their reference elements.
101115
* @version 1.16.1
@@ -120,3 +134,15 @@
120134
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
121135
* SOFTWARE.
122136
*/
137+
138+
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
139+
140+
//! license : MIT
141+
142+
//! moment.js
143+
144+
//! moment.js locale configuration
145+
146+
//! momentjs.com
147+
148+
//! version : 2.29.3

js/photos-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)