Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure icons are added to assets #348

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
author_url 'https://github.com/georepublic'
url 'https://github.com/gtt-project/redmine_gtt'
description 'Adds location-based task management and maps'
version '6.0.1'
version '6.0.2'

requires_redmine :version_or_higher => '5.1.0'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redmine_gtt",
"version": "6.0.1",
"version": "6.0.2",
"description": "Plugin that adds spatial capabilities to Redmine",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
1 change: 1 addition & 0 deletions src/styles/icons/custom/custom-icons-def.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as FontFaceObserver from 'fontfaceobserver';
import FontSymbol from 'ol-ext/style/FontSymbol';
import './custom-icons.woff2';

const iconMappings: { [key: string]: any } = {
'lobsta': '\uf101',
Expand Down
3 changes: 3 additions & 0 deletions src/styles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ import '@mdi/font/css/materialdesignicons.css';

// Import Material Design icons definition JS file to define icon names and variations
import './icons/material-design/material-design-def';

// Import plugin SVG icons to make them available in assets/images
import './images/icons.svg';
Loading