Skip to content

Commit f78713f

Browse files
🧹 Minor cleanup (#28)
1 parent a1510a6 commit f78713f

9 files changed

Lines changed: 62 additions & 41 deletions

File tree

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# These are supported funding model platforms
22

33
github: [roniemartinez]
4-
custom: ["https://www.buymeacoffee.com/roniemartinez"]

.gitignore

Lines changed: 55 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,55 @@
1-
QPsdPlugin.pro.user
2-
Release/*
3-
Debug/*
4-
Profile/*
5-
build*
6-
CMakeUserPaths.cmake
1+
### Qt template
2+
# C++ objects and libs
3+
*.slo
4+
*.lo
5+
*.o
6+
*.a
7+
*.la
8+
*.lai
9+
*.so
10+
*.so.*
11+
*.dll
12+
*.dylib
13+
14+
# Qt-es
15+
object_script.*.Release
16+
object_script.*.Debug
17+
*_plugin_import.cpp
18+
/.qmake.cache
19+
/.qmake.stash
20+
*.pro.user
21+
*.pro.user.*
22+
*.qbs.user
23+
*.qbs.user.*
24+
*.moc
25+
moc_*.cpp
26+
moc_*.h
27+
qrc_*.cpp
28+
ui_*.h
29+
*.qmlc
30+
*.jsc
31+
Makefile*
32+
*build-*
33+
*.qm
34+
*.prl
35+
36+
# Qt unit tests
37+
target_wrapper.*
38+
39+
# QtCreator
40+
*.autosave
41+
42+
# QtCreator Qml
43+
*.qmlproject.user
44+
*.qmlproject.user.*
45+
46+
# QtCreator CMake
47+
CMakeLists.txt.user*
48+
49+
# QtCreator 4.8< compilation database
50+
compile_commands.json
51+
52+
# QtCreator local machine specific files for imported projects
53+
*creator.user*
54+
55+
*_qmlcache.qrc

CHANGELOG.md

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ PSD (Photoshop Document) & PSB (Photoshop Big) Plugin for Qt/C++ (Qt4/Qt5)
55
This project is based on the [Adobe Photoshop File Formats Specification](http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/PhotoshopFileFormats.htm)
66

77
## Support
8-
If you like `libqpsd` or if it is useful to you, show your support by buying me a coffee.
8+
If you like `libqpsd` or if it is useful to you, show your support by sponsoring my projects.
99

10-
<a href="https://www.buymeacoffee.com/roniemartinez" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
10+
[![Github Sponsors](https://img.shields.io/github/sponsors/roniemartinez?label=github%20sponsors&logo=github%20sponsors&style=for-the-badge)](https://github.com/sponsors/roniemartinez)
1111

1212
## FEATURES
1313

qpsdhandler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012-2020 Ronie Martinez (ronmarti18@gmail.com)
2+
Copyright (c) 2012 Ronie Martinez (ronmarti18@gmail.com)
33
All rights reserved.
44
55
This library is free software; you can redistribute it and/or

qpsdhandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012-2020 Ronie Martinez (ronmarti18@gmail.com)
2+
Copyright (c) 2012 Ronie Martinez (ronmarti18@gmail.com)
33
All rights reserved.
44
55
This library is free software; you can redistribute it and/or

qpsdhandler_p.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012-2020 Ronie Martinez (ronmarti18@gmail.com)
2+
Copyright (c) 2012 Ronie Martinez (ronmarti18@gmail.com)
33
All rights reserved.
44
55
This library is free software; you can redistribute it and/or

qpsdplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012-2020 Ronie Martinez (ronmarti18@gmail.com)
2+
Copyright (c) 2012 Ronie Martinez (ronmarti18@gmail.com)
33
All rights reserved.
44
55
This library is free software; you can redistribute it and/or

qpsdplugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012-2020 Ronie Martinez (ronmarti18@gmail.com)
2+
Copyright (c) 2012 Ronie Martinez (ronmarti18@gmail.com)
33
All rights reserved.
44
55
This library is free software; you can redistribute it and/or

0 commit comments

Comments
 (0)