Skip to content

Commit

Permalink
- added support page with discord and GitHub issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Jun 22, 2020
1 parent 9eb0021 commit fb42549
Show file tree
Hide file tree
Showing 19 changed files with 217 additions and 12 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

## 1.0.5 (2020-06-22)

- added support page with discord and github issues
- added support page with discord and GitHub issues
- added colors for life, mana and energy shield pseudo stats
- added trade filter setting (Incoming & Outgoing, Incoming)
- added trade layout setting (Top To Bottom, Bottom To Top)
- added trade window to be transparent if no active trades and the window is pinned
- update trade action finished to be always shown even if no trade have been initalized
- fixed a focus issue occuring when using the trade whisper button
- fixed a sorting issue at the market result list
- update trade action finished to be always shown even if no trade have been initialized
- fixed an focus issue occurring when using the trade whisper button
- fixed an sorting issue at the market result list
- fixed an issue at the inspect frame not showing dps

## 1.0.4 (2020-06-19)

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"meta": {
"name": "PoE Overlay",
"author": "Kyusung4698",
"version": "1.0.4",
"version": "1.0.5",
"minimum-overwolf-version": "0.147.0",
"description": "Search the market and send trade offers. Get current market values for your item. View insights for maps and items.",
"dock_button_title": "PoE Overlay",
Expand Down
111 changes: 111 additions & 0 deletions overlay.babel
Original file line number Diff line number Diff line change
Expand Up @@ -3068,6 +3068,117 @@
</concept_node>
</children>
</folder_node>
<folder_node>
<name>support</name>
<children>
<concept_node>
<name>message</name>
<definition_loaded>false</definition_loaded>
<description></description>
<comment></comment>
<default_text></default_text>
<translations>
<translation>
<language>de-DE</language>
<approved>false</approved>
</translation>
<translation>
<language>en-US</language>
<approved>false</approved>
</translation>
<translation>
<language>es-ES</language>
<approved>false</approved>
</translation>
<translation>
<language>fr-FR</language>
<approved>false</approved>
</translation>
<translation>
<language>ko-KR</language>
<approved>false</approved>
</translation>
<translation>
<language>pl-PL</language>
<approved>false</approved>
</translation>
<translation>
<language>pt-BR</language>
<approved>false</approved>
</translation>
<translation>
<language>ru-RU</language>
<approved>false</approved>
</translation>
<translation>
<language>th-TH</language>
<approved>false</approved>
</translation>
<translation>
<language>zh-CHS</language>
<approved>false</approved>
</translation>
<translation>
<language>zh-CHT</language>
<approved>false</approved>
</translation>
</translations>
</concept_node>
<concept_node>
<name>title</name>
<definition_loaded>false</definition_loaded>
<description></description>
<comment></comment>
<default_text></default_text>
<translations>
<translation>
<language>de-DE</language>
<approved>false</approved>
</translation>
<translation>
<language>en-US</language>
<approved>false</approved>
</translation>
<translation>
<language>es-ES</language>
<approved>false</approved>
</translation>
<translation>
<language>fr-FR</language>
<approved>false</approved>
</translation>
<translation>
<language>ko-KR</language>
<approved>false</approved>
</translation>
<translation>
<language>pl-PL</language>
<approved>false</approved>
</translation>
<translation>
<language>pt-BR</language>
<approved>false</approved>
</translation>
<translation>
<language>ru-RU</language>
<approved>false</approved>
</translation>
<translation>
<language>th-TH</language>
<approved>false</approved>
</translation>
<translation>
<language>zh-CHS</language>
<approved>false</approved>
</translation>
<translation>
<language>zh-CHT</language>
<approved>false</approved>
</translation>
</translations>
</concept_node>
</children>
</folder_node>
<folder_node>
<name>thanks</name>
<children>
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": "poe-overlay-overwolf",
"version": "1.0.4",
"version": "1.0.5",
"scripts": {
"watch": "ng build --watch",
"watch:prod": "ng build --watch --prod",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { InspectFeatureSettings } from '@modules/inspect/inspect-feature-settings';
import { Item } from '@shared/module/poe/item';
import { WikiMapService } from '@shared/module/poe/wiki';
import { InspectFeatureSettings } from '@modules/inspect/inspect-feature-settings';

@Component({
selector: 'app-inspect-item',
Expand All @@ -10,7 +10,10 @@ import { InspectFeatureSettings } from '@modules/inspect/inspect-feature-setting
changeDetection: ChangeDetectionStrategy.OnPush
})
export class InspectItemComponent implements OnInit {
public properties = [];
public properties = [
'weaponCriticalStrikeChance',
'weaponAttacksPerSecond'
];
public maps: string[];

@Input()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,41 @@
}
}
}

.life {
.text,
.value,
.value.changed {
color: $red;

.text {
color: $red !important;
}
}
}

.mana {
.text,
.value,
.value.changed {
color: $river;

.text {
color: $river !important;
}
}
}

.es {
.text,
.value,
.value.changed {
color: $emerald;

.text {
color: $emerald !important;
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ export class ItemFrameStatsComponent {
if (!id || id.length === 0) {
return '';
}

switch (id) {
case 'pseudo_total_life':
return 'life';
case 'pseudo_total_mana':
return 'mana';
case 'pseudo_total_energy_shield':
case 'pseudo_increased_energy_shield':
return 'es';
}
if (id.includes('fire_')) {
return 'fire';
}
Expand All @@ -41,7 +49,6 @@ export class ItemFrameStatsComponent {
if (id.includes('chaos_')) {
return 'chaos';
}

return '';
}
}
6 changes: 5 additions & 1 deletion src/assets/i18n/english.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"title": "Bookmarks"
},
"changelog-1-0-5": {
"message": "- added support page with discord and github issues\n- added trade filter setting (Incoming & Outgoing, Incoming)\n- added trade layout setting (Top To Bottom, Bottom To Top)\n- added trade window to be transparent if no active trades and the window is pinned\n- update trade action finished to be always shown even if no trade have been initalized\n- fixed a focus issue occuring when using the trade whisper button\n- fixed a sorting issue at the market result list",
"message": "- added support page with discord and GitHub issues\n- added colors for life, mana and energy shield pseudo stats\n- added trade filter setting (Incoming & Outgoing, Incoming)\n- added trade layout setting (Top To Bottom, Bottom To Top)\n- added trade window to be transparent if no active trades and the window is pinned\n- update trade action finished to be always shown even if no trade have been initialized\n- fixed an focus issue occurring when using the trade whisper button\n- fixed an sorting issue at the market result list\n- fixed an issue at the inspect frame not showing dps",
"title": "What's new in 1.0.5?"
},
"commands": {
Expand Down Expand Up @@ -109,6 +109,10 @@
"message": "Open the settings window by pressing following hotkey:",
"title": "Settings"
},
"support": {
"message": "Do you have a question? Or do you want to request a new feature?\n\nCheck the support tab at the settings menu for further information.\n\nAlso if you love the app, consider supporting me by subscribing.",
"title": "Support"
},
"thanks": {
"message": "That's it for now. Hope you enjoy my app. \n\n- Best regards, Kyusung4698",
"title": "Thank you!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/french.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Ouvrez la fenêtre des paramètres en appuyant sur la touche de raccourci suivante:",
"title": "Réglages"
},
"support": {
"message": "As-tu une question? Ou souhaitez-vous demander une nouvelle fonctionnalité?\n\nVérifiez l'onglet d'assistance dans le menu des paramètres pour plus d'informations.\n\nAussi, si vous aimez l'application, pensez à me soutenir en vous abonnant.",
"title": "Soutien"
},
"thanks": {
"message": "C'est tout pour le moment. J'espère que vous apprécierez mon application.\n\n- Cordialement, Kyusung4698",
"title": "Je vous remercie!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/german.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Öffnen Sie das Einstellungsfenster, indem Sie den folgenden Hotkey drücken:",
"title": "Einstellungen"
},
"support": {
"message": "Hast du eine Frage? Oder möchten Sie eine neue Funktion anfordern?\n\nWeitere Informationen finden Sie auf der Registerkarte Support im Einstellungsmenü.\n\nWenn Sie die App lieben, können Sie mich durch ein Abonnement unterstützen.",
"title": "Unterstützung"
},
"thanks": {
"message": "Das war es fürs Erste. Hoffe dir gefällt meine App.\n\n- Mit freundlichen Grüßen, Kyusung4698",
"title": "Vielen Dank!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/korean.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "다음 핫키를 눌러 설정 창을 엽니 다.",
"title": "설정"
},
"support": {
"message": "질문 있습니까? 아니면 새로운 기능을 요청 하시겠습니까?\n\n자세한 내용은 설정 메뉴에서 지원 탭을 확인하십시오.\n\n또한 당신이 응용 프로그램을 사랑한다면, 가입하여 나를 지원하는 것을 고려하십시오.",
"title": "지원하다"
},
"thanks": {
"message": "그게 다야. 내 앱을 즐기시기 바랍니다.\n\n-Kyusung4698 감사합니다",
"title": "고맙습니다!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/polish.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Otwórz okno ustawień, naciskając następujący skrót:",
"title": "Ustawienia"
},
"support": {
"message": "Masz pytanie? A może chcesz poprosić o nową funkcję?\n\nSprawdź kartę pomocy w menu ustawień, aby uzyskać dodatkowe informacje.\n\nRównież jeśli podoba Ci się aplikacja, rozważ wsparcie, subskrybując ją.",
"title": "Wsparcie"
},
"thanks": {
"message": "Na razie tyle. Mam nadzieję, że podoba Ci się moja aplikacja.\n\n- Z pozdrowieniami, Kyusung4698",
"title": "Dziękuję Ci!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/portuguese.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Abra a janela de configurações pressionando a seguinte tecla de atalho:",
"title": "Definições"
},
"support": {
"message": "Você tem uma pergunta? Ou você deseja solicitar um novo recurso?\n\nVerifique a guia de suporte no menu de configurações para obter mais informações.\n\nAlém disso, se você ama o aplicativo, considere apoiar-me assinando.",
"title": "Apoio, suporte"
},
"thanks": {
"message": "Por enquanto é isso. Espero que você goste do meu aplicativo.\n\n- Atenciosamente, Kyusung4698",
"title": "Obrigado!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/russian.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Откройте окно настроек, нажав следующую горячую клавишу:",
"title": "настройки"
},
"support": {
"message": "У вас есть вопрос? Или вы хотите запросить новую функцию?\n\nПроверьте вкладку поддержки в меню настроек для получения дополнительной информации.\n\nТакже, если вы любите приложение, рассмотрите поддержку меня, подписавшись.",
"title": "служба поддержки"
},
"thanks": {
"message": "Это пока что. Надеюсь, вам понравится мое приложение.\n\n- С наилучшими пожеланиями, Kyusung4698",
"title": "Спасибо!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/simplified-chinese.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "通过按以下热键打开设置窗口:",
"title": "设置"
},
"support": {
"message": "你有问题吗?还是要请求一项新功能?\n\n查看设置菜单上的支持标签以获取更多信息。\n\n另外,如果您喜欢该应用程序,请考虑通过订阅支持我。",
"title": "支持"
},
"thanks": {
"message": "现在就这样。希望您喜欢我的应用。\n\n-敬礼,Kyusung4698",
"title": "谢谢!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/spanish.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "Abra la ventana de configuración presionando la siguiente tecla de acceso rápido:",
"title": "Ajustes"
},
"support": {
"message": "¿Tienes una pregunta? ¿O quieres solicitar una nueva función?\n\nConsulte la pestaña de soporte en el menú de configuración para obtener más información.\n\nAdemás, si te encanta la aplicación, considera apoyarme suscribiéndote.",
"title": "Apoyo"
},
"thanks": {
"message": "Eso es todo por ahora. Espero que disfrutes mi aplicación.\n\n- Saludos cordiales, Kyusung4698",
"title": "¡Gracias!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/thai.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "เปิดหน้าต่างการตั้งค่าโดยกดปุ่มลัดต่อไปนี้:",
"title": "การตั้งค่า"
},
"support": {
"message": "คุณมีคำถาม? หรือคุณต้องการที่จะขอคุณสมบัติใหม่?\n\nตรวจสอบแท็บการสนับสนุนที่เมนูการตั้งค่าสำหรับข้อมูลเพิ่มเติม\n\nนอกจากนี้ถ้าคุณรักแอปให้พิจารณาสนับสนุนฉันด้วยการสมัครรับข้อมูล",
"title": "สนับสนุน"
},
"thanks": {
"message": "แค่นี้แหละ หวังว่าคุณจะสนุกกับแอพของฉัน\n\n- ขอแสดงความนับถือ Kyusung4698",
"title": "ขอขอบคุณ!"
Expand Down
4 changes: 4 additions & 0 deletions src/assets/i18n/traditional-chinese.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
"message": "通過按以下熱鍵打開設置窗口:",
"title": "設置"
},
"support": {
"message": "你有問題嗎?還是要請求一項新功能?\n\n查看設置菜單上的支持標籤以獲取更多信息。\n\n另外,如果您喜歡該應用程序,請考慮通過訂閱支持我。",
"title": "支持"
},
"thanks": {
"message": "現在就這樣。希望您喜歡我的應用。\n\n-敬禮,Kyusung4698",
"title": "謝謝!"
Expand Down
4 changes: 3 additions & 1 deletion src/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ $light-white: #fff8e1;
$red: #e63244;
$pink: #e745ad;
$aqua: #1ba29b;
$river: #3498db;
$emerald: #2ecc71;
$black-transparent: rgba(0, 0, 0, 0.6);

/* colors */
Expand All @@ -32,4 +34,4 @@ $black: #000;
$gutter: 6px;
$gutter-half: $gutter / 2;

$label-color: rgba(200, 200, 200, 0.54);
$label-color: rgba(200, 200, 200, 0.54);

0 comments on commit fb42549

Please sign in to comment.