Skip to content

Commit 7217b89

Browse files
Initial commit
0 parents  commit 7217b89

19 files changed

+8225
-0
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Thumbs.db
2+
3+
# C++ objects and libs
4+
*.slo
5+
*.lo
6+
*.o
7+
*.a
8+
*.la
9+
*.lai
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+
34+
# Qt unit tests
35+
target_wrapper.*
36+
37+
# QtCreator
38+
*.autosave
39+
40+
# QtCtreator Qml
41+
*.qmlproject.user
42+
*.qmlproject.user.*
43+
44+
# QtCtreator CMake
45+
CMakeLists.txt.user*
46+

LICENSE.md

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

redshiftqt/RedShiftQt.pro

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#-------------------------------------------------
2+
#
3+
# Project created by QtCreator 2015-12-19T21:15:05
4+
#
5+
#-------------------------------------------------
6+
7+
QT += core gui
8+
9+
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10+
11+
TARGET = RedShiftQt
12+
TEMPLATE = app
13+
14+
15+
SOURCES += \
16+
main.cpp \
17+
redshiftqttray.cpp \
18+
redshiftqtlog.cpp \
19+
redshiftqtprefs.cpp
20+
21+
HEADERS += \
22+
redshiftqt.h \
23+
redshiftqttray.h \
24+
redshiftqtlog.h
25+
26+
FORMS += \
27+
redshiftqt.ui \
28+
redshiftqtlog.ui
29+
30+
RESOURCES += \
31+
redshiftqt.qrc
32+
33+
RC_FILE += \
34+
redshiftqt.rc
35+
36+
DISTFILES +=

0 commit comments

Comments
 (0)