Skip to content

Release v2.0.0 #46

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

Merged
merged 4 commits into from
Jun 10, 2022
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
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Redmine GTT S.M.A.S.H Plugin

![CI #develop](https://github.com/gtt-project/redmine_gtt_smash/workflows/Test%20with%20Redmine/badge.svg)
<!-- ![CI #develop](https://github.com/gtt-project/redmine_gtt_smash/workflows/Test%20with%20Redmine/badge.svg) -->

The Geo-Task-Tracker (GTT) S.M.A.S.H plugin adds support for the mobile app [S.M.A.S.H](https://github.com/moovida/smash):

Expand All @@ -13,7 +13,7 @@ The Geo-Task-Tracker (GTT) S.M.A.S.H plugin adds support for the mobile app [S.M

Redmine GTT S.M.A.S.H **requires PostgreSQL/PostGIS** and will not work with SQLite or MariaDB/MySQL!!!

- Redmine >= 4.0.0
- Redmine >= 4.2.0
- [redmine_gtt](https://github.com/gtt-project/redmine_gtt/) plugin

## Installation
Expand Down Expand Up @@ -70,12 +70,15 @@ The GTT Project appreciates any [contributions](https://github.com/gtt-project/.

## Version History

- 2.0.0 Support more SMASH data types by adding tracker setting with API endpoint

See [all releases](https://github.com/gtt-project/redmine_gtt_smash/releases) with release notes.

## Authors

- [Ko Nagase](https://github.com/sanak)
- [Daniel Kastl](https://github.com/dkastl)
- [Nisai Nob](https://github.com/nobnisai)
- ... [and others](https://github.com/gtt-project/redmine_gtt_smash/graphs/contributors)

## LICENSE
Expand Down
10 changes: 5 additions & 5 deletions config/locales/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ ja:
permission_view_gtt_smash: "GTT SMASHの閲覧"
project_module_gtt_smash: "GTT SMASH"

tracker_simple_note: "Tracker for Simple Notes"
tracker_photo_note: "Tracker for Photo Notes"
tracker_gps_log: "Tracker for GPS Logs"
default_subject: "Default subject"
field_tracker_simple_note: "シンプルノート用トラッカー"
field_tracker_photo_note: "フォトノート用トラッカー"
field_tracker_gps_log: "GPSログ用トラッカー"
field_default_subject: "デフォルトの題名"

setting_message: "Caution: ensure that selected trackers do not have required custom fields!"
setting_message: "注意: 選択したトラッカーに必須カスタムフィールドがないことを確認してください!"
4 changes: 2 additions & 2 deletions init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
author_url 'https://github.com/georepublic'
url 'https://github.com/gtt-project/redmine_gtt_smash'
description 'Adds SMASH integration capabilities for GTT projects'
version '1.0.0'
version '2.0.0'

requires_redmine :version_or_higher => '4.0.0'
requires_redmine :version_or_higher => '4.2.0'

settings(
default: {
Expand Down