長い開発期間を経て、ついにVRCGF(VRChat Group Finder)のパブリックアルファ版を公開しました。今回のリリースでは、コアとなる「検索エンジン」と、UniLabのデザイン哲学を体現した「Glass Interface」を実装しています。 After a long development period, we finally released the public alpha version of VRCGF (VRChat Group Finder). This release implements the core "Search Engine" and the "Glass Interface" that embodies UniLab's design philosophy.

なぜ作ったのかWhy we built it

VRChatには素晴らしいコミュニティがたくさんありますが、ゲーム内の検索機能だけでは、自分に合った場所を見つけるのが難しいと感じていました。「もっと雑誌をめくるように、直感的に探したい」。その想いが開発の原点です。 VRChat has many wonderful communities, but I felt it was difficult to find the right place for me using only the in-game search function. "I want to search intuitively, like flipping through a magazine." That desire is the origin of development.

技術的なこだわりTechnical details

今回のリリースでは、特にパフォーマンスにこだわりました。Electron製のアプリですが、重さを感じさせない工夫をしています。具体的には、ローカルデータベースを活用した積極的なキャッシュ戦略です。 In this release, we focused on performance. Although it is an Electron app, we devised ways to make it feel lightweight. specifically, an aggressive caching strategy using a local database.

// データのキャッシュ戦略例 (Conceptual Code)
const cacheStrategy = async (query) => {
  const localData = await db.get(query);
  
  // キャッシュが有効なら即座に返す(爆速)
  if (localData && !isExpired(localData)) {
    return localData; 
  }
  
  // 無ければAPIを叩く
  return await fetchRemote(query);
}

今後のロードマップRoadmap

現在はWindows版のみですが、今後は以下の機能を実装予定です。 Currently only for Windows, but we plan to implement the following features.

  • フレンドのアクティビティ状況の可視化Visualize friend activity status
  • お気に入りグループのフォルダ分け機能Folder organization for favorite groups
  • ダークモードの完全対応Full dark mode support
「ツールもファッションの一部」というUniLabの哲学を、ぜひ体感してください。 Please experience UniLab's philosophy that "Tools are part of fashion."

ダウンロードはCollectionページから可能です。 Download is available from the Collection page.