Skip to content

Commit

Permalink
chore: v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Dec 3, 2024
1 parent 425e161 commit 542308d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
4 changes: 2 additions & 2 deletions publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ name: uniCMS - Bootstrap Italia template
platforms:
- linux
- web
releaseDate: '2024-11-05'
releaseDate: '2024-12-03'
roadmap: 'https://github.com/UniversitaDellaCalabria/unicms-template-italia/issues'
softwareType: standalone/web
softwareVersion: v1.3.1
softwareVersion: v1.3.2
url: 'https://github.com/UniversitaDellaCalabria/unicms-template-italia'
usedBy:
- Università della Calabria - https://www.unical.it
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name=PKG_NAME,
version='1.3.1',
version='1.3.2',

packages=[PKG_NAME],
package_dir={PKG_NAME: f"{SRC_FOLDER}/{PKG_NAME}"},
Expand All @@ -39,14 +39,16 @@
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 3.0',
'Framework :: Django :: 4.0',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
install_requires=[
'django>=2.0,<5.0',
'django>=2.0,<6.0',
'design-django-theme'
],
)
17 changes: 3 additions & 14 deletions src/unicms_template_italia/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
('breadcrumbs', _('Breadcrumbs')),

# section 1
('section-1',
(
('1-top-a', _('Section 1 - Top A')),
('1-top-a', _('Section 1 - Top A')),
('1-top-b', _('Section 1 - Top B')),
('1-top-c', _('Section 1 - Top C')),
('1-mid-top-a', _('Section 1 - Middle Top A')),
Expand Down Expand Up @@ -47,12 +45,8 @@
('1-bottom-a', _('Section 1 - Bottom A')),
('1-bottom-b', _('Section 1 - Bottom B')),
('1-bottom-c', _('Section 1 - Bottom C')),
)
),

# section 2
('section-2',
(
('2-top-a', _('Section 2 - Top A')),
('2-top-b', _('Section 2 - Top B')),
('2-top-c', _('Section 2 - Top C')),
Expand Down Expand Up @@ -82,11 +76,8 @@
('2-bottom-a', _('Section 2 - Bottom A')),
('2-bottom-b', _('Section 2 - Bottom B')),
('2-bottom-c', _('Section 2 - Bottom C')),
)
),

('section-3',
(
# section 3
('3-top-a', _('Section 3 - Top A')),
('3-top-b', _('Section 3 - Top B')),
('3-top-c', _('Section 3 - Top C')),
Expand Down Expand Up @@ -116,8 +107,6 @@
('3-bottom-a', _('Section 3 - Bottom A')),
('3-bottom-b', _('Section 3 - Bottom B')),
('3-bottom-c', _('Section 3 - Bottom C')),
)
),
)


Expand All @@ -134,4 +123,4 @@

# CDN FOR STATICS
UNICMS_TEMPLATE_ITALIA_USE_CDN = False
UNICMS_TEMPLATE_ITALIA_CDN = 'https://cdn.jsdelivr.net/gh/UniversitaDellaCalabria/[email protected].1/src/unicms_template_italia/static'
UNICMS_TEMPLATE_ITALIA_CDN = 'https://cdn.jsdelivr.net/gh/UniversitaDellaCalabria/[email protected].2/src/unicms_template_italia/static'

0 comments on commit 542308d

Please sign in to comment.