File tree Expand file tree Collapse file tree 6 files changed +19
-4
lines changed Expand file tree Collapse file tree 6 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,14 @@ Quickly add new pages or content to your vault.
9
9
You can also do a [ manual installation] ( docs/ManualInstallation.md ) .
10
10
11
11
## What's new?
12
- ### 0.3.10
12
+ ### 0.3.10 - 0.3.11
13
13
- Added a warning when deleting a Multi choice that you will delete all choices within.
14
14
- Fix #51 - Templater syntax is now processed when appending to the current file.
15
15
- Fix "Template (not found)" for templates that exist.
16
16
- Fix #46 - Error if adding a template that doesn't exist.
17
17
- Template: Create file in same folder as current file.
18
18
- Fix bug with insertion and creation of 'Insert After' line (if it does not exist).
19
+ - Mobile friendly UX for adding choices.
19
20
20
21
### 0.3.6 - 0.3.9
21
22
- Added setting to create the 'Insert After' line if it isn't found.
Original file line number Diff line number Diff line change 1
1
{
2
2
"id" : " quickadd" ,
3
3
"name" : " QuickAdd" ,
4
- "version" : " 0.3.10 " ,
4
+ "version" : " 0.3.11 " ,
5
5
"minAppVersion" : " 0.12.5" ,
6
6
"description" : " Quickly add new pages or content to your vault." ,
7
7
"author" : " Christian B. B. Houmann" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " quickadd" ,
3
- "version" : " 0.3.10 " ,
3
+ "version" : " 0.3.11 " ,
4
4
"description" : " Quickly add new pages or content to your vault." ,
5
5
"main" : " main.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 36
36
.addChoiceBox {
37
37
margin-top : 1em ;
38
38
display : flex ;
39
+ flex-direction : row ;
39
40
align-items : center ;
40
41
gap : 10px ;
41
42
justify-content : center ;
42
43
}
43
44
45
+ @media (max-width : 800px ) {
46
+ .addChoiceBox {
47
+ flex-direction : column ;
48
+ }
49
+ }
50
+
44
51
#addChoiceTypeSelector {
45
52
font-size : 16px ;
46
53
padding : 3px ;
Original file line number Diff line number Diff line change 157
157
<style >
158
158
.choiceViewBottomBar {
159
159
display : flex ;
160
+ flex-direction : row ;
160
161
align-items : center ;
161
162
justify-content : space-between ;
162
163
margin-top : 1rem ;
163
164
}
165
+
166
+ @media (max-width : 800px ) {
167
+ .choiceViewBottomBar {
168
+ flex-direction : column ;
169
+ }
170
+ }
164
171
</style >
Original file line number Diff line number Diff line change 1
1
{
2
2
"0.2.16" : " 0.12.4" ,
3
- "0.3.10 " : " 0.12.5"
3
+ "0.3.11 " : " 0.12.5"
4
4
}
You can’t perform that action at this time.
0 commit comments