File tree 6 files changed +13
-5
lines changed
6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
APP_NAME = littr
6
- APP_VERSION = 0.39.28
6
+ APP_VERSION = 0.40.0
7
7
GOLANG_VERSION = 1.23
Original file line number Diff line number Diff line change @@ -171,10 +171,13 @@ Successfully copied 3.07kB to /home/user/littr/run_data/
171
171
+ write integration and e2e tests
172
172
+ [ ...]
173
173
174
+ ### roadmap to v0.41
175
+ + user activation via mail
176
+
174
177
### roadmap to v0.40
175
178
+ ~~ convert GIFs to WebPs~~
176
179
+ ~~ e-mail duplicity check for registration~~
177
- + user activation via mail
180
+ + ~~ introduce the hideReplies feature ~~
178
181
179
182
### roadmap to v0.39
180
183
+ ~~ fix avatar image uploading, resizing and cropping~~
Original file line number Diff line number Diff line change 13
13
"name" : " MIT" ,
14
14
"url" : " https://github.com/krustowski/littr/blob/master/LICENSE"
15
15
},
16
- "version" : " 0.39.28 "
16
+ "version" : " 0.40.0 "
17
17
},
18
18
"host" : " www.littr.eu" ,
19
19
"basePath" : " /api/v1" ,
Original file line number Diff line number Diff line change @@ -96,7 +96,8 @@ func initServer() {
96
96
97
97
// load up data from local dumps (/opt/data/)
98
98
// TODO: catch an error there!
99
- db .LoadAll ()
99
+ loadReport := db .LoadAll ()
100
+ l .Println (loadReport , http .StatusOK )
100
101
101
102
l .Println ("dumped data loaded" , http .StatusOK )
102
103
@@ -156,12 +157,14 @@ func initServer() {
156
157
},
157
158
AutoUpdateInterval : time .Minute * 1 ,
158
159
Icon : app.Icon {
160
+ //Maskable: "/web/android-chrome-192x192.png",
159
161
Default : "/web/android-chrome-192x192.png" ,
160
162
SVG : "/web/android-chrome-512x512.svg" ,
161
163
Large : "/web/android-chrome-512x512.png" ,
162
164
AppleTouch : "/web/apple-touch-icon.png" ,
163
165
},
164
166
Image : "/web/android-chrome-512x512.svg" ,
167
+ //Domain: "www.littr.eu",
165
168
Body : func () app.HTMLBody {
166
169
return app .Body ().Class ("dark" )
167
170
},
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ var UserDeletionList []string = []string{
52
52
"passphrase" ,
53
53
"user" ,
54
54
"nickname" ,
55
+ "test" ,
56
+ "tester" ,
55
57
}
56
58
57
59
// This array is used in a procedure's loop to manually unshade listed users.
Original file line number Diff line number Diff line change 1
1
// @title littr
2
- // @version 0.39.28
2
+ // @version 0.40.0
3
3
// @description a simple nanoblogging platform as PWA built on go-app framework
4
4
// @termsOfService https://littr.eu/tos
5
5
You can’t perform that action at this time.
0 commit comments