aa-mumble-quick-connect 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aa_mumble_quick_connect/__init__.py +1 -1
- aa_mumble_quick_connect/locale/django.pot +2 -2
- aa_mumble_quick_connect/migrations/0001_initial.py +75 -1
- {aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/METADATA +1 -1
- {aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/RECORD +7 -11
- aa_mumble_quick_connect/migrations/0002_section_mumblelink.py +0 -80
- aa_mumble_quick_connect/migrations/0003_alter_mumblelink_url.py +0 -19
- aa_mumble_quick_connect/migrations/0004_alter_mumblelink_url.py +0 -26
- aa_mumble_quick_connect/migrations/0005_alter_mumblelink_name_alter_mumblelink_section.py +0 -35
- {aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/WHEEL +0 -0
- {aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: AA Mumble Quick Connect 0.0.
|
|
9
|
+
"Project-Id-Version: AA Mumble Quick Connect 0.0.2\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2025-02-13
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 13:31+0100\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
# Generated by Django 4.2.19 on 2025-02-12
|
|
1
|
+
# Generated by Django 4.2.19 on 2025-02-13 12:30
|
|
2
2
|
|
|
3
3
|
# Django
|
|
4
|
+
import django.db.models.deletion
|
|
4
5
|
from django.db import migrations, models
|
|
5
6
|
|
|
7
|
+
# AA Mumble Quick Connect
|
|
8
|
+
import aa_mumble_quick_connect.models
|
|
9
|
+
|
|
6
10
|
|
|
7
11
|
class Migration(migrations.Migration):
|
|
8
12
|
|
|
@@ -30,4 +34,74 @@ class Migration(migrations.Migration):
|
|
|
30
34
|
"default_permissions": (),
|
|
31
35
|
},
|
|
32
36
|
),
|
|
37
|
+
migrations.CreateModel(
|
|
38
|
+
name="Section",
|
|
39
|
+
fields=[
|
|
40
|
+
(
|
|
41
|
+
"id",
|
|
42
|
+
models.AutoField(
|
|
43
|
+
auto_created=True,
|
|
44
|
+
primary_key=True,
|
|
45
|
+
serialize=False,
|
|
46
|
+
verbose_name="ID",
|
|
47
|
+
),
|
|
48
|
+
),
|
|
49
|
+
(
|
|
50
|
+
"name",
|
|
51
|
+
models.CharField(
|
|
52
|
+
help_text="Name of the section", max_length=255, unique=True
|
|
53
|
+
),
|
|
54
|
+
),
|
|
55
|
+
],
|
|
56
|
+
options={
|
|
57
|
+
"verbose_name": "Section",
|
|
58
|
+
"verbose_name_plural": "Sections",
|
|
59
|
+
"default_permissions": (),
|
|
60
|
+
},
|
|
61
|
+
),
|
|
62
|
+
migrations.CreateModel(
|
|
63
|
+
name="MumbleLink",
|
|
64
|
+
fields=[
|
|
65
|
+
(
|
|
66
|
+
"id",
|
|
67
|
+
models.AutoField(
|
|
68
|
+
auto_created=True,
|
|
69
|
+
primary_key=True,
|
|
70
|
+
serialize=False,
|
|
71
|
+
verbose_name="ID",
|
|
72
|
+
),
|
|
73
|
+
),
|
|
74
|
+
(
|
|
75
|
+
"name",
|
|
76
|
+
models.CharField(
|
|
77
|
+
help_text="Name of the Mumble channel", max_length=255
|
|
78
|
+
),
|
|
79
|
+
),
|
|
80
|
+
(
|
|
81
|
+
"url",
|
|
82
|
+
models.CharField(
|
|
83
|
+
help_text="URL to the channel",
|
|
84
|
+
max_length=255,
|
|
85
|
+
validators=[aa_mumble_quick_connect.models.validate_mumble_url],
|
|
86
|
+
),
|
|
87
|
+
),
|
|
88
|
+
(
|
|
89
|
+
"section",
|
|
90
|
+
models.ForeignKey(
|
|
91
|
+
blank=True,
|
|
92
|
+
help_text="Section the Mumble channel belongs to. (Optional)",
|
|
93
|
+
null=True,
|
|
94
|
+
on_delete=django.db.models.deletion.SET_NULL,
|
|
95
|
+
related_name="mumble_links",
|
|
96
|
+
to="aa_mumble_quick_connect.section",
|
|
97
|
+
verbose_name="Section",
|
|
98
|
+
),
|
|
99
|
+
),
|
|
100
|
+
],
|
|
101
|
+
options={
|
|
102
|
+
"verbose_name": "Mumble Link",
|
|
103
|
+
"verbose_name_plural": "Mumble Links",
|
|
104
|
+
"default_permissions": (),
|
|
105
|
+
},
|
|
106
|
+
),
|
|
33
107
|
]
|
{aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-mumble-quick-connect
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Quick connect links to your Mumble server channels
|
|
5
5
|
Project-URL: Changelog, https://github.com/ppfeufer/aa-mumble-quick-connect/blob/master/CHANGELOG.md
|
|
6
6
|
Project-URL: Documentation, https://github.com/ppfeufer/aa-mumble-quick-connect/blob/master/README.md
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
aa_mumble_quick_connect/__init__.py,sha256=
|
|
1
|
+
aa_mumble_quick_connect/__init__.py,sha256=_2uydXndjdsFb8X5YlRHN57FAKP5XJ7EBoCIFe3Y9ig,88
|
|
2
2
|
aa_mumble_quick_connect/admin.py,sha256=Xjvl3FcvOSBc-QBWb2XFDi9UkguPn3-NPi_LNhS8K50,496
|
|
3
3
|
aa_mumble_quick_connect/apps.py,sha256=rLXhexmN5A_QKiaDV7ZA-czIieC7o02kLrh0wx8B3_U,364
|
|
4
4
|
aa_mumble_quick_connect/auth_hooks.py,sha256=EV9n-R6fTdnv3qNyC-mnXJJdx4Fah9hfhkzF4VPwXSE,1585
|
|
@@ -6,7 +6,7 @@ aa_mumble_quick_connect/dependency_checks.py,sha256=N_-ssY1CW0_KnOQ6XkLdzuxa7MlB
|
|
|
6
6
|
aa_mumble_quick_connect/models.py,sha256=_tIsqvus1DrL76ER2oxYN8KhZb_1IaeDq9C-R6ZuEyQ,2160
|
|
7
7
|
aa_mumble_quick_connect/urls.py,sha256=2A9MbvakJGYYOeez6JuhPoSxrIaAGWgiOaY-sS07C84,237
|
|
8
8
|
aa_mumble_quick_connect/views.py,sha256=Li1x-RiNb7LYzkcZu-k7XQ8FRj6Sc4CjaWagM0inH_0,1138
|
|
9
|
-
aa_mumble_quick_connect/locale/django.pot,sha256=
|
|
9
|
+
aa_mumble_quick_connect/locale/django.pot,sha256=u6uKwb5kXagIrDQcjEHSDdropmIpMcEokr3Ampmncpo,2241
|
|
10
10
|
aa_mumble_quick_connect/locale/cs_CZ/LC_MESSAGES/django.po,sha256=V7A5u6W1ovX5jxsMmuQxw_YWvsvR5PsSJj10dEw6PUg,2362
|
|
11
11
|
aa_mumble_quick_connect/locale/de/LC_MESSAGES/django.mo,sha256=3K2tBa7Rg5qLwkxiGC1Rh31L18MgiqHYr7vuZgXt3wM,1640
|
|
12
12
|
aa_mumble_quick_connect/locale/de/LC_MESSAGES/django.po,sha256=1OktyX1O_mKjkDi3PM3v9EEF7iUhW4VFRZLkg7goT2o,2804
|
|
@@ -21,11 +21,7 @@ aa_mumble_quick_connect/locale/ru/LC_MESSAGES/django.po,sha256=y1aIu8VM-TuWu--tA
|
|
|
21
21
|
aa_mumble_quick_connect/locale/sk/LC_MESSAGES/django.po,sha256=bnwx8bSus9oNwobOI7esFGdnDnfrVytMhoSFZ1yTMUg,2357
|
|
22
22
|
aa_mumble_quick_connect/locale/uk/LC_MESSAGES/django.po,sha256=y1aIu8VM-TuWu--tAkWGya-1xpRVjK23yszVWxm2hXY,2367
|
|
23
23
|
aa_mumble_quick_connect/locale/zh_Hans/LC_MESSAGES/django.po,sha256=1FnuH0lMzxNUfQy0JLFbze7jnGt9yunTei_61d7uu_0,2275
|
|
24
|
-
aa_mumble_quick_connect/migrations/0001_initial.py,sha256
|
|
25
|
-
aa_mumble_quick_connect/migrations/0002_section_mumblelink.py,sha256=ZiVkwbatXEHnqdm_Hoy02tl1AUsNQvEy3Dc5yfwTjE8,2446
|
|
26
|
-
aa_mumble_quick_connect/migrations/0003_alter_mumblelink_url.py,sha256=nU3NyQkitZSH6e-Uh5s-gL0-duYF3gagSge0_GL9eCY,446
|
|
27
|
-
aa_mumble_quick_connect/migrations/0004_alter_mumblelink_url.py,sha256=Dg5f7woXAJJbplYtU1j3C2EQq8TKrqFNdYJJTjAaEB4,641
|
|
28
|
-
aa_mumble_quick_connect/migrations/0005_alter_mumblelink_name_alter_mumblelink_section.py,sha256=eai2Szz2mQCJQBkm-tyE0_BE2DIlIPNPsXnLNwE45sE,1014
|
|
24
|
+
aa_mumble_quick_connect/migrations/0001_initial.py,sha256=DVL1fCdvAtgw7jYpRP8dIm3EgMsRWhpes6LWtpDJefU,3303
|
|
29
25
|
aa_mumble_quick_connect/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
26
|
aa_mumble_quick_connect/static/aa_mumble_quick_connect/images/mumble-icon.png,sha256=FQMmSeEfIyrA3fux7reFNQ-rzCaXPfRRFcR7nvTxtRg,46940
|
|
31
27
|
aa_mumble_quick_connect/static/aa_mumble_quick_connect/libs/masonry-layout/4.2.2/masonry.pkgd.min.js,sha256=Nn1q_fx0H7SNLZMQ5Hw5JLaTRZp0yILA_FRexe19VdI,24103
|
|
@@ -41,7 +37,7 @@ aa_mumble_quick_connect/tests/test_auth_hooks.py,sha256=S82JzwKM4avQyHyVgBRCfPj7
|
|
|
41
37
|
aa_mumble_quick_connect/tests/test_models.py,sha256=uePj6MyKJ13YtIqDpnTh8h8FowX7U73CljBCAUJeP48,2017
|
|
42
38
|
aa_mumble_quick_connect/tests/test_templatetags.py,sha256=UQACDpf8vY2is0GvidBGg0Yn_Zw22kjE2CKv5YycNQw,954
|
|
43
39
|
aa_mumble_quick_connect/tests/utils.py,sha256=RVbqdYkiREkClWxZpPkfoMn5FBRr0jMdApk83JbjKa0,671
|
|
44
|
-
aa_mumble_quick_connect-0.0.
|
|
45
|
-
aa_mumble_quick_connect-0.0.
|
|
46
|
-
aa_mumble_quick_connect-0.0.
|
|
47
|
-
aa_mumble_quick_connect-0.0.
|
|
40
|
+
aa_mumble_quick_connect-0.0.2.dist-info/METADATA,sha256=hCrHU48FJ60l7nqIKpzJHDdjaM4JPUWSaIOxv6_djA0,47365
|
|
41
|
+
aa_mumble_quick_connect-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
42
|
+
aa_mumble_quick_connect-0.0.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
43
|
+
aa_mumble_quick_connect-0.0.2.dist-info/RECORD,,
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
# Generated by Django 4.2.19 on 2025-02-12 22:26
|
|
2
|
-
|
|
3
|
-
# Django
|
|
4
|
-
import django.db.models.deletion
|
|
5
|
-
from django.db import migrations, models
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class Migration(migrations.Migration):
|
|
9
|
-
|
|
10
|
-
dependencies = [
|
|
11
|
-
("aa_mumble_quick_connect", "0001_initial"),
|
|
12
|
-
]
|
|
13
|
-
|
|
14
|
-
operations = [
|
|
15
|
-
migrations.CreateModel(
|
|
16
|
-
name="Section",
|
|
17
|
-
fields=[
|
|
18
|
-
(
|
|
19
|
-
"id",
|
|
20
|
-
models.AutoField(
|
|
21
|
-
auto_created=True,
|
|
22
|
-
primary_key=True,
|
|
23
|
-
serialize=False,
|
|
24
|
-
verbose_name="ID",
|
|
25
|
-
),
|
|
26
|
-
),
|
|
27
|
-
(
|
|
28
|
-
"name",
|
|
29
|
-
models.CharField(
|
|
30
|
-
help_text="Name of the section", max_length=255, unique=True
|
|
31
|
-
),
|
|
32
|
-
),
|
|
33
|
-
],
|
|
34
|
-
options={
|
|
35
|
-
"verbose_name": "Section",
|
|
36
|
-
"verbose_name_plural": "Sections",
|
|
37
|
-
"default_permissions": (),
|
|
38
|
-
},
|
|
39
|
-
),
|
|
40
|
-
migrations.CreateModel(
|
|
41
|
-
name="MumbleLink",
|
|
42
|
-
fields=[
|
|
43
|
-
(
|
|
44
|
-
"id",
|
|
45
|
-
models.AutoField(
|
|
46
|
-
auto_created=True,
|
|
47
|
-
primary_key=True,
|
|
48
|
-
serialize=False,
|
|
49
|
-
verbose_name="ID",
|
|
50
|
-
),
|
|
51
|
-
),
|
|
52
|
-
(
|
|
53
|
-
"name",
|
|
54
|
-
models.CharField(
|
|
55
|
-
help_text="Name of the Mumble server/channel", max_length=255
|
|
56
|
-
),
|
|
57
|
-
),
|
|
58
|
-
(
|
|
59
|
-
"url",
|
|
60
|
-
models.URLField(help_text="URL to the channel", max_length=255),
|
|
61
|
-
),
|
|
62
|
-
(
|
|
63
|
-
"section",
|
|
64
|
-
models.ForeignKey(
|
|
65
|
-
blank=True,
|
|
66
|
-
null=True,
|
|
67
|
-
on_delete=django.db.models.deletion.SET_NULL,
|
|
68
|
-
related_name="mumble_links",
|
|
69
|
-
to="aa_mumble_quick_connect.section",
|
|
70
|
-
verbose_name="Section",
|
|
71
|
-
),
|
|
72
|
-
),
|
|
73
|
-
],
|
|
74
|
-
options={
|
|
75
|
-
"verbose_name": "Mumble Link",
|
|
76
|
-
"verbose_name_plural": "Mumble Links",
|
|
77
|
-
"default_permissions": (),
|
|
78
|
-
},
|
|
79
|
-
),
|
|
80
|
-
]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Generated by Django 4.2.19 on 2025-02-12 23:15
|
|
2
|
-
|
|
3
|
-
# Django
|
|
4
|
-
from django.db import migrations, models
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class Migration(migrations.Migration):
|
|
8
|
-
|
|
9
|
-
dependencies = [
|
|
10
|
-
("aa_mumble_quick_connect", "0002_section_mumblelink"),
|
|
11
|
-
]
|
|
12
|
-
|
|
13
|
-
operations = [
|
|
14
|
-
migrations.AlterField(
|
|
15
|
-
model_name="mumblelink",
|
|
16
|
-
name="url",
|
|
17
|
-
field=models.CharField(help_text="URL to the channel", max_length=255),
|
|
18
|
-
),
|
|
19
|
-
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Generated by Django 4.2.19 on 2025-02-12 23:22
|
|
2
|
-
|
|
3
|
-
# Django
|
|
4
|
-
from django.db import migrations, models
|
|
5
|
-
|
|
6
|
-
# AA Mumble Quick Connect
|
|
7
|
-
import aa_mumble_quick_connect.models
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class Migration(migrations.Migration):
|
|
11
|
-
|
|
12
|
-
dependencies = [
|
|
13
|
-
("aa_mumble_quick_connect", "0003_alter_mumblelink_url"),
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
operations = [
|
|
17
|
-
migrations.AlterField(
|
|
18
|
-
model_name="mumblelink",
|
|
19
|
-
name="url",
|
|
20
|
-
field=models.CharField(
|
|
21
|
-
help_text="URL to the channel",
|
|
22
|
-
max_length=255,
|
|
23
|
-
validators=[aa_mumble_quick_connect.models.validate_mumble_url],
|
|
24
|
-
),
|
|
25
|
-
),
|
|
26
|
-
]
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# Generated by Django 4.2.19 on 2025-02-13 11:22
|
|
2
|
-
|
|
3
|
-
# Django
|
|
4
|
-
import django.db.models.deletion
|
|
5
|
-
from django.db import migrations, models
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class Migration(migrations.Migration):
|
|
9
|
-
|
|
10
|
-
dependencies = [
|
|
11
|
-
("aa_mumble_quick_connect", "0004_alter_mumblelink_url"),
|
|
12
|
-
]
|
|
13
|
-
|
|
14
|
-
operations = [
|
|
15
|
-
migrations.AlterField(
|
|
16
|
-
model_name="mumblelink",
|
|
17
|
-
name="name",
|
|
18
|
-
field=models.CharField(
|
|
19
|
-
help_text="Name of the Mumble channel", max_length=255
|
|
20
|
-
),
|
|
21
|
-
),
|
|
22
|
-
migrations.AlterField(
|
|
23
|
-
model_name="mumblelink",
|
|
24
|
-
name="section",
|
|
25
|
-
field=models.ForeignKey(
|
|
26
|
-
blank=True,
|
|
27
|
-
help_text="Section the Mumble channel belongs to. (Optional)",
|
|
28
|
-
null=True,
|
|
29
|
-
on_delete=django.db.models.deletion.SET_NULL,
|
|
30
|
-
related_name="mumble_links",
|
|
31
|
-
to="aa_mumble_quick_connect.section",
|
|
32
|
-
verbose_name="Section",
|
|
33
|
-
),
|
|
34
|
-
),
|
|
35
|
-
]
|
|
File without changes
|
{aa_mumble_quick_connect-0.0.1.dist-info → aa_mumble_quick_connect-0.0.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|