rapid-router 7.5.7__py2.py3-none-any.whl → 7.5.8__py2.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.
- example_project/rapid_router_test_settings.py +3 -3
- example_project/settings.py +3 -3
- game/__init__.py +1 -1
- game/templates/game/basenonav.html +2 -2
- {rapid_router-7.5.7.dist-info → rapid_router-7.5.8.dist-info}/METADATA +4 -4
- {rapid_router-7.5.7.dist-info → rapid_router-7.5.8.dist-info}/RECORD +9 -9
- {rapid_router-7.5.7.dist-info → rapid_router-7.5.8.dist-info}/WHEEL +0 -0
- {rapid_router-7.5.7.dist-info → rapid_router-7.5.8.dist-info}/licenses/LICENSE.md +0 -0
- {rapid_router-7.5.7.dist-info → rapid_router-7.5.8.dist-info}/top_level.txt +0 -0
|
@@ -114,15 +114,15 @@ PIPELINE = {
|
|
|
114
114
|
os.path.join(BASE_DIR, "static/portal/sass/colorbox.scss"),
|
|
115
115
|
os.path.join(BASE_DIR, "static/portal/sass/styles.scss"),
|
|
116
116
|
),
|
|
117
|
-
"output_filename": "portal.css",
|
|
117
|
+
"output_filename": "portal/css/portal.css",
|
|
118
118
|
},
|
|
119
119
|
"popup": {
|
|
120
120
|
"source_filenames": (os.path.join(BASE_DIR, "static/portal/sass/partials/_popup.scss"),),
|
|
121
|
-
"output_filename": "popup.css",
|
|
121
|
+
"output_filename": "portal/css/popup.css",
|
|
122
122
|
},
|
|
123
123
|
"game-scss": {
|
|
124
124
|
"source_filenames": (os.path.join(BASE_DIR, "static/game/sass/game.scss"),),
|
|
125
|
-
"output_filename": "game.css",
|
|
125
|
+
"output_filename": "game/css/gamestyles.css",
|
|
126
126
|
},
|
|
127
127
|
},
|
|
128
128
|
"CSS_COMPRESSOR": None,
|
example_project/settings.py
CHANGED
|
@@ -101,15 +101,15 @@ PIPELINE = {
|
|
|
101
101
|
os.path.join(BASE_DIR, "static/portal/sass/colorbox.scss"),
|
|
102
102
|
os.path.join(BASE_DIR, "static/portal/sass/styles.scss"),
|
|
103
103
|
),
|
|
104
|
-
"output_filename": "portal.css",
|
|
104
|
+
"output_filename": "portal/css/portal.css",
|
|
105
105
|
},
|
|
106
106
|
"popup": {
|
|
107
107
|
"source_filenames": (os.path.join(BASE_DIR, "static/portal/sass/partials/_popup.scss"),),
|
|
108
|
-
"output_filename": "popup.css",
|
|
108
|
+
"output_filename": "portal/css/popup.css",
|
|
109
109
|
},
|
|
110
110
|
"game-scss": {
|
|
111
111
|
"source_filenames": (os.path.join(BASE_DIR, "static/game/sass/game.scss"),),
|
|
112
|
-
"output_filename": "game.css",
|
|
112
|
+
"output_filename": "game/css/gamestyles.css",
|
|
113
113
|
},
|
|
114
114
|
},
|
|
115
115
|
"CSS_COMPRESSOR": None,
|
game/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "7.5.
|
|
1
|
+
__version__ = "7.5.8"
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
{% endblock head %}
|
|
9
9
|
|
|
10
10
|
{% block css %}
|
|
11
|
-
<link href="{% static 'game.css' %}" type="text/css" rel="stylesheet">
|
|
12
|
-
<link href="{% static 'popup.css' %}" type="text/css" rel="stylesheet">
|
|
11
|
+
<link href="{% static 'game/css/gamestyles.css' %}" type="text/css" rel="stylesheet">
|
|
12
|
+
<link href="{% static 'portal/css/popup.css' %}" type="text/css" rel="stylesheet">
|
|
13
13
|
<link href="{% static 'game/css/backgrounds.css' %}" rel="stylesheet" type="text/css">
|
|
14
14
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500&display=swap" rel="stylesheet">
|
|
15
15
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rapid-router
|
|
3
|
-
Version: 7.5.
|
|
3
|
+
Version: 7.5.8
|
|
4
4
|
Classifier: Programming Language :: Python
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.12
|
|
6
6
|
Classifier: Framework :: Django
|
|
@@ -8,7 +8,7 @@ License-File: LICENSE.md
|
|
|
8
8
|
Requires-Dist: asgiref==3.8.1; python_version >= "3.8"
|
|
9
9
|
Requires-Dist: asttokens==3.0.0; python_version >= "3.8"
|
|
10
10
|
Requires-Dist: certifi==2025.4.26; python_version >= "3.6"
|
|
11
|
-
Requires-Dist: cfl-common==8.6.
|
|
11
|
+
Requires-Dist: cfl-common==8.6.11
|
|
12
12
|
Requires-Dist: charset-normalizer==3.4.2; python_version >= "3.7"
|
|
13
13
|
Requires-Dist: decorator==5.2.1; python_version >= "3.8"
|
|
14
14
|
Requires-Dist: diff-match-patch==20241021; python_version >= "3.7"
|
|
@@ -63,11 +63,11 @@ Requires-Dist: asgiref==3.8.1; python_version >= "3.8" and extra == "dev"
|
|
|
63
63
|
Requires-Dist: attrs==25.3.0; python_version >= "3.8" and extra == "dev"
|
|
64
64
|
Requires-Dist: black==25.1.0; python_version >= "3.9" and extra == "dev"
|
|
65
65
|
Requires-Dist: certifi==2025.4.26; python_version >= "3.6" and extra == "dev"
|
|
66
|
-
Requires-Dist: cfl-common==8.6.
|
|
66
|
+
Requires-Dist: cfl-common==8.6.11; extra == "dev"
|
|
67
67
|
Requires-Dist: chardet==5.2.0; python_version >= "3.7" and extra == "dev"
|
|
68
68
|
Requires-Dist: charset-normalizer==3.4.2; python_version >= "3.7" and extra == "dev"
|
|
69
69
|
Requires-Dist: click==8.2.0; python_version >= "3.10" and extra == "dev"
|
|
70
|
-
Requires-Dist: codeforlife-portal==8.6.
|
|
70
|
+
Requires-Dist: codeforlife-portal==8.6.11; extra == "dev"
|
|
71
71
|
Requires-Dist: diff-match-patch==20241021; python_version >= "3.7" and extra == "dev"
|
|
72
72
|
Requires-Dist: django==5.1.9; python_version >= "3.10" and extra == "dev"
|
|
73
73
|
Requires-Dist: django-classy-tags==4.1.0; python_version >= "3.8" and extra == "dev"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
example_project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
example_project/rapid_router_test_settings.py,sha256=
|
|
3
|
-
example_project/settings.py,sha256
|
|
2
|
+
example_project/rapid_router_test_settings.py,sha256=3PPkhCEztAn-WGLQ-Bf2hA5n1q_MevJ-9beyP7z1t50,4789
|
|
3
|
+
example_project/settings.py,sha256=-Lsw_DJow_LaKaTE4DNfY69o3cclXUHNoWNybPBHIqY,4333
|
|
4
4
|
example_project/urls.py,sha256=XHug_cpNy21yOef3E1-wWT5VkTuxpl6ZXIlCj6jDjWA,422
|
|
5
5
|
example_project/wsgi.py,sha256=U1W6WzZxZaIdYZ5tks7w9fqp5WS5qvn2iThsVcskrWw,829
|
|
6
|
-
game/__init__.py,sha256=
|
|
6
|
+
game/__init__.py,sha256=RTeWSSrTYUMVo7r3tdWZMRgEYHg-qo3WTuYPqczKclI,22
|
|
7
7
|
game/admin.py,sha256=BLwwaqQYuqmMdwqnvhdan19iGxdcoBX4CXFk_ROG5-M,1431
|
|
8
8
|
game/app_settings.py,sha256=mlg-1AiP7AR5JNOHAXXLuCrYWaZMmSihvSYk9c2c8YY,857
|
|
9
9
|
game/cache.py,sha256=dtOiFl6Z4I2Q9-8Hz24ZI-5C0asXYSQhF2Be5q74N8g,2227
|
|
@@ -759,7 +759,7 @@ game/static/icons/dee-192x192.png,sha256=3LOIgqxxIlXgcpc3xjDzh3Uz2nPk3T-smp2iUCN
|
|
|
759
759
|
game/static/icons/dee-384x384.png,sha256=U92qaqLNGmhEs1nUwlq4x0Y_nHr2bTv-yahRVd-6uog,101341
|
|
760
760
|
game/static/icons/dee-512x512.png,sha256=YRhxZFcTzs-2y2qDfPPdkCz5K6F7sylJm0C7YNt9kNk,155467
|
|
761
761
|
game/templates/game/base.html,sha256=coSiyctNfJlPPH9smenCoQhvfSIYOKz181YN-8TZYpc,3768
|
|
762
|
-
game/templates/game/basenonav.html,sha256=
|
|
762
|
+
game/templates/game/basenonav.html,sha256=XG134a66OpQNrPvU76YwpXo9wj1YEl4s5NmBBcR1MD8,3746
|
|
763
763
|
game/templates/game/crowdin.html,sha256=3wgp2vHxD117oy8hNALjyPutHm6iMdY0eNJYCQtqnAI,299
|
|
764
764
|
game/templates/game/error.html,sha256=pu_WX5DtctmhD2enf5rC--Uys_7NOPtndsYKSOF08Mk,167
|
|
765
765
|
game/templates/game/game.html,sha256=3Bdh7SKDTcSP6CXW1Et2q9Igb3Ml6Ld8TDRcOAKc0-U,30479
|
|
@@ -800,8 +800,8 @@ game/views/level_selection.py,sha256=UI345nDv5iTRQ7VttiLKLzezJlaSlaKOnhlALZgMU9Q
|
|
|
800
800
|
game/views/level_solutions.py,sha256=lfwLFvw4gFuptTkL2J_ibhnuiysl3Yao15sn2qoQlcE,97194
|
|
801
801
|
game/views/scoreboard.py,sha256=Lxy7XtoG7VwWpTb-c22BGC6eN8uCmmOnQ2qjY-oXA3k,16914
|
|
802
802
|
game/views/scoreboard_csv.py,sha256=yx4tOwx5QsHyU1S1BUPUqRBWIh5idq8QVtBID-NqZto,1768
|
|
803
|
-
rapid_router-7.5.
|
|
804
|
-
rapid_router-7.5.
|
|
805
|
-
rapid_router-7.5.
|
|
806
|
-
rapid_router-7.5.
|
|
807
|
-
rapid_router-7.5.
|
|
803
|
+
rapid_router-7.5.8.dist-info/licenses/LICENSE.md,sha256=9AbRlCDqD2D1tPibimysFv3zg3AIc49-eyv9aEsyq9w,115
|
|
804
|
+
rapid_router-7.5.8.dist-info/METADATA,sha256=20ORDvHHhorOf8yssoCsOLRNDHGikBLSfu4gt1f5Lyc,9113
|
|
805
|
+
rapid_router-7.5.8.dist-info/WHEEL,sha256=_z0Kb-VmhLeNt2nZ-PsoQBjD25rP0tBwgAyRYD7oTKI,109
|
|
806
|
+
rapid_router-7.5.8.dist-info/top_level.txt,sha256=rKP4ryr1t8Wcnx8grJHDViM3T5cMYH_0vygDjC04ArA,21
|
|
807
|
+
rapid_router-7.5.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|