<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NAGAOKA STATION</title>
	<atom:link href="https://nstjp.com/feed" rel="self" type="application/rss+xml" />
	<link>https://nstjp.com</link>
	<description>個人的メモ、ゲーム・iPhone等のニュースや自作ソフトの紹介など</description>
	<lastBuildDate>Tue, 09 Jun 2026 05:27:10 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://nstjp.com/img/nstation152.png</url>
	<title>NAGAOKA STATION</title>
	<link>https://nstjp.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>iOS 27 / iPadOS 27に向けたUIKitアプリのリサイズ対応・Scene対応まとめ</title>
		<link>https://nstjp.com/xcode/1653.html</link>
					<comments>https://nstjp.com/xcode/1653.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Tue, 09 Jun 2026 05:27:08 +0000</pubDate>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iOS27]]></category>
		<category><![CDATA[Xcode27]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1653</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/Xcode26.png" class="webfeedsFeaturedVisual" /></p>iOS 27 / iPadOS 27に向けたUIKitアプリのリサイズ対応・Scene対応まとめ iOS 27 / iPadOS 27 に向けた UIKit アプリの対応内容をメモ。 対応が必要な項目 UIScene l [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/Xcode26.png" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">iOS 27 / iPadOS 27に向けたUIKitアプリのリサイズ対応・Scene対応まとめ</p>



<p class="wp-block-paragraph">iOS 27 / iPadOS 27 に向けた UIKit アプリの対応内容をメモ。</p>



<span id="more-1653"></span>



<h2 class="wp-block-heading">対応が必要な項目</h2>



<ul class="wp-block-list">
<li>UIScene life-cycle への移行</li>



<li>AppDelegate 中心の画面管理の見直し</li>



<li>UIWindow / rootViewController の生成処理の見直し</li>



<li>SceneDelegate の追加</li>



<li>画面サイズ固定前提のレイアウト修正</li>



<li>iPad のウインドウリサイズ対応</li>



<li>iPhone Mirroring でのリサイズ対応</li>



<li>size class / traitCollection を使った表示切り替え</li>



<li>端末向き依存の処理の見直し</li>



<li>画面サイズ取得処理の見直し</li>
</ul>



<h2 class="wp-block-heading">UIScene life-cycle 対応</h2>



<p class="wp-block-paragraph">UIKitアプリでは、Scene対応の確認を行います。</p>



<p class="wp-block-paragraph">対応内容:</p>



<ol class="wp-block-list">
<li>SceneDelegate を追加</li>



<li>Info.plist に UIApplicationSceneManifest を追加</li>



<li>AppDelegate の window 管理を削除または整理</li>



<li>SceneDelegate 側で UIWindow を作成</li>



<li>windowScene を使って UIWindow を初期化</li>



<li>rootViewController を設定</li>



<li>makeKeyAndVisible を呼び出す</li>
</ol>



<h2 class="wp-block-heading">Swift / Objective-C アプリで確認する項目</h2>



<p class="wp-block-paragraph">既存UIKitアプリでは、以下を確認します。</p>



<ul class="wp-block-list">
<li>AppDelegate に window 生成処理が残っていないか</li>



<li>SceneDelegate が追加されているか</li>



<li>Info.plist に Scene 設定があるか</li>



<li>UIApplicationSceneManifest が設定されているか</li>



<li>SceneDelegate が正しく指定されているか</li>



<li>rootViewController の設定場所が適切か</li>



<li>foreground / background の処理が Scene 単位になっているか</li>
</ul>



<h2 class="wp-block-heading">AppDelegate から移動を検討する処理</h2>



<p class="wp-block-paragraph">AppDelegate にある以下の処理は、SceneDelegate 側への移動を検討します。</p>



<ul class="wp-block-list">
<li>window の生成</li>



<li>rootViewController の設定</li>



<li>画面表示開始時の初期化</li>



<li>foreground / background 切り替え処理</li>



<li>active / inactive 切り替え処理</li>
</ul>



<p class="wp-block-paragraph">Scene対応後は、アプリ単位ではなく scene 単位で状態を扱います。</p>



<h2 class="wp-block-heading">リサイズ対応</h2>



<p class="wp-block-paragraph">UIKitアプリでは、画面サイズ固定を前提にした実装を見直します。</p>



<p class="wp-block-paragraph">確認項目:</p>



<ul class="wp-block-list">
<li>Auto Layout が正しく動作するか</li>



<li>Safe Area を考慮しているか</li>



<li>小さいウインドウ幅で表示が崩れないか</li>



<li>iPad の Split View / Slide Over で問題ないか</li>



<li>iPhone Mirroring のリサイズで問題ないか</li>



<li>ナビゲーションバーのボタンが重ならないか</li>



<li>モーダル表示が狭い幅でも操作できるか</li>



<li>テーブル / コレクション表示が幅に応じて調整されるか</li>



<li>横向き / 縦向きの切り替えに依存しすぎていないか</li>
</ul>



<h2 class="wp-block-heading">見直すAPI</h2>



<p class="wp-block-paragraph">Swift / Objective-C の既存コードでは、以下のAPIを検索します。</p>



<ul class="wp-block-list">
<li>UIScreen.main / [UIScreen mainScreen]</li>



<li>UIApplication.shared.windows / [UIApplication sharedApplication].windows</li>



<li>UIApplication.shared.keyWindow / [UIApplication sharedApplication].keyWindow</li>



<li>UIDevice.current.orientation / [UIDevice currentDevice].orientation</li>



<li>固定幅 / 固定高さのレイアウト</li>



<li>端末名による分岐</li>



<li>iPad / iPhone の単純な端末判定</li>
</ul>



<p class="wp-block-paragraph">代替として、以下の利用を検討します。</p>



<ul class="wp-block-list">
<li>view.bounds</li>



<li>safeAreaInsets</li>



<li>windowScene</li>



<li>traitCollection</li>



<li>size class</li>



<li>Auto Layout</li>



<li>viewWillTransition</li>
</ul>



<h2 class="wp-block-heading">リサイズ対応で確認する画面</h2>



<p class="wp-block-paragraph">以下の画面は、特に確認します。</p>



<ul class="wp-block-list">
<li>トップ画面</li>



<li>一覧画面</li>



<li>詳細画面</li>



<li>設定画面</li>



<li>入力フォーム</li>



<li>画像表示画面</li>



<li>WebView 画面</li>



<li>モーダル表示</li>



<li>ナビゲーションバーを使う画面</li>



<li>タブバーを使う画面</li>
</ul>



<h2 class="wp-block-heading">iPad / iPhone Mirroring 対応</h2>



<p class="wp-block-paragraph">iPad や iPhone Mirroring では、アプリの表示領域が固定ではない場合があります。</p>



<p class="wp-block-paragraph">確認項目:</p>



<ul class="wp-block-list">
<li>ウインドウサイズ変更時に表示が崩れないか</li>



<li>横幅が狭い状態でも主要操作ができるか</li>



<li>画面端のボタンが隠れないか</li>



<li>Safe Area 外にUIが出ていないか</li>



<li>一覧と詳細の表示切り替えが適切か</li>



<li>端末の向きではなく、表示領域に応じてレイアウトを切り替えているか</li>
</ul>



<h2 class="wp-block-heading">Swift / Objective-C で特に確認する箇所</h2>



<p class="wp-block-paragraph">Swift / Objective-C の古いUIKitアプリでは、以下を確認します。</p>



<ul class="wp-block-list">
<li>AppDelegate に window プロパティが残っているか</li>



<li>didFinishLaunchingWithOptions で画面生成していないか</li>



<li>keyWindow を使って画面を取得していないか</li>



<li>mainScreen の bounds を基準にレイアウトしていないか</li>



<li>UIDeviceOrientation を前提に分岐していないか</li>



<li>Storyboard / XIB の制約が不足していないか</li>
</ul>



<h2 class="wp-block-heading">Xcode 27 の Agent Skills</h2>



<p class="wp-block-paragraph">Xcode 27 では、UIKitアプリの近代化を支援する Agent Skills が用意されています。</p>



<p class="wp-block-paragraph">以下のコマンドで、外部のAIコーディングツール向けに skill を書き出せます。</p>



<pre class="wp-block-code"><code>xcrun agent skills export</code></pre>



<p class="wp-block-paragraph">Claude Code、Codex、Google Antigravity など、Agent Skills 対応ツールで利用できるようです。</p>



<h2 class="wp-block-heading">確認手順</h2>



<ol class="wp-block-list">
<li>Xcode 27 beta でプロジェクトを開く</li>



<li>UIScene life-cycle に対応する</li>



<li>Swift / Objective-C の AppDelegate を確認する</li>



<li>SceneDelegate を追加する</li>



<li>Info.plist に Scene 設定を追加する</li>



<li>iPhone / iPad の各Simulatorで起動確認する</li>



<li>iPadでウインドウサイズを変更して表示確認する</li>



<li>iPhone Mirroring 相当のリサイズを想定して確認する</li>



<li>画面サイズや端末向き依存の処理を検索する</li>



<li>Auto Layout の警告を確認する</li>



<li>実機でforeground / background遷移を確認する</li>
</ol>



<h2 class="wp-block-heading">公式リンク</h2>



<ul class="wp-block-list">
<li>TN3187: Migrating to the UIKit scene-based life cycle<br><a href="https://developer.apple.com/documentation/technotes/tn3187-migrating-to-the-uikit-scene-based-life-cycle">https://developer.apple.com/documentation/technotes/tn3187-migrating-to-the-uikit-scene-based-life-cycle</a></li>



<li>Modernize your UIKit app &#8211; WWDC26<br><a href="https://developer.apple.com/videos/play/wwdc2026/278/">https://developer.apple.com/videos/play/wwdc2026/278/</a></li>



<li>Make your UIKit app more flexible &#8211; WWDC25<br><a href="https://developer.apple.com/videos/play/wwdc2025/282/">https://developer.apple.com/videos/play/wwdc2025/282/</a></li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/xcode/1653.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>iOS27(20)発表</title>
		<link>https://nstjp.com/iphone/1648.html</link>
					<comments>https://nstjp.com/iphone/1648.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Tue, 09 Jun 2026 00:48:23 +0000</pubDate>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iOS27]]></category>
		<category><![CDATA[Siri AI]]></category>
		<category><![CDATA[Xcode27]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1648</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/ios27.png" class="webfeedsFeaturedVisual" /></p>iOSの新バージョン「iOS27」が発表されました。 iOS27では、iOS26で導入された「Liquid Glass」デザインの調整、Apple Intelligence / Siri AIの強化、安定性とパフォーマン [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/ios27.png" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">iOSの新バージョン「iOS27」が発表されました。</p>



<p class="wp-block-paragraph">iOS27では、iOS26で導入された「Liquid Glass」デザインの調整、Apple Intelligence / Siri AIの強化、安定性とパフォーマンスの向上が中心となるようです。</p>



<p class="wp-block-paragraph">バージョン: iOS 27 beta<br>ビルド: 24A5355q<br>公開日: 2026年6月8日（米国時間）<br>対応: iPhone 11シリーズ、iPhone SE（第2世代）以降</p>



<h2 class="wp-block-heading">対応デバイス</h2>



<p class="wp-block-paragraph">iOS27の対応デバイスは、iOS26から変更はありません。</p>



<ul class="wp-block-list">
<li>iPhone 17 Pro Max</li>



<li>iPhone 17 Pro</li>



<li>iPhone Air</li>



<li>iPhone 17</li>



<li>iPhone 17e</li>



<li>iPhone 16 Pro Max</li>



<li>iPhone 16 Pro</li>



<li>iPhone 16 Plus</li>



<li>iPhone 16</li>



<li>iPhone 16e</li>



<li>iPhone 15 Pro Max</li>



<li>iPhone 15 Pro</li>



<li>iPhone 15 Plus</li>



<li>iPhone 15</li>



<li>iPhone 14 Pro Max</li>



<li>iPhone 14 Pro</li>



<li>iPhone 14 Plus</li>



<li>iPhone 14</li>



<li>iPhone SE（第3世代）</li>



<li>iPhone 13 Pro Max</li>



<li>iPhone 13 Pro</li>



<li>iPhone 13</li>



<li>iPhone 13 mini</li>



<li>iPhone 12 Pro Max</li>



<li>iPhone 12 Pro</li>



<li>iPhone 12</li>



<li>iPhone 12 mini</li>



<li>iPhone SE（第2世代）</li>



<li>iPhone 11 Pro Max</li>



<li>iPhone 11 Pro</li>



<li>iPhone 11</li>
</ul>



<p class="wp-block-paragraph">※ iPadOS 27、macOS 27、watchOS 27などは、前バージョンから対応機種が変更されています。</p>



<h2 class="wp-block-heading">主な更新内容</h2>



<ul class="wp-block-list">
<li>Liquid Glassデザインの調整</li>



<li>Apple Intelligence / Siri AIの強化</li>



<li>安定性とパフォーマンスの向上</li>
</ul>



<h2 class="wp-block-heading">同時リリース</h2>



<p class="wp-block-paragraph">iOS27 beta 以外にも、各OSのbeta版とXcode 27 betaがリリースされています。</p>



<ul class="wp-block-list">
<li>iOS 27 beta</li>



<li>iPadOS 27 beta</li>



<li>macOS 27 beta</li>



<li>tvOS 27 beta</li>



<li>visionOS 27 beta</li>



<li>watchOS 27 beta</li>



<li>Xcode 27 beta</li>
</ul>



<h2 class="wp-block-heading">公開時期</h2>



<ul class="wp-block-list">
<li>開発者向けベータ: 公開済み</li>



<li>パブリックベータ: 今後公開予定</li>



<li>正式版: 2026年秋頃公開予定</li>
</ul>



<h2 class="wp-block-heading">リンク</h2>



<ul class="wp-block-list">
<li>What’s new in iOS&nbsp;27: <a href="https://developer.apple.com/ios/whats-new/" target="_blank" rel="noreferrer noopener">https://developer.apple.com/ios/whats-new/</a></li>



<li>Applications: <a href="https://developer.apple.com/download/applications/" target="_blank" rel="noreferrer noopener">https://developer.apple.com/download/applications/</a></li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/iphone/1648.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DJI Mic Mini のRX（受信機）ファームウェア更新方法</title>
		<link>https://nstjp.com/memo/1641.html</link>
					<comments>https://nstjp.com/memo/1641.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Wed, 27 May 2026 11:31:20 +0000</pubDate>
				<category><![CDATA[メモ]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[dji mic mini]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[Update]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1641</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/B0DDLCLFFX.jpg" class="webfeedsFeaturedVisual" /></p>以下メモ DJI Mic Mini のRX（受信機）ファームウェア更新は、iPhoneのBluetooth設定画面からではなく、DJI Mimoアプリ経由で行います。 かなり分かりづらい仕様ですが、RXは通常のBluet [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/B0DDLCLFFX.jpg" class="webfeedsFeaturedVisual" /></p>
<figure class="wp-block-image size-full"><a href="/link/amazon/B0DDLCLFFX/" target="_blank" rel=" noreferrer noopener"><img decoding="async" width="1000" height="600" src="https://nstjp.com/img/B0DDLCLFFX.jpg" alt="" class="wp-image-1643"/></a></figure>



<p class="wp-block-paragraph"><br><br>以下メモ</p>



<span id="more-1641"></span>



<p class="wp-block-paragraph">DJI Mic Mini のRX（受信機）ファームウェア更新は、iPhoneのBluetooth設定画面からではなく、DJI Mimoアプリ経由で行います。</p>



<p class="wp-block-paragraph">かなり分かりづらい仕様ですが、RXは通常のBluetooth機器一覧には出ないことがあります。 &nbsp;</p>



<h2 class="wp-block-heading"><strong>iPhoneでRXをアップデートする手順</strong></h2>



<h3 class="wp-block-heading"><strong>1. DJI Mimoをインストール</strong></h3>



<p class="wp-block-paragraph">公式:<br><a href="https://www.dji.com/jp/mic-mini/downloads" data-type="link" data-id="https://www.dji.com/jp/mic-mini/downloads" target="_blank" rel="noreferrer noopener">DJI Mic Mini Downloads</a></p>



<h3 class="wp-block-heading"><strong>2. RXをBluetooth待機モードにする</strong></h3>



<p class="wp-block-paragraph">RXの電源OFF状態から：</p>



<ul class="wp-block-list">
<li>電源ボタン長押し 約6秒</li>



<li>LEDが青点滅になる</li>
</ul>



<p class="wp-block-paragraph">これでBluetooth待機モードです。 &nbsp;</p>



<h2 class="wp-block-heading"><strong>重要</strong></h2>



<p class="wp-block-paragraph">iPhoneの<br>「設定 → Bluetooth」<br>では接続しません。</p>



<p class="wp-block-paragraph">ここで探しても出ないことがあります。 &nbsp;</p>



<h3 class="wp-block-heading"><strong>3. DJI Mimoを開く</strong></h3>



<ul class="wp-block-list">
<li>「デバイス接続」</li>



<li>RXが表示されたら接続</li>



<li>ファームウェア更新</li>
</ul>



<h2 class="wp-block-heading"><strong>うまくいかない時</strong></h2>



<h3 class="wp-block-heading"><strong>RXをiPhoneから抜く</strong></h3>



<p class="wp-block-paragraph">USB-C接続したままだとBluetooth待機にならないことがあります。</p>



<h3 class="wp-block-heading"><strong>TXもONにする</strong></h3>



<p class="wp-block-paragraph">TX（マイク）側も電源ONにしておくと認識しやすいです。</p>



<h3 class="wp-block-heading"><strong>Bluetoothを一旦OFF/ON</strong></h3>



<p class="wp-block-paragraph">iPhone側Bluetooth再起動。</p>



<h3 class="wp-block-heading"><strong>MimoにBluetooth権限許可</strong></h3>



<p class="wp-block-paragraph">iPhone:</p>



<ul class="wp-block-list">
<li>設定</li>



<li>DJI Mimo</li>



<li>Bluetooth ON</li>
</ul>



<h3 class="wp-block-heading"><strong>RXリセット気味に再起動</strong></h3>



<ul class="wp-block-list">
<li>電源OFF</li>



<li>数秒待つ</li>



<li>再度6秒長押し</li>
</ul>



<h2 class="wp-block-heading"><strong>DJI公式仕様</strong></h2>



<p class="wp-block-paragraph">iOSでは、DJI Mic Miniのファームウェア更新はBluetooth経由のみ対応とされています。 &nbsp;</p>



<h2 class="wp-block-heading"><strong>LED状態</strong></h2>



<ul class="wp-block-list">
<li>青ゆっくり点滅 → Bluetooth待機</li>



<li>緑点滅 → TXを探している</li>



<li>黄点灯 → 更新中 &nbsp;</li>
</ul>


]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/memo/1641.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>2025年～2026年 自作アプリダウンロード数</title>
		<link>https://nstjp.com/soft/1633.html</link>
					<comments>https://nstjp.com/soft/1633.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Thu, 21 May 2026 12:06:32 +0000</pubDate>
				<category><![CDATA[自作ソフト]]></category>
		<category><![CDATA[Apple Developer Program]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[Xcode]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1633</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/2021040200.png" class="webfeedsFeaturedVisual" /></p>Apple Developer Programを更新しました。料金は税込12,980円でした。 今年も去年度(2025/04/01～2026/3/31)の自作iOSアプリのダウンロード数を集計してみました。 AIで簡単に [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/2021040200.png" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">Apple Developer Programを更新しました。料金は税込12,980円でした。</p>



<p class="wp-block-paragraph">今年も去年度(2025/04/01～2026/3/31)の自作iOSアプリのダウンロード数を集計してみました。</p>



<p class="wp-block-paragraph">AIで簡単にアプリが作成できるようになったから、今年は何本かリリース予定。</p>



<span id="more-1633"></span>



<figure class="wp-block-table"><table><tbody><tr><th>アイコン</th><th>アプリ名</th><th>ダウンロード数</th></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/1126801743.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/1126801743/" target="_blank" rel="noreferrer noopener">アベコメ for AbemaTV</a></td><td>511</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/1188639571.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/1188639571/" target="_blank" rel="noreferrer noopener">MJCalc – シンプルな麻雀点数計算アプリ</a></td><td>719</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/1138205944.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/1138205944/" target="_blank" rel="noreferrer noopener">アベバン for AbemaTV</a></td><td>301</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/1398347822.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/1398347822/" target="_blank" rel="noreferrer noopener">ListMap</a></td><td>9</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/362303444.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/362303444/" target="_blank" rel="noreferrer noopener">TVList – Japan TV</a></td><td>1 (公開停止)</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/475603153.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/475603153/" target="_blank" rel="noreferrer noopener">AmReportLite Associate Reports</a></td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/426391064.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/426391064/" target="_blank" rel="noreferrer noopener">AmReport – Associate Reports</a></td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/368964472.png" width="60"></td><td><a href="https://nstjp.com/appstore/goto/368964472/" target="_blank" rel="noreferrer noopener">SptvList!e2</a></td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/953846729.png" width="60"></td><td>icoView &#8211; Favicon Viewer</td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/779032730.png" width="60"></td><td>aReport Lite</td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/740386314.png" width="60"></td><td>iReport Lite</td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/484836061.png" width="60"></td><td>CompassShot</td><td>公開停止</td></tr><tr><td><img decoding="async" src="https://nstjp.com/img/app/120/605148033.png" width="60"></td><td>AdMobReport</td><td>公開停止</td></tr></tbody></table></figure>



<figure class="wp-block-embed is-type-wp-embed is-provider-nagaoka-station wp-block-embed-nagaoka-station"><div class="wp-block-embed__wrapper">
https://nstjp.com/soft/1477.html
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/soft/1633.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Antigravity 2.0 がリリース。Gemini CLIは終了へ</title>
		<link>https://nstjp.com/ai/1630.html</link>
					<comments>https://nstjp.com/ai/1630.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Wed, 20 May 2026 07:19:23 +0000</pubDate>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[3.5]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Gemini]]></category>
		<category><![CDATA[Google Antigravity]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1630</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/2025111900.png" class="webfeedsFeaturedVisual" /></p>Google Antigravity 2.0 リリースがリリースされました。2.0はVSCodeベースの1.0とは別物のアプリになっています。(以前のバージョンは Antigravity IDE と名称が変更になっていま [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/2025111900.png" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">Google Antigravity 2.0 リリースがリリースされました。<br>2.0はVSCodeベースの1.0とは別物のアプリになっています。(以前のバージョンは Antigravity IDE と名称が変更になっています)<br>CodexやClaudeアプリのCodeのようなUIになりました。</p>



<p class="wp-block-paragraph">またGemini-CLIは 2026/06/18 で更新終了予定。今後はAntigravity CLI( agyコマンド )へ移行するようです。</p>



<p class="wp-block-paragraph">Google Antigravity: <a href="https://antigravity.google/" target="_blank" rel="noreferrer noopener">https://antigravity.google/</a></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/ai/1630.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Macbookを買い替え (M1 Macbook Pro→M5 Macbook Air)</title>
		<link>https://nstjp.com/mac/1609.html</link>
					<comments>https://nstjp.com/mac/1609.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Wed, 18 Mar 2026 07:08:50 +0000</pubDate>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Apple Silicon]]></category>
		<category><![CDATA[M1]]></category>
		<category><![CDATA[M5]]></category>
		<category><![CDATA[Macbook Air]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1609</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/20260318_00.jpg" class="webfeedsFeaturedVisual" /></p>2020年発売の13インチMacbook Pro(M1 2020)スペースグレイ を 13インチMacbook Air(M5 2026)ミッドナイトに買い替えしました。いっしょにキーボードカバー、Magsafe3ケーブル [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/20260318_00.jpg" class="webfeedsFeaturedVisual" /></p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="https://nstjp.com/img/20260318_00.jpg" alt="" class="wp-image-1613"/></figure>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><a href="https://nstjp.com/img/20260318_02.jpg" target="_blank" rel=" noreferrer noopener"><img decoding="async" width="1000" height="750" data-id="1614" src="https://nstjp.com/img/20260318_02.jpg" alt="" class="wp-image-1614"/></a></figure>
</figure>



<figure class="wp-block-image size-large"><img decoding="async" width="1000" height="1604" src="https://nstjp.com/img/20260318_01.png" alt="" class="wp-image-1610" srcset="https://nstjp.com/img/20260318_01.png 1000w, https://nstjp.com/img/20260318_01-958x1536.png 958w" sizes="(max-width: 1000px) 100vw, 1000px" /></figure>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img decoding="async" src="https://nstjp.com/img/20260318_03.jpg" alt=""/></figure>



<figure class="wp-block-image size-large"><img decoding="async" width="1200" height="900" data-id="1611" src="https://nstjp.com/img/20260318_04.jpg" alt="" class="wp-image-1611"/></figure>
</figure>



<p class="wp-block-paragraph">2020年発売の13インチMacbook Pro(M1 2020)スペースグレイ を 13インチMacbook Air(M5 2026)ミッドナイトに買い替えしました。<br>いっしょに<a href="/link/amazon/B09KC1GL7Y/" target="_blank" rel="noreferrer noopener">キーボードカバー</a>、<a href="/link/amazon/B0DWSRDPFZ/" target="_blank" rel="noreferrer noopener">Magsafe3ケーブル</a>もいっしょに購入。</p>



<p class="wp-block-paragraph">13インチMacbook ProとMacbook Airはほとんどサイズが一緒でまったく違和感なし。画面のサイズは13.3から13.6インチに上がったので若干表示される領域が増えました。<br>トラックパッドとキーボードの押した音がちょっと変化(改良?)していました。 </p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/mac/1609.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Affinity 3.0 のようこそ画面を消す</title>
		<link>https://nstjp.com/memo/1596.html</link>
					<comments>https://nstjp.com/memo/1596.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Sat, 22 Nov 2025 09:40:24 +0000</pubDate>
				<category><![CDATA[メモ]]></category>
		<category><![CDATA[Affinity]]></category>
		<category><![CDATA[Canva]]></category>
		<category><![CDATA[ようこそ]]></category>
		<category><![CDATA[無料]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1596</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/2025103100.png" class="webfeedsFeaturedVisual" /></p>Windows向け Win+Rで以下のコマンドを入力、エンターでSettingsフォルダを開く Application.xml をメモ帳などで開く ファイルを編集する ShowNewDocumentDialogの値をTr [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/2025103100.png" class="webfeedsFeaturedVisual" /></p>
<h3 class="wp-block-heading">Windows向け</h3>



<h4 class="wp-block-heading">Win+Rで以下のコマンドを入力、エンターでSettingsフォルダを開く</h4>



<pre class="wp-block-code"><code>%HOMEPATH%\.affinity\Affinity\3.0\Settings</code></pre>



<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="640" src="https://nstjp.com/img/2025112201.png" alt="" class="wp-image-1597"/></figure>



<h4 class="wp-block-heading">Application.xml をメモ帳などで開く</h4>



<h4 class="wp-block-heading">ファイルを編集する</h4>



<p class="wp-block-paragraph">ShowNewDocumentDialogの値をTrueからFalseに変更して保存</p>



<div class="hcb_wrap"><pre class="prism line-numbers lang-plain"><code>&lt;ShowNewDocumentDialog&gt;False&lt;/ShowNewDocumentDialog&gt;</code></pre></div>



<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="669" src="https://nstjp.com/img/2025112202.png" alt="" class="wp-image-1598"/></figure>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/memo/1596.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Gemini3.0 &#038; Google Antigravity リリース</title>
		<link>https://nstjp.com/google/1588.html</link>
					<comments>https://nstjp.com/google/1588.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Wed, 19 Nov 2025 02:02:55 +0000</pubDate>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Antigravity]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Gemini]]></category>
		<category><![CDATA[google]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1588</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/2025111900.png" class="webfeedsFeaturedVisual" /></p>Googleの最新AIモデル『Google Gemini』の最新バージョン3.0がリリースされました。 併せてCursorに似たIDE『Google Antigravity』もリリースされています。Gemini3.0がす [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/2025111900.png" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">Googleの最新AIモデル『<a href="https://gemini.google.com/?hl=ja" target="_blank" rel="noreferrer noopener">Google Gemini</a>』の最新バージョン3.0がリリースされました。</p>



<p class="wp-block-paragraph">併せて<a href="https://cursor.com/ja" target="_blank" rel="noreferrer noopener">Cursor</a>に似たIDE『<a href="https://antigravity.google/" data-type="link" data-id="https://antigravity.google/" target="_blank" rel="noreferrer noopener">Google Antigravity</a>』もリリースされています。Gemini3.0がすぐ使用可能。<br>ベースがVSCodeなのでVSCodeの拡張機能が使用可能です。</p>



<p class="wp-block-paragraph"><a href="https://github.com/google-gemini/gemini-cli/" data-type="link" data-id="https://github.com/google-gemini/gemini-cli/" target="_blank" rel="noreferrer noopener">Gemini CLI</a>でGemini3.0 (gemini-3-pro-preview)を使用するには、<br><span class="swl-marker mark_orange">/settings</span> コマンドから <span class="swl-marker mark_orange">Preview Features (e.g., models)をtrue</span>に変更して再起動する必要があります。<br>(事前に<a href="https://goo.gle/geminicli-waitlist-signup">https://goo.gle/geminicli-waitlist-signup</a>からウエイトリストに登録が必要です)</p>



<figure class="wp-block-image size-full"><img decoding="async" width="742" height="642" src="https://nstjp.com/img/2025111901.png" alt="" class="wp-image-1592"/></figure>



<figure class="wp-block-image size-full"><img decoding="async" width="742" height="642" src="https://nstjp.com/img/2025111902.png" alt="" class="wp-image-1593"/></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/google/1588.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ネットワーク上のデバイスが見つからない？　net view でシステムエラー 53 が発生する場合の解決方法</title>
		<link>https://nstjp.com/memo/1580.html</link>
					<comments>https://nstjp.com/memo/1580.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Sun, 02 Nov 2025 07:34:42 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[メモ]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[アクセスできない]]></category>
		<category><![CDATA[見つからない]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1580</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/Windows11.webp" class="webfeedsFeaturedVisual" /></p>Windows11をクリーンインストールしたらNASに接続できなくてハマりました。対処方法をメモ。 症状 特定のWindows PCで net view \\192.168.1.2 を実行すると、以下のエラーが発生する： [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/Windows11.webp" class="webfeedsFeaturedVisual" /></p>
<p class="wp-block-paragraph">Windows11をクリーンインストールしたらNASに接続できなくてハマりました。対処方法をメモ。</p>



<h3 class="wp-block-heading">症状</h3>



<p class="wp-block-paragraph">特定のWindows PCで <code>net view \\192.168.1.2</code> を実行すると、以下のエラーが発生する：</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">システム エラー 53 が発生しました。 ネットワーク パスが見つかりません</p>
</blockquote>



<p class="wp-block-paragraph">他のWindows PCでは正常に接続できる。</p>



<h3 class="wp-block-heading">原因</h3>



<p class="wp-block-paragraph">このPCだけ <strong>SMBセキュリティ署名が必須化</strong> (<code>RequireSecuritySignature : True</code>) になっていた。</p>



<p class="wp-block-paragraph">NAS（特に古い機種や一部のメーカー）はSMBセキュリティ署名に対応していない、または設定されていない場合があり、署名が必須化されていると接続が拒否される。</p>



<h3 class="wp-block-heading">診断方法</h3>



<p class="wp-block-paragraph">以下のコマンドで設定を確認：</p>



<pre class="wp-block-code"><code>Get-SmbClientConfiguration | Select RequireSecuritySignature, EnableSecuritySignature</code></pre>



<p class="wp-block-paragraph"><code>RequireSecuritySignature : True</code> になっている場合、この問題が発生する可能性がある。</p>



<h3 class="wp-block-heading">解決方法</h3>



<p class="wp-block-paragraph"><strong>管理者権限のPowerShell</strong> で以下を実行：</p>



<pre class="wp-block-code"><code><strong>Set-SmbClientConfiguration -RequireSecuritySignature $false -Force</strong></code></pre>



<p class="wp-block-paragraph">設定変更後、再度接続を試す：</p>



<pre class="wp-block-code"><code>net view \\192.168.1.2</code></pre>



<h3 class="wp-block-heading">参考：診断に有用なコマンド</h3>



<pre class="wp-block-code"><code>ping 192.168.1.2                           # ネットワーク接続確認</code></pre>



<pre class="wp-block-code"><code>Test-NetConnection -ComputerName 192.168.1.2 -Port 445  # SMBポート確認
Get-NetConnectionProfile                   # ネットワークプロファイル確認
sc query lanmanworkstation                 # Workstationサービス確認
Get-SmbClientConfiguration                 # SMB Client設定確認</code></pre>



<p class="wp-block-paragraph">お疲れさまでした</p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/memo/1580.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Affinityがまさかの無料化</title>
		<link>https://nstjp.com/mac/1574.html</link>
					<comments>https://nstjp.com/mac/1574.html#respond</comments>
		
		<dc:creator><![CDATA[nagaoka]]></dc:creator>
		<pubDate>Fri, 31 Oct 2025 14:49:02 +0000</pubDate>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Affinity]]></category>
		<category><![CDATA[Canva]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[Publisher]]></category>
		<category><![CDATA[Studio]]></category>
		<category><![CDATA[無料]]></category>
		<guid isPermaLink="false">https://nstjp.com/?p=1574</guid>

					<description><![CDATA[<p><img src="https://nstjp.com/img/2025103100.png" class="webfeedsFeaturedVisual" /></p>愛用しているAffinity Photo、Designer、Publisherがバージョンアップ。Photo、Designer、Publisherが統合されたAffinity3.0がリリースされました。 そしてまさかの無 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nstjp.com/img/2025103100.png" class="webfeedsFeaturedVisual" /></p>
<figure class="wp-block-image size-full"><img decoding="async" width="1000" height="600" src="https://nstjp.com/img/2025103100.png" alt="" class="wp-image-1575"/></figure>



<p class="wp-block-paragraph">愛用しているAffinity Photo、Designer、Publisherがバージョンアップ。<br>Photo、Designer、Publisherが統合されたAffinity3.0がリリースされました。</p>



<p class="wp-block-paragraph"><span class="swl-marker mark_blue">そしてまさかの無料化</span></p>



<p class="wp-block-paragraph">Windows、Mac版はすでにリリース済み。まもなくiPad版もリリースされるようです。</p>



<p class="wp-block-paragraph">Serifは2024年3月に<a href="https://www.canva.com/" target="_blank" rel="noreferrer noopener">Canva</a>に買収されていますが、Canva太っ腹ですね。</p>



<p class="wp-block-paragraph"><a href="https://www.affinity.studio" target="_blank" rel="noreferrer noopener">https://www.affinity.studio</a></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://nstjp.com/mac/1574.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
