Skip to content

Commit 86584b1

Browse files
authored
1.2.1-alpha relese merge (SkalskiP#45)
1 parent 1f734db commit 86584b1

File tree

70 files changed

+692
-505
lines changed

Some content is hidden

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

70 files changed

+692
-505
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,17 @@ Our application is being actively developed. If you have an idea for a new funct
241241
- [ ] Integration with external storage - Amazon S3, Google Drive, Dropbox
242242
- [ ] Copy annotations from previous image into the next one
243243

244+
## Citation
245+
246+
```
247+
@MISC{make-sense,
248+
author = {Piotr Skalski},
249+
title = {{Make Sense}},
250+
howpublished = "\url{https://github.com/SkalskiP/make-sense/}",
251+
year = {2019},
252+
}
253+
```
254+
244255
## License
245256

246257
This project is licensed under the GPL-3.0 License - see the [LICENSE][2] file for details

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import './App.scss';
33
import EditorView from "./views/EditorView/EditorView";
44
import MainView from "./views/MainView/MainView";
5-
import {ProjectType} from "./data/ProjectType";
5+
import {ProjectType} from "./data/enums/ProjectType";
66
import {AppState} from "./store";
77
import {connect} from "react-redux";
88
import PopupView from "./views/PopupView/PopupView";

src/data/Direction.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/data/EditorData.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ export interface EditorData {
77
canvasSize: ISize,
88
activeImageScale: number,
99
activeImageRectOnCanvas: IRect,
10+
activeKeyCombo: string[],
1011
event?: Event
1112
}

src/data/RectAnchor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import {AnchorType} from "./AnchorType";
21
import {IPoint} from "../interfaces/IPoint";
2+
import {Direction} from "./enums/Direction";
33

44
export interface RectAnchor {
5-
type: AnchorType,
5+
type: Direction,
66
position: IPoint
77
}
File renamed without changes.

src/data/Context.ts renamed to src/data/enums/ContextType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export enum Context {
1+
export enum ContextType {
22
EDITOR = "EDITOR",
33
LEFT_NAVBAR = "LEFT_NAVBAR",
44
RIGHT_NAVBAR = "RIGHT_NAVBAR",
File renamed without changes.

src/data/AnchorType.ts renamed to src/data/enums/Direction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export enum AnchorType {
1+
export enum Direction {
22
TOP = "TOP",
33
BOTTOM = "BOTTOM",
44
LEFT = "LEFT",
File renamed without changes.

0 commit comments

Comments
 (0)