Skip to content

Commit

Permalink
Show 'ダウンロードする' button if a given project is linked to GitHub release…
Browse files Browse the repository at this point in the history
…s page
  • Loading branch information
yasulab committed Nov 4, 2023
1 parent c29cd49 commit 19176e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _data/projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@

- id: code_museum
title: Code Museum - 読むことだけに特化したソースコードエディタ
description: Code Museumは、一般的なエディタからあえて「書く機能」をなくし、「読む機能」に特化したソースコードエディタです。範囲実行やGPTを活用した機能など、様々な「読む機能」があります。このエディタを使うことで、コードを読んでいる時間を短縮し、生産性を上げることができます。<br /><br />このソフトウェアは <a href='https://github.com/waryu-YND/code-museum-release/releases/tag/v1.0.0'>Code Museum release</a> からダウンロードできます。
description: Code Museumは、一般的なエディタからあえて「書く機能」をなくし、「読む機能」に特化したソースコードエディタです。範囲実行やGPTを活用した機能など、様々な「読む機能」があります。このエディタを使うことで、コードを読んでいる時間を短縮し、生産性を上げることができます。
thumbnail: code_museum.webp
#promotion: # YouTube上にPVがあれば追記する
final: OTjx_q-iI6I # TODO: 切り抜き動画が出たら更新する
final_start: 15490
#link: # 公式サイトがあれば追記する
link: https://github.com/waryu-YND/code-museum-release/releases/tag/v1.0.0
year: 2023
mentor_id: nishio_hirokazu
creator_ids:
Expand Down
4 changes: 3 additions & 1 deletion tasks/upsert_project_pages_by_data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
<div class='flex'>
{% if pj.link %}
{% if pj.link contains 'github.com' %}
{% if pj.link contains 'github.com' and pj.link contains 'releases' %}
<a href='{{ pj.link }}' target='_blank' class='button'>ダウンロードする</a>
{% elsif pj.link contains 'github.com' %}
<a href='{{ pj.link }}' target='_blank' class='button'>ソースコードを見る</a>
{% else %}
<a href='{{ pj.link }}' target='_blank' class='button'>公式サイトを見る</a>
Expand Down

0 comments on commit 19176e2

Please sign in to comment.