Skip to content

Commit 43d5535

Browse files
authored
Merge pull request #87 from Toufool/avasam-complete
Merge Avasam-Complete to Master
2 parents 7bd4541 + 5261fc3 commit 43d5535

35 files changed

+4687
-4927
lines changed

Diff for: .gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,3 @@ dist/
1616

1717
# Dev settings
1818
*.pkl
19-
# Defaut settings
20-
!src/settings.pkl

Diff for: .vscode/extensions.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"recommendations": [
3-
"ms-pyright.pyright",
3+
"ms-python.vscode-pylance",
44
"ms-python.python",
55
"sonarsource.sonarlint-vscode",
6-
"davidanson.vscode-markdownlint"
6+
"davidanson.vscode-markdownlint",
7+
"shardulm94.trailing-spaces",
8+
"eamodio.gitlens"
9+
],
10+
"unwantedRecommendations": [
11+
"ms-pyright.pyright",
12+
"esbenp.prettier-vscode"
713
]
814
}

Diff for: .vscode/settings.json

+34-14
Original file line numberDiff line numberDiff line change
@@ -13,36 +13,56 @@
1313
"[python]": {
1414
"editor.tabSize": 4,
1515
"editor.rulers": [
16-
72,
1716
79,
17+
100,
1818
120,
1919
]
2020
},
21-
"[py]": {
22-
"editor.tabSize": 4,
23-
"editor.rulers": [
24-
72,
25-
79,
26-
120,
27-
]
28-
},
29-
"//1": "Keeping autoformat to false for now to keep minimal changes",
21+
// Keeping autoformat to false for now to keep minimal changes
3022
"editor.formatOnSave": false,
3123
"editor.codeActionsOnSave": {
3224
"source.fixAll": false,
3325
},
26+
"python.linting.enabled": true,
27+
"python.analysis.typeCheckingMode": "basic",
28+
"python.analysis.diagnosticSeverityOverrides": {
29+
// Too many false positives with pywin32 (all functions have 0 arguments in type stub)
30+
"reportGeneralTypeIssues":"none"
31+
},
32+
// https://code.visualstudio.com/docs/python/linting#_specific-linters
33+
// Maybe consider PyLint once all Flake8 linting is fixed
3434
"python.linting.pylintEnabled": false,
35-
"//2": "Using flake8 as other linters are incomplete or have too many false positives last I tried",
3635
"python.linting.flake8Enabled": true,
37-
"python.linting.enabled": true,
36+
"python.linting.mypyEnabled": true,
37+
// Flake8 is already a pycodestyle wrapper
3838
"python.linting.pycodestyleEnabled": false,
39+
"python.linting.pylintArgs": [
40+
"--disable=no-member",
41+
"--max-line-length=120"
42+
],
43+
"python.linting.flake8CategorySeverity.E": "Warning",
3944
"python.linting.flake8Args": [
4045
"--max-line-length=120"
4146
],
42-
"python.linting.flake8CategorySeverity.F": "Warning",
47+
"python.linting.mypyArgs": [
48+
"--max-line-length=120"
49+
],
4350
"python.formatting.autopep8Args": [
4451
"--max-line-length=120"
4552
],
46-
"python.pythonPath": "",
4753
"files.insertFinalNewline": true,
54+
"trailing-spaces.deleteModifiedLinesOnly": true,
55+
"trailing-spaces.includeEmptyLines": true,
56+
"trailing-spaces.trimOnSave": true,
57+
"trailing-spaces.syntaxIgnore": [
58+
"markdown"
59+
],
60+
"files.associations": {
61+
"*.qrc": "xml",
62+
"*.ui": "xml"
63+
},
64+
"markdownlint.config": {
65+
"default": true,
66+
"MD025": false,
67+
},
4868
}

Diff for: README.md

+95-43
Large diffs are not rendered by default.

Diff for: example1.5.0.gif

-4.96 MB
Binary file not shown.

Diff for: requirements.txt

-22
This file was deleted.

Diff for: res/about.ui

+31-23
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,27 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>276</width>
10-
<height>249</height>
9+
<width>264</width>
10+
<height>250</height>
1111
</rect>
1212
</property>
1313
<property name="minimumSize">
1414
<size>
15-
<width>276</width>
16-
<height>249</height>
15+
<width>264</width>
16+
<height>250</height>
1717
</size>
1818
</property>
1919
<property name="maximumSize">
2020
<size>
21-
<width>276</width>
22-
<height>249</height>
21+
<width>264</width>
22+
<height>250</height>
2323
</size>
2424
</property>
25+
<property name="font">
26+
<font>
27+
<pointsize>9</pointsize>
28+
</font>
29+
</property>
2530
<property name="windowTitle">
2631
<string>About AutoSplit</string>
2732
</property>
@@ -32,10 +37,10 @@
3237
<widget class="QPushButton" name="okButton">
3338
<property name="geometry">
3439
<rect>
35-
<x>190</x>
40+
<x>180</x>
3641
<y>220</y>
37-
<width>71</width>
38-
<height>21</height>
42+
<width>75</width>
43+
<height>24</height>
3944
</rect>
4045
</property>
4146
<property name="text">
@@ -47,52 +52,55 @@
4752
<rect>
4853
<x>10</x>
4954
<y>44</y>
50-
<width>151</width>
51-
<height>16</height>
55+
<width>161</width>
56+
<height>32</height>
5257
</rect>
5358
</property>
5459
<property name="text">
55-
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Created by &lt;a href=&quot;https://twitter.com/toufool&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Toufool&lt;/span&gt;&lt;/a&gt; and &lt;a href=&quot;https://twitter.com/faschz&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Faschz&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
60+
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Created by &lt;a href=&quot;https://twitter.com/toufool&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Toufool&lt;/span&gt;&lt;/a&gt; and &lt;a href=&quot;https://twitter.com/faschz&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Faschz&lt;/span&gt;&lt;/a&gt;&lt;br/&gt;Maintained by &lt;a href=&quot;https://twitter.com/Avasam06&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Avasam&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
5661
</property>
5762
</widget>
5863
<widget class="QLabel" name="versionLabel">
5964
<property name="geometry">
6065
<rect>
6166
<x>10</x>
6267
<y>21</y>
63-
<width>71</width>
68+
<width>161</width>
6469
<height>16</height>
6570
</rect>
6671
</property>
6772
<property name="text">
68-
<string>Version: 1.2.0</string>
73+
<string>Version: </string>
6974
</property>
7075
</widget>
7176
<widget class="QLabel" name="donatetextLabel">
7277
<property name="geometry">
7378
<rect>
74-
<x>46</x>
79+
<x>30</x>
7580
<y>95</y>
76-
<width>191</width>
77-
<height>41</height>
81+
<width>204</width>
82+
<height>32</height>
7883
</rect>
7984
</property>
8085
<property name="text">
8186
<string>If you enjoy using this program, please
82-
consider donating. Thank you!</string>
87+
consider donating. Thank you!</string>
88+
</property>
89+
<property name="alignment">
90+
<set>Qt::AlignCenter</set>
8391
</property>
8492
</widget>
8593
<widget class="QLabel" name="donatebuttonLabel">
8694
<property name="geometry">
8795
<rect>
88-
<x>52</x>
89-
<y>127</y>
90-
<width>171</width>
91-
<height>91</height>
96+
<x>60</x>
97+
<y>150</y>
98+
<width>147</width>
99+
<height>47</height>
92100
</rect>
93101
</property>
94102
<property name="text">
95-
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_donations&amp;business=BYRHQG69YRHBA&amp;item_name=AutoSplit+development&amp;currency_code=USD&amp;source=url&quot;&gt;&lt;img src=&quot;:/resources/donatebutton.png&quot;/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
103+
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_donations&amp;amp;business=BYRHQG69YRHBA&amp;amp;item_name=AutoSplit+development&amp;amp;currency_code=USD&amp;amp;source=url&quot;&gt;&lt;img src=&quot;:/resources/btn_donateCC_LG.png&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
96104
</property>
97105
<property name="alignment">
98106
<set>Qt::AlignCenter</set>

Diff for: res/btn_donateCC_LG.png

2.64 KB
Loading

0 commit comments

Comments
 (0)