-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
com.adilhanney.saber.metainfo.xml
1464 lines (1443 loc) · 81.9 KB
/
com.adilhanney.saber.metainfo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generator for metainfo & .desktop files:
https://www.freedesktop.org/software/appstream/metainfocreator/#/
-->
<component type="desktop-application">
<id>com.adilhanney.saber</id>
<name>Saber</name>
<summary>The notes app built for handwriting</summary>
<url type="homepage">https://github.com/saber-notes/saber</url>
<url type="bugtracker">https://github.com/saber-notes/saber/issues</url>
<url type="donation">https://github.com/sponsors/adil192</url>
<url type="translate">https://github.com/saber-notes/saber#translating</url>
<developer id="com.adilhanney">
<name>Adil Hanney</name>
</developer>
<branding>
<color type="primary" scheme_preference="light">#fffeac</color>
<color type="primary" scheme_preference="dark">#494900</color>
</branding>
<metadata_license>MIT</metadata_license>
<project_license>GPL-3.0-only</project_license>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
<control>tablet</control>
</supports>
<recommends>
<internet>always</internet>
</recommends>
<requires>
<display_length compare="ge">360</display_length>
</requires>
<provides>
<mediatype>application/sbn</mediatype>
<mediatype>application/json</mediatype>
<mediatype>text/*</mediatype>
<mediatype>application/sbn2</mediatype>
<mediatype>application/octet-stream</mediatype>
<mediatype>application/sba</mediatype>
<mediatype>application/zip</mediatype>
</provides>
<description>
<p>
Saber is the notes app built for handwriting.
</p>
<p>
It's designed to be as simple and intuitive as possible, while still delivering unique features that you'll actually use. Additionally, Saber is available across all your devices, large and small, and syncs between them seamlessly.
</p>
<p>
Notably, it can invert your notes when you're in dark mode. This allows you to write with white ink on a black background, which is much easier on the eyes in low-light environments like when the teacher turns off the lights in class.
Images and PDFs are also inverted, so you can still use a digital printout or a textbook without the fuss.
</p>
<p>
Saber uses a dual-password system to protect your notes from anyone but you, even if they have complete control over the server. You can safely store your notes on the official Saber server, another server, or even host your own!
</p>
<p>
The app is completely open-source so that anyone can view the source code and see exactly what it's doing and how it handles your data. Many other note-taking apps are closed-source and proprietary, meaning that their inner workings are a mystery to the public.
</p>
<p>
As someone who studies maths, highlighting multi-line equations was always a hassle with other apps, where the highlighter would change color when it overlapped with itself. Another problem I had was that in some apps, the highlighter would render on top of the text, fading it out and making it hard to read.
Saber's highlighter has no such issues. It utilizes canvas compositing to render the highlighter in a way that is consistent with/better than traditional paper, where it handles overlaps and maintains color consistency.
</p>
<p>
Saber has everything you need to keep your notes organized. Create folders inside folders inside folders to your heart's content with no limit on the number of nested folders. And even though a note may be buried deep within a nested folder, you can still access it easily with your most recent notes always available on the home screen.
</p>
<p>
Discover a whole new way to capture and organize your thoughts
with Saber. Whether you're a student, professional, or creative
mind, Saber is your trusted companion for digital handwriting.
Download now and let your ideas flow freely!
</p>
<p xml:lang="zh-Hant-TW">
Saber是一個專為手寫而生的筆記應用程式。
</p>
<p xml:lang="zh-Hant-TW">
它被設計得盡可能簡單和直觀,同時仍提供您實際會使用的獨特功能。此外,Saber可以在您所有的設備上使用,無論大小,並在它們之間無縫同步。
</p>
<p xml:lang="zh-Hant-TW">
值得注意的是,當您處於深色模式時,它可以反轉您的筆記。這使您可以在黑色背景上用白色墨水書寫,這在低光源環境下,例如老師在課堂上關燈時,對眼睛更加友好。圖片和PDF文件也會反轉,因此您仍然可以使用數位教科書而無需煩惱。
</p>
<p xml:lang="zh-Hant-TW">
Saber使用雙密碼系統來保護您的筆記,使其只能被您存取,即使有人對伺服器擁有完全控制權也是如此。您可以安全地將筆記存儲在官方的Saber伺服器上,或者是其他伺服器,甚至是自己搭建!
</p>
<p xml:lang="zh-Hant-TW">
本應用程式是完全開源的,任何人都可以查看原始碼,了解它的具體運作方式以及如何處理您的資料。許多其他筆記應用程式是閉源和專有的,這意味著它們的內部運作對公眾來說是一個謎。
</p>
<p xml:lang="zh-Hant-TW">
作為一名數學生,我在其他應用中經常遇到的問題之一是,使用其他應用時,突出顯示多行方程總是很麻煩,因為突出顯示在重疊時會改變顏色。我遇到的另一個問題是,在某些應用程式中,突出顯示會在文字上方渲染,將其淡化,使其難以閱讀。Saber的突出顯示沒有這些問題。它使用的畫布合成技術以一種優於傳統紙張相一致的方式呈現突出顯示,在處理重疊時保持顏色一致。
</p>
<p xml:lang="zh-Hant-TW">
Saber具有使筆記井井有條所需的一切功能。在無限嵌套的資料夾中創建資料夾,盡情發揮您的創意,而且對於嵌套資料夾的數量沒有限制。即使筆記可能深藏在嵌套的資料夾中,您仍然可以輕鬆存取,因為最近的筆記始終顯示在主螢幕上。
</p>
<p xml:lang="zh-Hant-TW">
透過Saber,發現一種全新的捕捉和組織思緒的方式。無論您是學生、專業人士還是具有創造力的思維者,Saber都是您在數位手寫中信賴的伙伴。立即下載,讓您的思想自由流暢!
</p>
<p xml:lang="cs">
Saber je aplikace pro psaní poznámek uzpůsobená pro ruční psaní.
</p>
<p xml:lang="cs">
Je navržena pro nejjednodušší a nejintuitivnější možné používání, přičemž stále nabízí unikátní funkce, které opravdu využijete. Navíc je Saber dostupný napříč všemi vašimi zařízeními, velkými i malými, mezi nimiž se bez povšimnutí synchronizuje.
</p>
<p xml:lang="cs">
Je na místě poznamenat, že umí invertovat vaše poznámky, pokud jste v temném módu. To vám umožňuje psát bílým inkoustem na černém pozadí, což je daleko příjemnější pro oči v prostředí s nedostatkem světla, jako když učitel ve třídě vypne osvětlení. Obrázky a PDF jsou také invertovány, takže stále můžete bez problému používat digitální výtisky nebo učebnice.
</p>
<p xml:lang="cs">
Saber používá systém dvou hesel, aby ochránil vaše poznámky před kýmkoliv kromě vás, i kdyby měl kompletní přístup k serveru. Můžete bezpečně ukládat své poznámky na oficiální server aplikace Saber, jiný server či dokonce pro tyto účely provozovat svůj vlastní server!
</p>
<p xml:lang="cs">
Aplikace má kompletně otevřené zdrojové kódy, takže si je každý může prohlédnout a přesně vidět, co aplikace dělá a jakým způsobem jsou zpracovává vaše data. Spousta dalších aplikací pro pořizování poznámek má uzavřené zdrojové kódy a je proprietární, což znamená, že co se děje uvnitř, je pro veřejnost záhadou.
</p>
<p xml:lang="cs">
Jako někdo, kdo studuje matematiku, mohu říct, že pro mě vždy bylo utrpení zvýrazňovat víceřádkové rovnice v jiných aplikacích, kde zvýrazňovač mění barvu po přetažení již zvýrazněné části. Další problém, který jsem měl v některých aplikacích, spočíval v tom, že se zvýrazňovač vykresloval nad textem, takže se text ztrácel a špatně se četl. Zvýrazňovač aplikace Saber těmito neduhy netrpí. Využívá kompozice plátna k vykreslování zvýrazňovače způsobem, který je konzistentní s tradičním papírem, ba možná i lepší, jelikož řeší překrývání a udržuje konzistenci barev.
</p>
<p xml:lang="cs">
Saber má vše, co potřebujete k tomu, abyste dokázali organizovat své poznámky. Tvořte složky uvnitř složek uvnitř složek, jak jen chcete bez omezení na počet zanořených složek. Ačkoliv může být poznámka pohřbena hluboko uvnitř vnořené složky, pořád k ní můžete jednoduše přistoupit, jelikož jsou nejnovější poznámky vždy k dispozici na domovské obrazovce.
</p>
<p xml:lang="cs">
Objevte zcela nový způsob zaznamenávání a organizace vašich myšlenek s aplikací Saber. Ať již jste student, profesionál nebo kreativní duše, Saber je vaším důvěryhodným společníkem pro digitální psaní. Stáhněte si jej nyní a nechte volně plynout své nápady!
</p>
<p xml:lang="ru">
Как разработчик Saber, я очень рад представить Вам приложение с революционным способом ведения заметок. Saber — это идеальное приложение для создания рукописных заметок, разработанное для того, чтобы поднять Ваши навыки ведения заметок до новых высот! Овладейте искусством рукописного ввода и раскройте свой творческий потенциал с помощью этого многофункционального приложения, основанного на передовых технологиях. Интуитивно понятный и современный интерфейс Saber позволяет легко делать заметки, рисовать схемы или точно комментировать PDF-файлы.
</p>
<p xml:lang="ru">
Когда я начал делать цифровые заметки, я не мог найти никаких конфиденциальных приложений с открытым исходным кодом, которые соответствовали бы моим требованиям, поэтому мне пришлось использовать платное приложение. Я решил создать Saber, чтобы дать людям выбор конфиденциального приложения с открытым исходным кодом, которому они могут доверять. Saber имеет полностью открытый исходный код, а это означает, что любой может проверить код, чтобы убедиться, что он безопасен и приватен. Saber шифрует Ваши данные и может синхронизироваться с любым совместимым сервером по вашему выбору, предоставляя вам полный контроль над вашими данными.
</p>
<p xml:lang="ru">
Вам нравится делать заметки на планшете, а затем переносить их на компьютер? Или, может быть, вы предпочитаете набирать заметки на ноутбуке, а затем комментировать их на планшете? Каким бы ни был ваш рабочий процесс, Saber обеспечит вам кроссплатформенную поддержку, позволяя вам получать доступ к своим заметкам в любое время, в любом месте и на любом устройстве. Saber доступен на Android, iOS, Windows, macOS и Linux, при этом ваши заметки автоматически синхронизируются на всех ваших устройствах. А если вы не в сети, Saber автоматически синхронизирует ваши заметки, как только вы снова подключитесь к сети.
</p>
<p xml:lang="ru">
Saber оснащён лучшим цифровым маркером, который вы когда-либо использовали. Вам когда-нибудь приходилось выделять несколько линий, но вам не нравилось, как маркер накладывался друг на друга и менял цвет? Saber использует усовершенствованную обработку графики для обработки перекрытий и сохранения согласованности цветов пера, что даёт вам лучший опыт работы с маркером, чем традиционная бумага.
</p>
<p xml:lang="ru">
В Saber есть всё, что вам нужно для систематизации ваших заметок. Создавайте папки внутри папок внутри папок сколько душе угодно без ограничения количества вложенных папок. И даже если заметка может быть скрыта глубоко во вложенной папке, вы всё равно можете легко получить к ней доступ, так как ваши самые последние заметки всегда доступны на главном экране.
</p>
<p xml:lang="ru">
Saber может интеллектуально инвертировать ваши заметки, когда включен тёмный режим. Это означает, что вы можете использовать весь процесс ведения заметок в тёмном режиме, включая ваши изображения, в плавном и связанном интерфейсе в условиях низкой освещённости.
</p>
<p xml:lang="ru">
Откройте для себя совершенно новый способ фиксации и систематизации мыслей с помощью Saber. Независимо от того, являетесь ли вы студентом, профессионалом или творческим человеком, Saber станет вашим надёжным помощником в цифровом рукописном вводе. Загрузите сейчас и дайте волю своим идеям!
</p>
<p xml:lang="zh-Hans-CN">
作为 Saber 的开发者,我非常高兴地向您介绍一款彻底改变您记笔记方式的应用程序。Saber 是一款终极手写笔记应用程序,旨在将您的笔记体验提升到新的高度!这款功能丰富的应用程序以尖端技术为动力,让您尽情享受手写的艺术,释放您的创造力。Saber 的界面直观、现代,可轻松记下笔记、绘制图表或精确注释 PDF。
</p>
<p xml:lang="zh-Hans-CN">
当我开始制作电子笔记时,我找不到任何符合我要求的私有开源应用程序,因此我最终不得不使用一个专有应用程序。我决定创建 Saber,让人们可以选择一款值得信赖的私有开源应用程序。Saber 是完全开源的,这意味着任何人都可以审核代码,以确保其安全性和私密性。Saber 会对您的数据进行加密,并可以同步到您选择的任何兼容服务器,让您完全掌控自己的数据。
</p>
<p xml:lang="zh-Hans-CN">
您是否喜欢在平板电脑上做笔记,然后将其传输到电脑上?或者您更喜欢在笔记本电脑上输入笔记,然后在平板电脑上批注?无论您的工作流程是什么,Saber 都能为您提供多平台支持,让您随时随地在任何设备上访问您的笔记。Saber 支持 Android、iOS、Windows、macOS 和 Linux,您的笔记会在所有设备上自动同步。如果您处于离线状态,Saber 会在您重新上线时自动同步您的笔记。
</p>
<p xml:lang="zh-Hans-CN">
Saber 是您用过的最好的电子荧光笔。您是否曾经需要突出多行,但又讨厌荧光笔重叠和变色的方式?Saber 采用先进的图形处理技术来处理重叠和保持笔的颜色一致性,为您带来比传统纸张更好的荧光笔使用体验。
</p>
<p xml:lang="zh-Hans-CN">
Saber 可以满足您整理笔记的一切需求。您可以随心所欲地创建文件夹内的文件夹,嵌套文件夹的数量不受限制。即使笔记可能深埋在嵌套文件夹中,您仍然可以通过主屏幕上的最新笔记轻松访问它。
</p>
<p xml:lang="zh-Hans-CN">
在暗黑模式下,Saber 可以智能地反转您的笔记。这意味着您可以在暗光模式下体验整个笔记体验,包括您的图像,从而在低光照环境下获得舒缓而连贯的界面。
</p>
<p xml:lang="zh-Hans-CN">
使用 Saber,探索一种全新的方式来捕捉和组织您的想法。无论您是学生、专业人士还是创意人士,Saber 都是您值得信赖的数字手写工具。立即下载,让您的创意自由流淌!
</p>
</description>
<launchable type="desktop-id">com.adilhanney.saber.desktop</launchable>
<content_rating type="oars-1.1" />
<categories>
<category>Education</category>
<category>Graphics</category>
<category>Office</category>
</categories>
<keywords>
<keyword>cross-platform</keyword>
<keyword>handwritten</keyword>
<keyword>notes</keyword>
</keywords>
<screenshots>
<screenshot type="default">
<caption>The home screen showing recent notes</caption>
<image>https://raw.githubusercontent.com/saber-notes/saber/main/metadata/en-US/images/tenInchScreenshots/1_home.png</image>
</screenshot>
<screenshot>
<caption>The editor showing maths notes about metric spaces</caption>
<image>https://raw.githubusercontent.com/saber-notes/saber/main/metadata/en-US/images/tenInchScreenshots/2_editor.png</image>
</screenshot>
<screenshot>
<caption>The login page which asks which Nextcloud server you want to use</caption>
<image>https://raw.githubusercontent.com/saber-notes/saber/main/metadata/en-US/images/tenInchScreenshots/3_login.png</image>
</screenshot>
<screenshot>
<caption>The settings page showing that the user is now logged in</caption>
<image>https://raw.githubusercontent.com/saber-notes/saber/main/metadata/en-US/images/tenInchScreenshots/4_settings.png</image>
</screenshot>
</screenshots>
<releases>
<release version="0.25.2" type="development" date="2024-11-10">
<description>
<ul>
<li>Inverted images should now be higher quality</li>
<li>PDFs should now render more quickly</li>
<li>Updates to the sdk used for Onyx e-ink devices</li>
<li>The max zoom has been increased from 5x to 10x</li>
<li>Strokes are now rendered at a lower quality when zoomed out</li>
<li>Fixed a bug when a canvas is renamed just after closing the editor</li>
<li>Fixed a bug where tapping with the stylus button pressed caused extra undos</li>
</ul>
</description>
</release>
<release version="0.25.1" type="development" date="2024-10-19">
<description>
<ul>
<li>Fixed a bug with custom Nextcloud servers hosted at a subdirectory, thanks to provokateurin</li>
</ul>
</description>
</release>
<release version="0.25.0" type="development" date="2024-10-01">
<description>
<ul>
<li>Improved scrolling performance and removed layout shifts</li>
<li>Failed uploads are now retried at increasingly long intervals</li>
<li>Added a logs page at the bottom of settings</li>
</ul>
</description>
</release>
<release version="0.24.7" type="development" date="2024-09-25">
<description>
<ul>
<li>The app icon has been slightly tweaked and vectorized to have more natural curves.</li>
</ul>
</description>
</release>
<release version="0.24.6" type="development" date="2024-09-05">
<description>
<ul>
<li>Fixed the app not recognizing if you've changed your encryption password on another device</li>
<li>Added fallback fonts for non-latin characters</li>
<li>Reduced frame drops when loading the app with lots of legacy notes</li>
<li>Added an option to use a simplified home screen layout for performance on low-end devices</li>
</ul>
</description>
</release>
<release version="0.24.5" type="development" date="2024-08-08">
<description>
<ul>
<li>Misc changes and updated dependencies</li>
</ul>
</description>
</release>
<release version="0.24.4" type="development" date="2024-07-31">
<description>
<ul>
<li>Better handling of deleted files and already synced files</li>
<li>Fixed spaces being allowed at the end and start of file names</li>
<li>Added a button in the settings page to open the data directory</li>
<li>More feedback about which files are currently downloading/uploading</li>
</ul>
</description>
</release>
<release version="0.24.3" type="development" date="2024-07-20">
<description>
<p>Fixed a syncing bug that caused file paths to be decrypted incorrectly, thanks to @QubaB on GitHub</p>
</description>
</release>
<release version="0.24.2" type="development" date="2024-07-14">
<description>
<ul>
<li>Added a star to the shape tool</li>
<li>Fixed the weird corners on triangles drawn with the shape tool</li>
<li>Fixed single-point dots not being saved</li>
</ul>
</description>
</release>
<release version="0.24.1" type="development" date="2024-06-26">
<description>
<ul>
<li>Reduced the glow effect of laser strokes</li>
<li>The syncer will automatically pick up new files on your device</li>
<li>Fixed a bug where uploading a file would fail after downloading it</li>
<li>Run Saber with a <code>-v</code> flag for more detailed logs</li>
</ul>
</description>
</release>
<release version="0.24.0" type="development" date="2024-06-24">
<description>
<ul>
<li>Major syncing speed improvements</li>
<li>Better handling of outdated encryption passwords</li>
<li>Improved rendering of laser strokes</li>
</ul>
</description>
</release>
<release version="0.23.3" type="development" date="2024-06-17">
<description>
<ul>
<li>Fixed an "almost logged in" message being shown after logging in</li>
<li>Improved some icons</li>
<li>Disabled scrolling with the arrow keys when text editing</li>
</ul>
</description>
</release>
<release version="0.23.2" type="development" date="2024-05-18">
<description>
<ul>
<li>Increased PDF render quality</li>
<li>Typed text now properly aligns with the page lines if enabled</li>
<li>Updated the color picker dialogs</li>
<li>Misc improvements from the new Flutter 3.22</li>
</ul>
</description>
</release>
<release version="0.23.1" type="development" date="2024-05-14">
<description>
<ul>
<li>If you like to edit notes on a tablet and simultaneously view them on your computer, there's a new toggle in the editor menu to enable automatic refreshing.</li>
<li>Fixed straightened pencil lines fading out at the ends</li>
<li>Small improvement in app loading times</li>
</ul>
</description>
</release>
<release version="0.23.0" type="development" date="2024-05-06">
<description>
<ul>
<li>Redesigned the login process</li>
<li>Stopped the autosave triggering while in the middle of a stroke</li>
<li>Fixed the pencil sound effect setting not being picked up immediately</li>
</ul>
</description>
</release>
<release version="0.22.0" type="development" date="2024-05-02">
<description>
<ul>
<li>A simulated pencil sound effect has been added.</li>
<li>The Nextcloud syncing issue has been fixed.</li>
</ul>
</description>
</release>
<release version="0.21.4" type="development" date="2024-04-20">
<description>
<ul>
<li>The zoom is now snapped to 1.0x when close</li>
</ul>
</description>
</release>
<release version="0.21.3" type="development" date="2024-03-31">
<description>
<ul>
<li>Added a glow effect to the laser pointer</li>
<li>Using the laser pointer no longer triggers the autosave</li>
<li>Fixed the pen size picker not displaying correctly in a vertical toolbar</li>
</ul>
</description>
</release>
<release version="0.21.2" type="development" date="2024-03-14">
<description>
<ul>
<li>The laser pointer now waits for you to stop writing before fading out</li>
<li>Fixed a bug that caused some PDF pages to get lost</li>
<li>Fixed a bug where thumbnails of deleted notes weren't removed</li>
</ul>
</description>
</release>
<release version="0.21.1" type="development" date="2024-03-10">
<description>
<ul>
<li>Reduced false positives when auto straightening lines</li>
</ul>
</description>
</release>
<release version="0.21.0" type="development" date="2024-03-06">
<description>
<ul>
<li>Long lines are now automatically straightened without having to switch to the shape tool (configurable in settings)</li>
<li>Fixed pen sizes resetting when you switch between pen types</li>
</ul>
</description>
</release>
<release version="0.20.3" type="development" date="2024-02-25">
<description>
<ul>
<li>Fixed PDF exports failing on some notes</li>
<li>Reduced the blurring effect on large pencil sizes</li>
<li>Fixed the "resync everything" button uploading empty files</li>
</ul>
</description>
</release>
<release version="0.20.2" type="development" date="2024-02-17">
<description>
<ul>
<li>Changing the pen size is now more intuitive with a slider input</li>
<li>Minor performance and fidelity improvements for the pencil</li>
</ul>
</description>
</release>
<release version="0.20.1" type="development" date="2024-02-14">
<description>
<ul>
<li>Fixed pencil fading out at the start and end</li>
</ul>
</description>
</release>
<release version="0.20.0" type="development" date="2024-02-14">
<description>
<ul>
<li>Added the pencil tool</li>
</ul>
</description>
</release>
<release version="0.19.4" type="development" date="2024-02-12">
<description>
<ul>
<li>Fixed note previews being cropped weirdly</li>
<li>Fixed exports on iOS</li>
</ul>
</description>
</release>
<release version="0.19.3" type="development" date="2024-02-09">
<description>
<ul>
<li>Fixed notes not being unselected after renaming.</li>
<li>Fixed the "resync everything" button causing multiple uploads at once.</li>
</ul>
</description>
</release>
<release version="0.19.2" type="development" date="2024-01-16">
<description>
<p>Strokes that had jagged edges have now been smoothed out, particularly ones drawn with a mouse or trackpad.</p>
</description>
</release>
<release version="0.19.1" type="development" date="2024-01-09">
<description>
<ul>
<li>Lines are more accurately recognized with the shape tool</li>
<li>Adapted to multiple Nextcloud versions being supported</li>
</ul>
</description>
</release>
<release version="0.19.0" type="development" date="2023-12-26">
<description>
<p>Merry Christmas! I've added a number of performance improvements, including more efficient image inverting and better handling of SVG files. Good luck to everyone sitting exams in the next few weeks!</p>
</description>
</release>
<release version="0.18.6" type="development" date="2023-12-24">
<description>
<ul>
<li>Fixed thumbnails being inverted incorrectly when saved in dark mode</li>
<li>Fixed a long-standing inversion bug with pure black pixels</li>
</ul>
</description>
</release>
<release version="0.18.5" type="development" date="2023-12-17">
<description>
<ul>
<li>Home screen previews are done ahead of time for performance</li>
<li>Fixed some syncing errors and added a "resync everything" button in settings</li>
<li>Fixed a bug with loading large notes</li>
<li>Fixed the split-second delay before images are inverted</li>
</ul>
</description>
</release>
<release version="0.18.4" type="development" date="2023-12-10">
<description>
<ul>
<li>Fixed syncing!</li>
<li>Fixed a bug where assets would be left behind when deleting or moving a note.</li>
<li>Use the arrow keys to move around a note.</li>
<li>Performance improvements for the shape tool.</li>
</ul>
</description>
</release>
<release version="0.18.3" type="development" date="2023-11-30">
<description>
<ul>
<li>Switched to a new shape recognition library</li>
<li>Added triangle detection</li>
<li>Added line snapping with the shape tool</li>
<li>Fixed some SBN imports failing</li>
</ul>
</description>
</release>
<release version="0.18.2" type="development" date="2023-11-30">
<description>
<ul>
<li>Fixed Nextcloud storage usage not being displayed</li>
<li>Fixed a bug where notes with certain names wouldn't be shown on the home screen</li>
</ul>
</description>
</release>
<release version="0.18.1" type="development" date="2023-11-27">
<description>
<ul>
<li>Assets are now lazily loaded as you scroll to them</li>
<li>Removed unused thumbnail generation</li>
<li>Fixed a bug where deleted files wouldn't be unselected</li>
</ul>
</description>
</release>
<release version="0.18.0" type="development" date="2023-11-26">
<description>
<ul>
<li>Performance improvements by storing images/PDFs separately to the main note</li>
<li>Errors when renaming a note are now reported to the user</li>
</ul>
</description>
</release>
<release version="0.17.2" type="development" date="2023-11-21">
<description>
<ul>
<li>Long press a recent color to pin it</li>
<li>You can now export notes from the home screen</li>
<li>Various bug fixes</li>
</ul>
</description>
</release>
<release version="0.17.1" type="development" date="2023-10-28">
<description>
<ul>
<li>Fixed a crash when zooming in to PDFs</li>
<li>Improved performance of the shape tool</li>
</ul>
</description>
</release>
<release version="0.17.0" type="development" date="2023-10-21">
<description>
<ul>
<li>Added a shape recognition pen</li>
<li>Straight line detection now only works with the shape recognition pen</li>
<li>New PDF imports will retain their original quality</li>
<li>Select multiple notes at once to move or delete them</li>
<li>You can now delete and duplicate a selection of strokes/images</li>
</ul>
</description>
</release>
<release version="0.16.1" type="development" date="2023-09-29">
<description>
<ul>
<li>Fixed login failing when the Saber folder already exists on the server.</li>
<li>You can now change the colour of selected strokes, thanks to AraxTheCoder.</li>
<li>Syncing reliability improvements.</li>
<li>Better handling of zoom lock when restoring your last zoom.</li>
<li>Importing PDFs from the home screen now uses the current folder.</li>
</ul>
</description>
</release>
<release version="0.16.0" type="development" date="2023-09-29">
<description>
<ul>
<li>You can now change the colour of selected strokes, thanks to AraxTheCoder.</li>
<li>Syncing reliability improvements.</li>
<li>Better handling of zoom lock when restoring your last zoom.</li>
<li>Importing PDFs from the home screen now uses the current folder.</li>
</ul>
</description>
</release>
<release version="0.15.5" type="development" date="2023-09-19">
<description>
<ul>
<li>Added a Linux (Yaru) theme</li>
<li>Fixed a syncing regression</li>
</ul>
</description>
</release>
<release version="0.15.4" type="development" date="2023-09-15">
<description>
<ul>
<li>Fixed a lot of zooming issues and the current page detection when zoomed</li>
<li>Improved initial performance on non-Onyx Android devices</li>
<li>Improved toolbar performance when toggling different menus</li>
<li>Support for arm64 Linux devices on Flathub</li>
<li>Disabled ads on devices where they'd cause slowdowns</li>
</ul>
</description>
</release>
<release version="0.15.3" type="development" date="2023-08-29">
<description>
<ul>
<li>Added a button to rename folders</li>
<li>Added a tablature background pattern</li>
<li>Minor improvements to the editor three dots menu</li>
</ul>
</description>
</release>
<release version="0.15.2" type="development" date="2023-08-24">
<description>
<ul>
<li>Fixed the new file format crashing when you use colored strokes</li>
<li>Any known corrupted files are now deprioritized in the sync queue</li>
</ul>
</description>
</release>
<release version="0.15.1" type="development" date="2023-08-23">
<description>
<ul>
<li>Reduced the file size of notes</li>
<li>Reduced slowdown caused by syncing</li>
<li>You can now import a PDF from the home screen</li>
<li>Fixed a bug when a folder and a note had the same name</li>
<li>Fixed a layout bug when using the iOS theme</li>
<li>Fixed changelogs not appearing in F-Droid</li>
<li>Fixed missing libraries in the AppImage</li>
<li>Fixed the ATT prompt not appearing in iOS</li>
<li>Fixed a bug where the quill toolbar would only work with the first page</li>
</ul>
</description>
</release>
<release version="0.14.11" type="development" date="2023-07-27">
<description>
<ul>
<li>Reduced the file size of notes with many strokes</li>
<li>Fixed a bug with creating a note in a folder</li>
<li>Translations and metadata updates</li>
</ul>
</description>
</release>
<release version="0.14.10" type="development" date="2023-07-23">
<description>
<ul>
<li>Fixed undoing/redoing strokes</li>
<li>The current color is now displayed in the toolbar without having to open the color bar</li>
<li>Minor visual and performance improvements</li>
</ul>
</description>
</release>
<release version="0.14.9" type="development" date="2023-07-19">
<description>
<ul>
<li>Added a setting to hide the finger drawing button to avoid accidentally toggling it</li>
<li>Bug fixes</li>
</ul>
</description>
</release>
<release version="0.14.8" type="development" date="2023-07-19">
<description>
<ul>
<li>Fixed PDF exports being grey-ish for some users</li>
<li>Added a button to delete folders</li>
</ul>
</description>
</release>
<release version="0.14.7" type="development" date="2023-07-17">
<description>
<ul>
<li>Notes are now created in the current folder, not the root folder</li>
<li>Added a setting to switch back to the pen after using the eraser</li>
</ul>
</description>
</release>
<release version="0.14.6" type="development" date="2023-07-10">
<description>
<ul>
<li>Added a button to quickly insert a page after the current page</li>
<li>Better S-Pen support, thanks again to @ZebraVogel94349</li>
<li>Added Japanese translation, thanks to @nagiyu</li>
<li>Customizable auto-save interval</li>
<li>Minor UI improvements</li>
</ul>
</description>
</release>
<release version="0.14.5" type="development" date="2023-07-08">
<description>
<ul>
<li>(Changes only affect the Android app)</li>
</ul>
</description>
</release>
<release version="0.14.4" type="development" date="2023-07-05">
<description>
<ul>
<li>Reorganised the Settings page to make it easier to find what you're looking for.</li>
<li>Support for custom Nextcloud servers with self-signed certificates: enable the "Allow insecure connections" option in Settings.</li>
</ul>
</description>
</release>
<release version="0.14.3" type="development" date="2023-07-02">
<description>
<p>Saber on Android and iOS is now supported by Google ads. You'll be prompted to choose between personalized and non-personalized ads. You can change this choice later in the app's settings, or completely opt out of ads if you wish.</p>
</description>
</release>
<release version="0.14.2" type="development" date="2023-07-01">
<description>
<ul>
<li>Support for Nextcloud 27</li>
<li>Reduced stutters after saving a note</li>
<li>Minor UI improvements</li>
</ul>
</description>
</release>
<release version="0.14.0" type="development" date="2023-06-28">
<description>
<ul>
<li>Support for folders!</li>
<li>Quickly move and rename notes from the home screen</li>
<li>Fixed weirdness with Scribble on iPad in the pen size picker</li>
<li>Fixed downloading SVGs</li>
<li>Minor visual and performance tweaks</li>
</ul>
</description>
</release>
<release version="0.13.1" type="development" date="2023-06-18">
<description>
<ul>
<li>Checks that the whiteboard is saved before you navigate away</li>
<li>Fixed a bug where images would always be added to the first page rather than the current page</li>
</ul>
</description>
</release>
<release version="0.13.0" type="development" date="2023-06-16">
<description>
<ul>
<li>Added a laser pointer tool</li>
<li>You can now lock panning to the vertical/horizontal axes</li>
<li>Phone users can now opt to use the tablet UI and vice versa</li>
<li>Better pen icons</li>
<li>Reduced the number of notes that are loaded at once</li>
<li>Fixed detection of deleted files, so syncs are much faster now</li>
<li>Faster and more reliable image imports</li>
</ul>
</description>
</release>
<release version="0.12.10" type="development" date="2023-06-06">
<description>
<ul>
<li>Tool options are now embedded in the toolbar</li>
<li>Straight line recognition now works on shorter lines</li>
<li>Saving progress is now displayed to the user</li>
<li>Fixed a bug with the "Don't save preset colors in recent colors" setting</li>
</ul>
</description>
</release>
<release version="0.12.9" type="development" date="2023-05-29">
<description>
<ul>
<li>Better inversion support for translucency in images</li>
<li>Performance optimisations for the eraser tool</li>
<li>Reduced filesize of notes</li>
</ul>
</description>
</release>
<release version="0.12.8" type="development" date="2023-05-25">
<description>
<ul>
<li>Autosaving is now more spaced out to avoid clashes</li>
<li>Minor visual tweaks</li>
<li>Checkboxes, bullet points, and number points are now sized in proportion to the text</li>
</ul>
</description>
</release>
<release version="0.12.7" type="development" date="2023-05-21">
<description>
<ul>
<li>Thumbnails should be slightly better quality for new images/PDFs</li>
<li>Desktop users can zoom in and out with Ctrl + and Ctrl -</li>
<li>Added pastel colors to the default color pallet</li>
<li>Fixed the editor not updating when importing a PDF until you manually scrolled</li>
</ul>
</description>
</release>
<release version="0.12.6" type="development" date="2023-05-17">
<description>
<ul>
<li>Performance improvements with large notes</li>
<li>Fixed the editor menu always thinking you're on the last page of a note</li>
<li>Added a drag handle to the editor menu</li>
<li>You'll now get a message if you try to login to an unsupported Nextcloud server</li>
</ul>
</description>
</release>
<release version="0.12.5" type="development" date="2023-05-14">
<description>
<ul>
<li>Reverted image changes due to some larger images not loading</li>
</ul>
</description>
</release>
<release version="0.12.4" type="development" date="2023-05-12">
<description>
<ul>
<li>Fixed syncing with Nextcloud 26</li>
<li>Fixed a bug where new images didn't display correctly until you reopened the note</li>
<li>Efficiency improvements with images at the cost of longer loading times</li>
<li>Performance improvements thanks to Flutter 3.10</li>
</ul>
</description>
</release>
<release version="0.12.3" type="development" date="2023-05-07">
<description>
<ul>
<li>Support for Nextcloud 26</li>
</ul>
</description>
</release>
<release version="0.12.2" type="development" date="2023-05-07">
<description>
<ul>
<li>Fixed layout issue with the text editing toolbar</li>
<li>Fixed misspellings of Saber in some translations</li>
</ul>
</description>
</release>
<release version="0.12.0" type="development" date="2023-05-02">
<description>
<ul>
<li>You can now insert a new page after another in the page management dialog</li>
<li>You can now duplicate a page in the page management dialog</li>
<li>You can now delete a page in the page management dialog</li>
<li>Fixed a bug where stylus input was disabled if one-finger panning was disabled</li>
<li>Added a direct link to the account deletion page</li>
</ul>
</description>
</release>
<release version="0.11.7" type="development" date="2023-04-28">
<description>
<ul>
<li>Tap your username on the settings page to go to the new profile page</li>
<li>You can now use both right-to-left and left-to-right background patterns</li>
<li>Improved the macOS icon</li>
</ul>
</description>
</release>
<release version="0.11.6" type="development" date="2023-04-25">
<description>
<ul>
<li>Prepare the macOS app for App Store submission</li>
<li>The signup link now opens in an in-app web view for iOS users in order to comply with App Store guidelines</li>
</ul>
</description>
</release>
<release version="0.11.5" type="development" date="2023-04-23">
<description>
<ul>
<li>Certain background patterns now respond to whether you're using a right-to-left language</li>
<li>Tap a page in the pages popup to quickly scroll to it</li>
<li>Laptop touchpad users can now pinch to zoom</li>
<li>Small performance improvement for when you don't have any highlighter strokes on screen</li>
<li>Fixed some bugs when using the iOS theme</li>
<li>Increased scrolling responsiveness in the editor</li>
</ul>
</description>
</release>
<release version="0.11.4" type="development" date="2023-04-11">
<description>
<ul>
<li>Added a template for Cornell notes</li>
<li>Better previews of the different background patterns</li>
<li>Fixed the home screen sometimes messing up after lots of changes</li>
<li>Fonts are now bundled with the app, so they aren't downloaded on first use</li>
</ul>
</description>
</release>
<release version="0.11.3" type="development" date="2023-04-09">
<description>
<ul>
<li>Strokes are now only straightened if they are already roughly straight</li>
<li>Increased the resolution of PDF imports: this is a temporary fix until we have lossless PDF imports</li>
<li>Subsequent updates will have their changelogs displayed in-app</li>
<li>Improved the login UX</li>
<li>Minor bug fixes</li>
<li>Upgraded to Flutter 3.7.10</li>
</ul>
</description>
</release>
<release version="0.11.2" type="development" date="2023-04-05">
<description>
<ul>
<li>Fixed error when loading large files with lots of images</li>
<li>Added more options in the background image section of the editor menu</li>
</ul>
</description>
</release>
<release version="0.11.1" type="development" date="2023-04-03">
<description>
<ul>
<li>Fixed pasting images taken from the Windows Snipping Tool</li>
</ul>
</description>
</release>
<release version="0.11.0" type="development" date="2023-04-03">
<description>
<ul>
<li>(Partial) support for pasting images from the clipboard</li>
<li>Images that are used multiple times are now only stored once</li>
</ul>
</description>
</release>
<release version="0.10.0" type="development" date="2023-04-01">
<description>
<ul>
<li>Major performance improvements with inverting images</li>
<li>Reliability improvements when renaming notes</li>
<li>Fixed panning with one finger while using the text tool</li>
<li>Upgraded to Flutter 3.7.9</li>
</ul>
</description>
</release>
<release version="0.9.12" type="development" date="2023-03-30">
<description>
<ul>
<li>Fixed the file watcher on Windows</li>
<li>Updated the login FAQ section</li>
<li>Fixed some bugs with PDF exporting</li>
<li>Upgraded to Flutter 3.7.8</li>
</ul>
</description>
</release>
<release version="0.9.11" type="development" date="2023-03-22">
<description>
<ul>
<li>Improved home page transitions</li>
<li>Performance improvements for the home page</li>
<li>Fixed the weirdness with moving the cursor when editing text</li>
<li>Fixed a minor bug on the Settings page</li>
</ul>
</description>
</release>
<release version="0.9.10" type="development" date="2023-03-20">
<description>
<ul>
<li>Fixed updating issue on Android devices</li>
</ul>
</description>
</release>
<release version="0.9.9" type="development" date="2023-03-20">
<description>
<ul>
<li>New background pattern for music staffs</li>
<li>The update process has been streamlined for Windows and non-FOSS Android users</li>
<li>Visual C++ Redistributable is now included in the Windows installer</li>
<li>Slight performance improvements with large files</li>
<li>Fixed pdf page indicators including the empty last page</li>
<li>Hidden duplicate buttons in the Quill toolbar</li>
<li>Minor visual tweaks</li>
</ul>
</description>
</release>
<release version="0.9.8" type="development" date="2023-03-12">
<description>
<ul>
<li>Tap the zoom indicator to reset the zoom level.</li>
<li>Fixed a bug where you couldn't zoom below 1.0x on landscape screens.</li>
<li>Improved the quality of PDFs exported from the app, by using vector graphics for strokes.</li>
<li>Added a setting for whether to show page indicators in exported PDFs.</li>
<li>Added a setting for whether you want to save preset colors in your recent colors.</li>
<li>Fixed a bug where recent colors would be saved in reverse order for new users.</li>
<li>Fixed toolbar spacing when aligned to the left or right.</li>
<li>Minor visual improvements.</li>
<li>Initial progress towards merging the undo/redo buttons of Saber and the text tool.</li>
<li>Upgrade to Flutter 3.7.7.</li>
</ul>
</description>
</release>
<release version="0.9.6" type="development" date="2023-03-05">
<description>
<ul>
<li>Fixed bug with incorrect display of notes on the home screen while loading</li>
<li>The select tool can now also select images</li>
<li>You can now zoom below 1.0x</li>
<li>The full height of pages with background images will be shown on the home screen</li>
<li>Fixed bug where the Nextcloud storage would infinity load</li>
<li>Minor UI tweaks</li>
<li>Remove defunct S Pen warning</li>
<li>Upgrade to Flutter 3.7.6</li>
</ul>
</description>
</release>
<release version="0.9.5" type="development" date="2023-02-24">
<description>
<ul>
<li>Dots are no longer tiny on pressure-sensitive devices.</li>
<li>Background images/PDFs are now made opaque by default.</li>
<li>Performance improvements for importing and inverting images/PDFs.</li>
<li>Svg compatibility improvements, including embedded images.</li>
<li>Refreshing note previews after a sync is now animated.</li>
<li>Upgraded to Flutter 3.7.5.</li>
</ul>
</description>
</release>
<release version="0.9.4" type="development" date="2023-02-21">
<description>
<ul>
<li>You can lock panning to 2-finger panning only to avoid accidents.</li>