Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit c4489d8

Browse files
committed
20191018 - This is 1.7.0 - Changes affect #128 #127 #126 #125 #124 #123 #122 #121
1 parent b21339a commit c4489d8

File tree

7 files changed

+222
-209
lines changed

7 files changed

+222
-209
lines changed

README.md

+3-26
Original file line numberDiff line numberDiff line change
@@ -47,31 +47,7 @@ It is:
4747

4848
## services
4949
While ttth supports a growing list of pre-configured services, you can as well add custom urls yourself (using the CUSTOM URL type).
50-
The following services are currently supported:
51-
52-
* Discord
53-
* Dropbox
54-
* Freenode
55-
* GitHub
56-
* Google Calendar
57-
* Google Contacts
58-
* Google Drive
59-
* Google Keep
60-
* Google Mail
61-
* Google Messages
62-
* Google Photos
63-
* LinkedIn
64-
* Mattermost
65-
* Messenger
66-
* Nextcloud
67-
* Riot.im
68-
* Skype
69-
* Slack
70-
* Telegram
71-
* Threema
72-
* Twitter
73-
* WhatsApp
74-
* Xing
50+
Please see the supported [services](docs/SERVICES.md) for more details.
7551

7652

7753
## ui
@@ -128,8 +104,9 @@ Please see the [installation instructions](docs/INSTALL.md) for more details.
128104
* ttth is not tracking it's users (not using Google Analytics nor using other methods)
129105
* All data is stored locally only.
130106
* Sessions will persist using the [partition:persist](https://electronjs.org/docs/api/webview-tag#partition) attribute for electrons webview.
107+
* ttth is using [sentry](https://sentry.io) to collect error reports. This helps heavily finding bugs which might occur only in some specific use-cases. Please see the [sentry privacy policy](https://sentry.io/privacy/) for more details.
131108

132-
You are always welcome to check the code.
109+
You are always welcome to check and even improve the code.
133110

134111

135112
## faq

app/configWindow.html

+6-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
88

9-
109
<!-- Remote: jquery -->
1110
<!-- 3.4.1 -->
1211
<script
@@ -15,7 +14,6 @@
1514
crossorigin="anonymous">
1615
</script>
1716

18-
1917
<!-- Remote: bootstrap -->
2018
<!-- 4.3.1 -->
2119
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
@@ -29,22 +27,19 @@
2927
<!-- 5.11.2 -->
3028
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/js/all.min.js"></script>
3129

32-
33-
<!-- Local: noty -->
34-
<!-- 3.2.0-beta -->
35-
<link rel="stylesheet" href="lib/noty/3.2.0-beta/noty.css" >
36-
<link rel="stylesheet" href="lib/noty/3.2.0-beta/themes/bootstrap-v4.css">
37-
<script type="text/javascript" src="lib/noty/3.2.0-beta/noty.min.js" async></script>
38-
30+
<!-- noty -->
31+
<link rel="stylesheet" href="../node_modules/noty/lib/noty.css" >
32+
<link rel="stylesheet" href="../node_modules/noty/lib/themes/bootstrap-v4.css">
33+
<script type="text/javascript" src="../node_modules/noty/lib/noty.min.js" async></script>
3934

4035
<!-- local: ttth -->
4136
<link rel="stylesheet" href="css/ttth/general.css" >
4237
<link rel="stylesheet" href="css/ttth/configWindow.css">
43-
<link rel="stylesheet" href="css/ttth/ttth/mainWindow_default.css">
38+
<link rel="stylesheet" href="css/ttth/themes/mainWindow_default.css"> <!-- themes arent dynamicly changed on configWindow -->
4439
<script type="text/javascript" src="js/ttth/ttth.js" async></script>
4540
</head>
46-
<body>
4741

42+
<body>
4843
<!-- navbar -->
4944
<nav class="navbar navbar-expand-sm bg-dark navbar-dark ttth_nonSelectableText">
5045
<!-- Links -->

app/css/ttth/mainWindow.css

+15-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ html,body
1515

1616
color: var(--color-bodyText);
1717
background-color: var(--color-bodyBackground);
18-
1918
}
2019

2120

@@ -25,7 +24,7 @@ html,body
2524
.titlebar, .titlebar > * {
2625
/* font-family: Roboto, sans-serif; */
2726
/*font-family: caption; */
28-
font-family: "Arial;
27+
font-family: Arial;
2928
/* font-size: 20px; */
3029
}
3130

@@ -94,15 +93,19 @@ ul
9493
background-color: var(--color-bodyBackground);
9594
}
9695

96+
9797
.fuya
9898
{
9999
padding-left: 0px !important;
100100
/* padding-right: 0px !important; */
101+
101102
}
102103

103104
.flex-fill
104105
{
105106
flex:1 1 auto;
107+
108+
106109
}
107110

108111
.ttth_resizer
@@ -112,6 +115,8 @@ ul
112115

113116
padding-left: 0 !important;
114117
/* padding-right: 0 !important; */
118+
119+
115120
}
116121

117122
.row
@@ -123,6 +128,14 @@ ul
123128

124129

125130

131+
.settingsTabBody{
132+
/* border for borderless-window/content */
133+
border-left: 1px solid var(--color-inputFormsBorder) !important;
134+
border-right: 1px solid var(--color-inputFormsBorder) !important;
135+
border-bottom: 1px solid var(--color-inputFormsBorder) !important;
136+
}
137+
138+
126139
/* ########################################################################## */
127140
/* SETTINGS
128141
/* ########################################################################## */

0 commit comments

Comments
 (0)